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
Copy file name to clipboardExpand all lines: documentation/source/users/rmg/input.rst
+51-4Lines changed: 51 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1073,13 +1073,17 @@ Miscellaneous options::
1073
1073
units='si',
1074
1074
generateOutputHTML=True,
1075
1075
generatePlots=False,
1076
-
generatePESDiagrams=False,
1076
+
generatePESDiagrams=False,
1077
1077
saveSimulationProfiles=True,
1078
1078
verboseComments=False,
1079
1079
saveEdgeSpecies=True,
1080
1080
keepIrreversible=True,
1081
1081
trimolecularProductReversible=False,
1082
-
saveSeedModulus=-1
1082
+
saveSeedModulus=-1,
1083
+
generateChemkin=True,
1084
+
generateRMSYAML=True,
1085
+
generateCanteraYAML1=False,
1086
+
generateCanteraYAML2=False,
1083
1087
)
1084
1088
1085
1089
The ``name`` field is the name of any generated seed mechanisms
@@ -1099,16 +1103,59 @@ Setting ``generatePESDiagrams`` to ``True`` will generate potential energy surfa
1099
1103
1100
1104
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.
1101
1105
1102
-
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.
1106
+
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. This is a global fallback; individual writers can override it (see below).
1103
1107
1104
-
Setting ``saveEdgeSpecies`` to ``True`` will make RMG generate chemkin files of the edge reactions in addition to the core model in files such as ``chem_edge.inp`` and ``chem_edge_annotated.inp`` files located inside the ``chemkin`` folder. These files will be helpful in viewing RMG's estimate for edge reactions and seeing if certain reactions one expects are actually in the edge or not.
1108
+
Setting ``saveEdgeSpecies`` to ``True`` will make RMG generate chemkin files of the edge reactions in addition to the core model in files such as ``chem_edge.inp`` and ``chem_edge_annotated.inp`` files located inside the ``chemkin`` folder. These files will be helpful in viewing RMG's estimate for edge reactions and seeing if certain reactions one expects are actually in the edge or not. This is a global fallback; individual writers can override it (see below).
1105
1109
1106
1110
Setting ``keepIrreversible`` to ``True`` will make RMG import library reactions as is, whether they are reversible or irreversible in the library. Otherwise, if ``False`` (default value), RMG will force all library reactions to be reversible, and will assign the forward rate from the relevant library.
1107
1111
1108
1112
Setting ``trimolecularProductReversible`` to ``False`` will not allow families with three products to react in the reverse direction. Default is ``True``.
1109
1113
1110
1114
Setting ``saveSeedModulus`` to ``-1`` will only save the seed from the last iteration at the end of an RMG job. Alternatively, the seed can be saved every ``n`` iterations by setting ``saveSeedModulus`` to ``n``.
1111
1115
1116
+
Per-writer Output Configuration
1117
+
--------------------------------
1118
+
1119
+
Each of the following options controls a separate output-format writer. Each
1120
+
accepts ``True``, ``False``, or a Python dict with optional keys:
1121
+
1122
+
* ``'saveInterval'`` *(int)* — positive N writes every N iterations (iteration
1123
+
numbering starts at 0); ``-1`` writes only at the very end of the run.
1124
+
Defaults to ``1`` (every iteration) for writers that are on by default.
1125
+
* ``'verboseComments'`` *(bool, optional)* — overrides the global
1126
+
``verboseComments`` flag for this writer only.
1127
+
* ``'saveEdge'`` *(bool, optional)* — overrides the global ``saveEdgeSpecies``
1128
+
flag for this writer only.
1129
+
1130
+
Examples::
1131
+
1132
+
# Chemkin: save only at the end, with verbose comments and edge species
0 commit comments