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
275 changes: 237 additions & 38 deletions examples/rmg/catalysis/ch4_o2/simulate_ch4o2cat_RMS.ipynb

Large diffs are not rendered by default.

219 changes: 171 additions & 48 deletions examples/rmg/superminimal/sensitivity_analysis_superminimal_RMS.ipynb

Large diffs are not rendered by default.

175 changes: 154 additions & 21 deletions examples/rmg/superminimal/simulation_flux_rop_superminimal_RMS.ipynb

Large diffs are not rendered by default.

137 changes: 125 additions & 12 deletions examples/rmg/superminimal/tolerance_superminimal_RMS.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions rmgpy/rmg/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,8 +768,8 @@ def register_listeners(self, requires_rms=False):
"""

self.attach(ChemkinWriter(self.output_directory))
if requires_rms:
self.attach(RMSWriter(self.output_directory))

self.attach(RMSWriter(self.output_directory))

if self.generate_output_html:
self.attach(OutputHTMLWriter(self.output_directory))
Expand Down
5 changes: 5 additions & 0 deletions test/rmgpy/rmg/mainTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,11 @@ def test_rmg_seed_edge_library_creation(self):
"""Test that edge seed mechanisms are created in the correct database locations."""
assert os.path.exists(self.seedKinetics)

def test_rmg_rms_mechanism_files_creation(self):
"""Test that rms mechanisms are created in the correct location."""
assert os.path.exists(os.path.join(self.rmg.output_directory,"rms"))
assert len(os.listdir(os.path.join(self.rmg.output_directory,"rms"))) != 0

def test_rmg_seed_works(self):
"""Test that the created seed libraries work.

Expand Down
Loading