Skip to content

Commit

Permalink
added test
Browse files Browse the repository at this point in the history
reads the new frequency log and checks the values.
  • Loading branch information
kfir4444 committed Dec 1, 2024
1 parent 220e65e commit a132d89
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/arkane/ess/orcaTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ def test_load_vibrations_from_orca_log(self):
conformer, unscaled_frequencies = log.load_conformer()
assert len(conformer.modes[2]._frequencies.value) == 11
assert conformer.modes[2]._frequencies.value[2] == 331.23
log = OrcaLog(os.path.join(self.data_path, "Freq_new_orca.log"))
conformer, unscaled_frequencies = log.load_conformer()
assert len(conformer.modes[2]._frequencies.value) == 6
assert conformer.modes[2]._frequencies.value[0] == 228.25

def test_load_modes_from_orca_log(self):
"""
Expand Down

0 comments on commit a132d89

Please sign in to comment.