Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docstrings for meaning of frozen adsorbate and frozen gas #171

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all 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: 4 additions & 0 deletions catmap/thermodynamics/enthalpy_entropy.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ def zero_point_gas(self):
def frozen_gas(self):
"""
Neglect all thermal contributions, including the zero point energy.
Assumes that the energies provided in the input file are at standard pressure.
The configurational entropy is taken into account in the rate expressions.
"""
gas_names = self.gas_names
thermo_dict = {}
Expand Down Expand Up @@ -719,6 +721,8 @@ def zero_point_adsorbate(self):
def frozen_adsorbate(self):
"""
Neglect all zero point, enthalpy, entropy corrections to adsorbate energy.
Assumes that the energies provided in the input file are at standard pressure.
The configurational entropy is taken into account in the rate expressions.
"""
thermo_dict = {}
for ads in self.adsorbate_names+self.transition_state_names:
Expand Down