Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions src/automol/etrans/_fxn.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ def troe_lj_collision_frequency(eps, sig, red_mass, temp):
""" Collision Frequency formula from Troe that uses
Lennard-Jones epsilons and sigma parameters

Z = sqrt( (8*kB*T)/(pi*mu) ) * sig^2 * omega
Z = pi * sqrt( (8*kB*T)/(pi*mu) ) * sig^2 * omega
omega = [ 0.7 + 0.5 log10( (kB*T)/eps ) ]^-1

See Eq. 12 from Jasper, J. Phys. Chem. A 2009, 113, 19, 5612-5619

:param eps: Target+Bath Lennard-Jones epsilon value (in hart)
:type eps: float
:param sig: Target+Bath Lennard-Jones sigma value (in bohr)
Expand All @@ -35,7 +37,7 @@ def troe_lj_collision_frequency(eps, sig, red_mass, temp):
kbt = phycon.KB * temp

# Prefactor term with physical constants and masses
pref1 = numpy.sqrt((8.0 * kbt) / (numpy.pi * red_mass))
pref1 = numpy.pi * numpy.sqrt((8.0 * kbt) / (numpy.pi * red_mass))

# Omega integral
omega_s = (0.7 + 0.52 * (numpy.log10(kbt / eps)))**(-1)
Expand Down
2 changes: 1 addition & 1 deletion src/automol/tests/test_etrans.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def test__estimate():
# Build the alpha parameters
edown_alpha, edown_n = automol.etrans.estimate.alpha(
n_eff, eps, sig, tgt_mass, bath_mass, collider_set)
ref_edown_alpha = 457.24552400133837
ref_edown_alpha = 457.24552400133837 / numpy.pi
ref_edown_n = 0.70088400006973
assert numpy.isclose(edown_alpha, ref_edown_alpha)
assert numpy.isclose(edown_n, ref_edown_n)
Expand Down
Loading