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: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ Gaussian, MOPAC, QChem, and MOLPRO.
17
17
-[RMG-database Github Repository](https://github.com/ReactionMechanismGenerator/RMG-database): contains source code for the latest version of the database
Taking multiple objects (species, reactions or pdepNetworks) during a given simulation can often decrease your overall model generation time
371
+
over only taking one. For this purpose there is a maxNumObjsPerIter parameter that allows RMG to take
372
+
that many species, reactions or pdepNetworks from a given simulation. This is done in the order they trigger their respective criteria.
373
+
374
+
For example ::
375
+
376
+
model(
377
+
toleranceKeepInEdge=0.0,
378
+
toleranceMoveToCore=0.1,
379
+
toleranceInterruptSimulation=0.1,
380
+
maxNumObjsPerIter=2,
381
+
)
382
+
383
+
Note that this can also result in larger models, however, sometimes these larger models (from taking more than one
384
+
object at a time) pick up chemistry that would otherwise have been missed.
385
+
368
386
.. _ontheflyquantumcalculations:
369
387
370
388
On the fly Quantum Calculations
@@ -522,6 +540,9 @@ Miscellaneous Options
522
540
Miscellaneous options::
523
541
524
542
options(
543
+
name='Seed',
544
+
generateSeedEachIteration=True,
545
+
saveSeedToDatabase=True,
525
546
units='si',
526
547
saveRestartPeriod=(1,'hour'),
527
548
generateOutputHTML=True,
@@ -531,6 +552,12 @@ Miscellaneous options::
531
552
saveEdgeSpecies=True,
532
553
)
533
554
555
+
The ``name`` field is the name of any generated seed mechanisms
556
+
557
+
Setting ``generateSeedEachIteration`` to ``True`` tells RMG to save and update a seed mechanism and thermo library during the current run
558
+
559
+
Setting ``saveSeedToDatabase`` to ``True`` tells RMG (if generating a seed) to also save that seed mechanism and thermo library directly into the database
560
+
534
561
The ``units`` field is set to ``si``. Currently there are no other unit options.
535
562
536
563
The ``saveRestartPeriod`` indictes how frequently you wish to save restart files. For very large/long RMG jobs, this process can take a significant amount of time. In such cases, the user may wish to increase the time period for saving these restart files.
@@ -559,13 +586,15 @@ all of RMG's reaction families. ::
By default, the ``allowSingletO2`` flag is set to ``False``. See :ref:`representing_oxygen` for more information.
582
611
583
612
613
+
Staging
614
+
========
615
+
616
+
It is now possible to concatenate different model and simulator blocks into the same run in stages. Any given stage will terminate when the RMG run terminates and then the current group of model and simulator parameters will be switched out with the next group and the run will continue until that stage terminates. Once the last stage terminates the run ends normally. This is currently enabled only for the model and simulator blocks.
617
+
618
+
There must be the same number of each of these blocks (although only having one simulator block and many model blocks is enabled as well) and RMG will enter each stage these define in the order they were put in the input file.
619
+
620
+
To enable easier manipulation of staging a new parameter in the model block was developed maxNumSpecies that is the number of core species at which that stage (or if it is the last stage the entire model generation process) will terminate.
0 commit comments