Skip to content

Commit

Permalink
Remove frequencyScaleFactor lines in Arkane examples that are ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
amarkpayne committed Jul 18, 2019
1 parent 2a4bef9 commit cddcc2c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions arkane/commonTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,9 @@ def test_create_and_load_yaml(self):
self.assertEqual(arkane_spc.smiles, 'CC')
self.assertTrue('8 H u0 p0 c0 {2,S}' in arkane_spc.adjacency_list)
self.assertEqual(arkane_spc.label, 'C2H6')
self.assertEqual(arkane_spc.frequency_scale_factor, 1.00386) # checks float conversion
self.assertEqual(arkane_spc.frequency_scale_factor, 0.99) # checks float conversion
self.assertFalse(arkane_spc.use_bond_corrections)
self.assertAlmostEqual(arkane_spc.conformer.modes[2].frequencies.value_si[0], 830.38202, 4) # HarmonicOsc.
self.assertAlmostEqual(arkane_spc.conformer.modes[2].frequencies.value_si[0], 818.91718, 4) # HarmonicOsc.
self.assertIsInstance(arkane_spc.energy_transfer_model, SingleExponentialDown)
self.assertFalse(arkane_spc.is_ts)
self.assertEqual(arkane_spc.level_of_theory, 'cbs-qb3')
Expand Down
2 changes: 0 additions & 2 deletions examples/arkane/reactions/23dimethylpropoxy/dimetpropoxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
geometry = Log('dimetpropoxy.out')
frequencies = Log('dimetpropoxy.out')

frequencyScaleFactor = 0.983

"""pivot are the two atoms that are attached to the rotor
top contains the atoms that are being rotated including one of the atoms from pivots
symmetry is the symmetry number of the scan
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
geometry = Log('dimetpropoxy_betasci.out')
frequencies = Log('dimetpropoxy_betasci.out')

frequencyScaleFactor = 0.983

"""pivot are the two atoms that are attached to the rotor
top contains the atoms that are being rotated including one of the atoms from pivots
symmetry is the symmetry number of the scan
Expand Down
2 changes: 0 additions & 2 deletions examples/arkane/species/C2H6/C2H6.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

frequencies = Log('ethane_cbsqb3.log')

frequencyScaleFactor = 0.99

"""pivot are the two atoms that are attached to the rotor
top contains the atoms that are being rotated including one of the atoms from pivots
symmetry is the symmetry number of the scan
Expand Down
1 change: 1 addition & 0 deletions examples/arkane/species/C2H6/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
useHinderedRotors = True
useBondCorrections = False
author = 'I.B. Modeling'
frequencyScaleFactor = 0.99

species('C2H6', 'C2H6.py',
structure=SMILES('CC'))
Expand Down

0 comments on commit cddcc2c

Please sign in to comment.