[Doc] Add local tables of contents for thermo and kinetics
This commit is contained in:
parent
911c2f180d
commit
c7e79e64b4
2 changed files with 57 additions and 0 deletions
|
|
@ -3,8 +3,18 @@
|
|||
Chemical Kinetics
|
||||
=================
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Kinetics Managers
|
||||
-----------------
|
||||
|
||||
Kinetics
|
||||
^^^^^^^^
|
||||
.. autoclass:: Kinetics(infile='', phaseid='', phases=())
|
||||
|
||||
InterfaceKinetics
|
||||
^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: InterfaceKinetics
|
||||
|
||||
Reactions
|
||||
|
|
@ -13,45 +23,71 @@ Reactions
|
|||
These classes contain the definition of a single reaction and its associated
|
||||
rate expression, independent of a specific `Kinetics` object.
|
||||
|
||||
Reaction
|
||||
^^^^^^^^
|
||||
.. autoclass:: Reaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
ElementaryReaction
|
||||
^^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: ElementaryReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
ThreeBodyReaction
|
||||
^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: ThreeBodyReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
FalloffReaction
|
||||
^^^^^^^^^^^^^^^
|
||||
.. autoclass:: FalloffReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
ChemicallyActivatedReaction
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: ChemicallyActivatedReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
PlogReaction
|
||||
^^^^^^^^^^^^
|
||||
.. autoclass:: PlogReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
ChebyshevReaction
|
||||
^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: ChebyshevReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
InterfaceReaction
|
||||
^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: InterfaceReaction(reactants='', products='')
|
||||
:no-undoc-members:
|
||||
|
||||
Auxilliary Reaction Data
|
||||
------------------------
|
||||
|
||||
Arrhenius
|
||||
^^^^^^^^^
|
||||
.. autoclass:: Arrhenius(A, b, E)
|
||||
|
||||
Falloff
|
||||
^^^^^^^
|
||||
.. autoclass:: Falloff(coeffs=(), init=True)
|
||||
:no-undoc-members:
|
||||
|
||||
TroeFalloff
|
||||
^^^^^^^^^^^
|
||||
.. autoclass:: TroeFalloff(coeffs=(), init=True)
|
||||
:no-undoc-members:
|
||||
|
||||
SriFalloff
|
||||
^^^^^^^^^^
|
||||
.. autoclass:: SriFalloff(coeffs=(), init=True)
|
||||
:no-undoc-members:
|
||||
|
||||
Reaction Path Analysis
|
||||
----------------------
|
||||
|
||||
ReactionPathDiagram
|
||||
^^^^^^^^^^^^^^^^^^^
|
||||
.. autoclass:: ReactionPathDiagram(Kinetics kin, str element)
|
||||
|
|
|
|||
|
|
@ -1,15 +1,27 @@
|
|||
.. py:currentmodule:: cantera
|
||||
|
||||
|
||||
Thermodynamic Properties
|
||||
========================
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Phases
|
||||
------
|
||||
|
||||
These classes are used to describe the thermodynamic state of a system.
|
||||
|
||||
ThermoPhase
|
||||
^^^^^^^^^^^
|
||||
.. autoclass:: ThermoPhase(infile='', phaseid='')
|
||||
|
||||
InterfacePhase
|
||||
^^^^^^^^^^^^^^
|
||||
.. autoclass:: InterfacePhase(infile='', phaseid='')
|
||||
|
||||
PureFluid
|
||||
^^^^^^^^^
|
||||
.. autoclass:: PureFluid(infile='', phaseid='')
|
||||
|
||||
Mixture
|
||||
|
|
@ -28,12 +40,21 @@ Species Thermodynamic Properties
|
|||
These classes are used to describe the reference-state thermodynamic properties
|
||||
of a pure species.
|
||||
|
||||
SpeciesThermo
|
||||
^^^^^^^^^^^^^
|
||||
.. autoclass:: SpeciesThermo(T_low, T_high, P_ref, coeffs)
|
||||
|
||||
ConstantCp
|
||||
^^^^^^^^^^
|
||||
.. autoclass:: ConstantCp(T_low, T_high, P_ref, coeffs)
|
||||
:no-undoc-members:
|
||||
|
||||
NasaPoly2
|
||||
^^^^^^^^^
|
||||
.. autoclass:: NasaPoly2(T_low, T_high, P_ref, coeffs)
|
||||
:no-undoc-members:
|
||||
|
||||
ShomatePoly2
|
||||
^^^^^^^^^^^^
|
||||
.. autoclass:: ShomatePoly2(T_low, T_high, P_ref, coeffs)
|
||||
:no-undoc-members:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue