You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make drawing all PES diagrams an option in the input file.
You can set generatePESDiagrams=True in the options() block
of an input file if you want to save them all.
This is presumably a runtime penalty, or at least a hard disk space penalty,
and probably shouldn't be a default.
Default is False.
Copy file name to clipboardExpand all lines: documentation/source/users/rmg/input.rst
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -965,6 +965,7 @@ Miscellaneous options::
965
965
units='si',
966
966
generateOutputHTML=True,
967
967
generatePlots=False,
968
+
generatePESDiagrams=False,
968
969
saveSimulationProfiles=True,
969
970
verboseComments=False,
970
971
saveEdgeSpecies=True,
@@ -986,6 +987,8 @@ HTML file for your model containing all the species and reactions. Turning this
986
987
987
988
Setting ``generatePlots`` to ``True`` will generate a number of plots describing the statistics of the RMG job, including the reaction model core and edge size and memory use versus execution time. These will be placed in the output directory in the plot/ folder.
988
989
990
+
Setting ``generatePESDiagrams`` to ``True`` will generate potential energy surface diagrams for each pressure dependent network in the model. These diagrams will be saved in the ``pdep/`` folder in the output directory. Only applicable if pressure dependence is enabled.
991
+
989
992
Setting ``saveSimulationProfiles`` to ``True`` will make RMG save csv files of the simulation in .csv files in the ``solver/`` folder. The filename will be ``simulation_1_26.csv`` where the first number corresponds to the reaciton system, and the second number corresponds to the total number of species at the point of the simulation. Therefore, the highest second number will indicate the latest simulation that RMG has complete while enlarging the core model. The information inside the csv file will provide the time, reactor volume in m^3, as well as mole fractions of the individual species.
990
993
991
994
Setting ``verboseComments`` to ``True`` will make RMG generate chemkin files with complete verbose commentary for the kinetic and thermo parameters. This will be helpful in debugging what values are being averaged for the kinetics. Note that this may produce very large files.
Copy file name to clipboardExpand all lines: rmgpy/rmg/main.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,7 @@ class RMG(util.Subject):
143
143
`units` The unit system to use to save output files (currently must be 'si')
144
144
`generate_output_html` ``True`` to draw pictures of the species and reactions, saving a visualized model in an output HTML file. ``False`` otherwise
145
145
`generate_plots` ``True`` to generate plots of the job execution statistics after each iteration, ``False`` otherwise
146
+
`generate_PES_diagrams` ``True`` to generate potential energy surface diagrams for pressure dependent networks in the model, ``False`` otherwise
146
147
`verbose_comments` ``True`` to keep the verbose comments for database estimates, ``False`` otherwise
147
148
`save_edge_species` ``True`` to save chemkin and HTML files of the edge species, ``False`` otherwise
148
149
`keep_irreversible` ``True`` to keep ireversibility of library reactions as is ('<=>' or '=>'). ``False`` (default) to force all library reactions to be reversible ('<=>')
0 commit comments