Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CodeEntropy/entropy.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,9 @@ def _calculate_water_entropy(self, universe, start, end, step):
step (int): Step size.
"""
Sorient_dict, _, vibrations, _ = (
GetSolvent.get_interfacial_water_orient_entropy(universe, start, end, step)
GetSolvent.get_interfacial_water_orient_entropy(
universe, start, end, step, self._args.temperature, parallel=True
)
)

# Log per-residue entropy using helper functions
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies = [
"PyYAML==6.0.2",
"python-json-logger==3.3.0",
"tabulate==0.9.0",
"waterEntropy==1.1.0"
"waterEntropy==1.2.0"
]

[project.urls]
Expand Down