Skip to content

Commit

Permalink
Added W1BD into Arkane Gaussian Module
Browse files Browse the repository at this point in the history
  • Loading branch information
ssun30 committed Mar 7, 2024
1 parent bfaee1c commit 098574e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions arkane/ess/gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,12 @@ def load_energy(self, zpe_scale_factor=1.):
# G4MP2 calculation without opt and freq calculation
# Keyword in Gaussian G4MP2(SP), No zero-point or thermal energies are included.
e_elect = float(line.split()[2]) * constants.E_h * constants.Na
elif 'W1BD (0 K)' in line:
e0_composite = float(line.split()[3]) * constants.E_h * constants.Na
elif 'W1BD Energy=' in line:
# G4MP2 calculation without opt and freq calculation
# Keyword in Gaussian W1BD(SP), No zero-point or thermal energies are included.
e_elect = float(line.split()[2]) * constants.E_h * constants.Na

# Read the ZPE from the "E(ZPE)=" line, as this is the scaled version.
# Gaussian defines the following as
Expand Down

0 comments on commit 098574e

Please sign in to comment.