diff --git a/doc/sphinx/cython/importing.rst b/doc/sphinx/cython/importing.rst index 510920206..627371f79 100644 --- a/doc/sphinx/cython/importing.rst +++ b/doc/sphinx/cython/importing.rst @@ -12,6 +12,22 @@ thermodynamic, chemical kinetic, and (optionally) transport properties. .. autoclass:: DustyGas(infile, phaseid='') +Pure Fluid Phases +----------------- + +The following convenience functions can be used to create `PureFluid` objects +with the indicated equation of state: + +.. autofunction:: CarbonDioxide +.. autofunction:: Heptane +.. autofunction:: Hfc134a +.. autofunction:: Hydrogen +.. autofunction:: Methane +.. autofunction:: Nitrogen +.. autofunction:: Oxygen +.. autofunction:: Water + + Utility Functions ----------------- diff --git a/doc/sphinx/cython/kinetics.rst b/doc/sphinx/cython/kinetics.rst index dcd8b76d5..60c6f9cda 100644 --- a/doc/sphinx/cython/kinetics.rst +++ b/doc/sphinx/cython/kinetics.rst @@ -5,6 +5,8 @@ Chemical Kinetics .. autoclass:: Kinetics(infile='', phaseid='', phases=()) +.. autoclass:: InterfaceKinetics + Reactions --------- diff --git a/doc/sphinx/cython/onedim.rst b/doc/sphinx/cython/onedim.rst index 948316aba..d730ea05f 100644 --- a/doc/sphinx/cython/onedim.rst +++ b/doc/sphinx/cython/onedim.rst @@ -21,6 +21,14 @@ CounterflowDiffusionFlame ^^^^^^^^^^^^^^^^^^^^^^^^^ .. autoclass:: CounterflowDiffusionFlame(gas, grid=None) +CounterflowPremixedFlame +^^^^^^^^^^^^^^^^^^^^^^^^ +.. autoclass:: CounterflowPremixedFlame(gas, grid=None) + +ImpingingJet +^^^^^^^^^^^^ +.. autoclass:: ImpingingJet(gas, grid=None) + Flow Domains ------------ diff --git a/doc/sphinx/cython/zerodim.rst b/doc/sphinx/cython/zerodim.rst index 286a649d2..286c90bb2 100644 --- a/doc/sphinx/cython/zerodim.rst +++ b/doc/sphinx/cython/zerodim.rst @@ -55,13 +55,20 @@ FlowReactor .. autoclass:: FlowReactor(contents=None, *, name=None, energy='on') -Flow Controllers ----------------- +Walls +----- Wall ^^^^ .. autoclass:: Wall(left, right, *, name=None, A=None, K=None, U=None, Q=None, velocity=None, kinetics=(None,None)) +WallSurface +^^^^^^^^^^^ +.. autoclass:: WallSurface(wall, side) + +Flow Controllers +---------------- + MassFlowController ^^^^^^^^^^^^^^^^^^ .. autoclass:: MassFlowController(upstream, downstream, *, name=None, mdot=None)