From 5047e6c16d956da00b04f4749bde28d73f0a8984 Mon Sep 17 00:00:00 2001 From: Jordan Musser Date: Sun, 15 Mar 2026 08:11:18 -0400 Subject: [PATCH 1/2] Updates for GUI --- .../user_guide/inputs/boundary_conditions.rst | 16 ++--------- docs/source_docs/user_guide/inputs/domain.rst | 19 +++++++++++++ .../user_guide/inputs/geometry.rst | 27 +++++++++++++++++-- .../user_guide/inputs/model_options.rst | 19 +++++++------ .../user_guide/inputs/output/plotting.rst | 2 ++ 5 files changed, 57 insertions(+), 26 deletions(-) diff --git a/docs/source_docs/user_guide/inputs/boundary_conditions.rst b/docs/source_docs/user_guide/inputs/boundary_conditions.rst index 77d5e13..7158a63 100644 --- a/docs/source_docs/user_guide/inputs/boundary_conditions.rst +++ b/docs/source_docs/user_guide/inputs/boundary_conditions.rst @@ -17,18 +17,6 @@ The following inputs are defined using the prefix ``bc``: | | and ``disk``. Embedded boundary (EB) regions support ``box``, | | | | | ``cylinder``, and ``sphere`` shapes. | | | +---------------------+--------------------------------------------------------------------------+-------------+-----------+ -| delp_dir | Direction for specified pressure drop. Note that this direction | Int | 0 | -| | should also be periodic. | | | -| | | | | -| | Options: | | | -| | * ``0``: X | | | -| | * ``1``: Y | | | -| | * ``2``: Z | | | -+---------------------+--------------------------------------------------------------------------+-------------+-----------+ -| delp | Pressure drop (Pa) | Real | 0 | -+---------------------+--------------------------------------------------------------------------+-------------+-----------+ -| po_no_par_out | Force particles to bounce back rather than exiting at pressure outflows. | Int | 0 | -+---------------------+--------------------------------------------------------------------------+-------------+-----------+ The type of the boundary conditions in the BC region must be defined with the prefix ``bc``: @@ -67,7 +55,7 @@ using the prefix ``bc.[region_name].[fluid_name]``: +------------------------+------------------------------------------------------------------------+-------------+-----------+ | temperature | Fluid temperature [required if bc type is ``mi`` or ``pi``] | Real | 0 | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components [required if bc type is ``mi`` | Reals<3> | 0 0 0 | +| velocity | Velocity components [required if bc type is ``mi`` | Reals | 0 0 0 | | | and ``volflow`` or ``massflow`` not specified] | | | +------------------------+------------------------------------------------------------------------+-------------+-----------+ | volflow | Volumetric flow rate [required if bc type is ``mi`` | Real | 0 | @@ -160,7 +148,7 @@ For inflow boundary conditions , the solids inputs are defined using the prefix +------------------------+-----------------------------------------------------------------------+-------------+-----------+ | species.[species_name] | Mass fraction of ``species_name`` | Real | 0 | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components | Reals<3> | 0 0 0 | +| velocity | Velocity components | Reals | 0 0 0 | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ | volflow | Volumetric flow rate. | Real | 0 | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ diff --git a/docs/source_docs/user_guide/inputs/domain.rst b/docs/source_docs/user_guide/inputs/domain.rst index 5b41cc9..fcb1401 100644 --- a/docs/source_docs/user_guide/inputs/domain.rst +++ b/docs/source_docs/user_guide/inputs/domain.rst @@ -30,6 +30,7 @@ The following inputs are defined using the prefix ``geometry``: * There is **no support** for 1D or 2D simulation domains. * Cartesian is the **only supported** coordinate system. +---- Mesh ---- @@ -90,3 +91,21 @@ The result is a uniform mesh spacing of :math:`0.125` *m* in all three direction .. warning:: MFIX-Exa simulations with a non-uniform mesh will not run. + +---- + +The following inputs are defined using the prefix ``mfix``: + ++--------------------------+----------------------------------------------------------------------------+----------+---------+ +| | Description | Type | Default | ++==========================+============================================================================+==========+=========+ +| delp_dir | Direction for specified pressure drop. The domain must be periodic in the | Int | None | +| | the specified direction. | | | +| | | | | +| | Options: | | | +| | * ``0``: X | | | +| | * ``1``: Y | | | +| | * ``2``: Z | | | ++--------------------------+----------------------------------------------------------------------------+----------+---------+ +| delp | Pressure drop (Pa) | Real | 0 | ++--------------------------+----------------------------------------------------------------------------+----------+---------+ diff --git a/docs/source_docs/user_guide/inputs/geometry.rst b/docs/source_docs/user_guide/inputs/geometry.rst index deb7152..2b6add4 100644 --- a/docs/source_docs/user_guide/inputs/geometry.rst +++ b/docs/source_docs/user_guide/inputs/geometry.rst @@ -13,6 +13,7 @@ The following inputs are defined using the prefix ``mfix``: | | | | | | | * ``box`` - predefined :ref:`box geometry` | | | | | * ``cylinder`` - predefined :ref:`cylinder geometry` | | | +| | * ``sphere`` - predefined :ref:`sphere geometry` | | | | | * ``generic`` - :ref:`user-defined geometry` | | | | | * ``CSG`` - use :ref:`Constructive Solid Geometry` file | | | | | * ``STL`` - use :ref:`Standard Triangle Language` file | | | @@ -265,6 +266,26 @@ the EB ``cylinder`` are *covered* and thereby excluded from calculations. on the low *X* face and a pressure outflow on the *X* high face. +---- + +.. _InputsGeometry_sphere: + +``sphere`` geometry +^^^^^^^^^^^^^^^^^^^ + +The following inputs are defined using the prefix ``sphere``: + ++------------------------+-------------------------------------------------------------------+----------+---------------------+ +| | Description | Type | Default | ++========================+===================================================================+==========+=====================+ +| radius | Sphere radius. | Real | None | ++------------------------+-------------------------------------------------------------------+----------+---------------------+ +| center | Center of sphere. | Reals<3> | 0 0 0 | ++------------------------+-------------------------------------------------------------------+----------+---------------------+ +| internal_flow | Indicates that flow is *inside* the sphere. | Bool | false | ++------------------------+-------------------------------------------------------------------+----------+---------------------+ + + ---- .. _InputsGeometry_generic: @@ -300,12 +321,12 @@ The following inputs are defined using the prefix ``csg``: +========================+===================================================================+==========+=====================+ | geometry_filename | The CSG file that defines the EB geometry. | String | '' | +------------------------+-------------------------------------------------------------------+----------+---------------------+ -| internal_flow | Indicates that flow is *inside* the box. | Bool | true | -+------------------------+-------------------------------------------------------------------+----------+---------------------+ | scaling_factor | Scale the geometry. | Reals<3> | 1 1 1 | +------------------------+-------------------------------------------------------------------+----------+---------------------+ | translation | Translate the geometry. | Reals<3> | 0 0 0 | +------------------------+-------------------------------------------------------------------+----------+---------------------+ +| internal_flow | Indicates that flow is *inside* the the CSG geometry. | Bool | true | ++------------------------+-------------------------------------------------------------------+----------+---------------------+ .. note:: A full description of this feature is beyond the scope of this section. A future update to @@ -330,6 +351,8 @@ The following inputs are defined using the prefix ``stl``: +------------------------+-------------------------------------------------------------------+----------+---------------------+ | translation | Translate the geometry. | Reals<3> | 0 0 0 | +------------------------+-------------------------------------------------------------------+----------+---------------------+ +| internal_flow | Indicates that flow is *inside* the STL geometry. | Bool | true | ++------------------------+-------------------------------------------------------------------+----------+---------------------+ | use_bvh | Use bounding volume optimization. | Bool | true | +------------------------+-------------------------------------------------------------------+----------+---------------------+ diff --git a/docs/source_docs/user_guide/inputs/model_options.rst b/docs/source_docs/user_guide/inputs/model_options.rst index 55526df..4801e51 100644 --- a/docs/source_docs/user_guide/inputs/model_options.rst +++ b/docs/source_docs/user_guide/inputs/model_options.rst @@ -4,18 +4,15 @@ Model options The following inputs are defined using the prefix ``mfix``: -+--------------------------+----------------------------------------------------------------------------+----------+---------------------+ -| | Description | Type | Default | -+==========================+============================================================================+==========+=====================+ -| gravity | Gravity vector. | Reals<3> | 0 0 0 | -+--------------------------+----------------------------------------------------------------------------+----------+---------------------+ ++--------------------------+----------------------------------------------------------------------------+----------+---------+ +| | Description | Type | Default | ++==========================+============================================================================+==========+=========+ +| gravity | Gravity vector. | Reals<3> | 0 0 0 | ++--------------------------+----------------------------------------------------------------------------+----------+---------+ Enabling solvers ---------------- - - - The following input is defined using the prefix ``mfix``: +--------------------------+----------------------------------------------------------------------------+----------+---------------------+ @@ -139,6 +136,8 @@ The following inputs are defined using the prefix ``solids``: +---------------------+---------------------------------------------------------------------------+-------------+-----------+ | energy.source | User defined enthalpy source for particles. | Real | 0. | +---------------------+---------------------------------------------------------------------------+-------------+-----------+ +| prevent_outflow | Prevent particles from exiting at pressure outlets. | Int | 0 | ++---------------------+---------------------------------------------------------------------------+-------------+-----------+ @@ -182,8 +181,8 @@ in each direction, then subtracted from each particle's velocity vector so that for the system is zero. -Fluid-particle couping ----------------------- +Fluid-particle coupling +----------------------- Drag coefficient ^^^^^^^^^^^^^^^^ diff --git a/docs/source_docs/user_guide/inputs/output/plotting.rst b/docs/source_docs/user_guide/inputs/output/plotting.rst index bdab758..4770b83 100644 --- a/docs/source_docs/user_guide/inputs/output/plotting.rst +++ b/docs/source_docs/user_guide/inputs/output/plotting.rst @@ -71,6 +71,8 @@ The following inputs must be preceded by the prefix ``mfix`` and control which v +---------------------+-----------------------------------------------------------------------+-------------+-----------+ | plt_vort | Plot fluid vorticity. | Int | 0 | +---------------------+-----------------------------------------------------------------------+-------------+-----------+ +| plt_X_g | Plot fluid species mass fractions. | Int | 0 | ++---------------------+-----------------------------------------------------------------------+-------------+-----------+ The following inputs must be preceded by the prefix ``mfix.solids`` and allow to write additional plotfiles which contain only solids variables in specific regions at fixed timesteps or approximated simulation times. -- GitLab From 61d02c41afd840380a9fe2635c0ab6096f6f25b9 Mon Sep 17 00:00:00 2001 From: Jordan Musser Date: Sun, 15 Mar 2026 09:35:43 -0400 Subject: [PATCH 2/2] Remove false defaults --- .../user_guide/inputs/boundary_conditions.rst | 48 +++++++++---------- docs/source_docs/user_guide/inputs/domain.rst | 6 +-- .../user_guide/inputs/fluid_model.rst | 13 +++-- .../user_guide/inputs/geometry.rst | 14 ------ .../user_guide/inputs/initial_conditions.rst | 40 ++++++++-------- .../user_guide/inputs/initialization.rst | 16 +++++++ .../source_docs/user_guide/inputs/species.rst | 13 +++-- 7 files changed, 75 insertions(+), 75 deletions(-) diff --git a/docs/source_docs/user_guide/inputs/boundary_conditions.rst b/docs/source_docs/user_guide/inputs/boundary_conditions.rst index 7158a63..9bbda17 100644 --- a/docs/source_docs/user_guide/inputs/boundary_conditions.rst +++ b/docs/source_docs/user_guide/inputs/boundary_conditions.rst @@ -47,24 +47,24 @@ using the prefix ``bc.[region_name].[fluid_name]``: +------------------------+------------------------------------------------------------------------+-------------+-----------+ | | Description | Type | Default | +========================+========================================================================+=============+===========+ -| volfrac | Volume fraction [required if bc type is ``mi``] | Real | 0 | +| volfrac | Volume fraction [required if bc type is ``mi``] | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| density | Fluid density [required if bc type is ``mi`` or ``pi``] | Real | 0 | +| density | Fluid density [required if bc type is ``mi`` or ``pi``] | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| pressure | Fluid pressure [required if bc type is ``po' or ``pi``] | Real | 0 | +| pressure | Fluid pressure [required if bc type is ``po' or ``pi``] | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| temperature | Fluid temperature [required if bc type is ``mi`` or ``pi``] | Real | 0 | +| temperature | Fluid temperature [required if bc type is ``mi`` or ``pi``] | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components [required if bc type is ``mi`` | Reals | 0 0 0 | +| velocity | Velocity components [required if bc type is ``mi`` | Reals | None | | | and ``volflow`` or ``massflow`` not specified] | | | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| volflow | Volumetric flow rate [required if bc type is ``mi`` | Real | 0 | +| volflow | Volumetric flow rate [required if bc type is ``mi`` | Real | None | | | and ``velocity`` or ``massflow`` not specified] | | | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| massflow | Mass flow rate [required if bc type is ``mi`` | Real | 0 | +| massflow | Mass flow rate [required if bc type is ``mi`` | Real | None | | | and ``velocity`` or ``volflow`` not specified] | | | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| species.[species_name] | Species `species_name` mass fraction [required if `solve_species`=1 | Real | 0 | +| species.[species_name] | Species `species_name` mass fraction [required if `solve_species`=1 | Real | None | | | and bc type is ``mi`` or ``pi``] | | | +------------------------+------------------------------------------------------------------------+-------------+-----------+ @@ -142,15 +142,15 @@ For inflow boundary conditions , the solids inputs are defined using the prefix +------------------------+-----------------------------------------------------------------------+-------------+-----------+ | | Description | Type | Default | +========================+=======================================================================+=============+===========+ -| volfrac | Volume fraction | Real | 0 | +| volfrac | Volume fraction | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| temperature | Temperature | Real | 0 | +| temperature | Temperature | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| species.[species_name] | Mass fraction of ``species_name`` | Real | 0 | +| species.[species_name] | Mass fraction of ``species_name`` | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components | Reals | 0 0 0 | +| velocity | Velocity components | Reals | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| volflow | Volumetric flow rate. | Real | 0 | +| volflow | Volumetric flow rate. | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ @@ -187,20 +187,20 @@ please refer to :ref:`ReferenceParticleDistributions | 0 0 0 | +| normal | [Optional] Specifies the target face normal direction. Only EB faces | Reals<3> | None | | | whose normals are parallel (within the specified tolerance) will have | | | | | the boundary condition applied. | | | +--------------------+-----------------------------------------------------------------------+-------------+-----------+ diff --git a/docs/source_docs/user_guide/inputs/domain.rst b/docs/source_docs/user_guide/inputs/domain.rst index fcb1401..5c5b148 100644 --- a/docs/source_docs/user_guide/inputs/domain.rst +++ b/docs/source_docs/user_guide/inputs/domain.rst @@ -18,9 +18,9 @@ The following inputs are defined using the prefix ``geometry``: +-----------------+-----------------------------------------------------------------------+-------------+-----------+ | is_periodic | 1 for true, 0 for false (one value for each coordinate direction) | Ints<3> | 0 0 0 | +-----------------+-----------------------------------------------------------------------+-------------+-----------+ -| prob_lo | Low corner of physical domain (physical not index space) | Reals<3> | 0 0 0 | +| prob_lo | Low corner of physical domain (physical not index space) | Reals<3> | None | +-----------------+-----------------------------------------------------------------------+-------------+-----------+ -| prob_hi | High corner of physical domain (physical not index space) | Reals<3> | 0 0 0 | +| prob_hi | High corner of physical domain (physical not index space) | Reals<3> | None | +-----------------+-----------------------------------------------------------------------+-------------+-----------+ .. attention:: @@ -43,7 +43,7 @@ The following inputs are defined using the prefix ``amr``: | | Description | Type | Default | | | | | | +======================+=======================================================================+=============+===========+ -| n_cell | Number of cells at level 0 in each coordinate direction. | Ints<3> | 0 0 0 | +| n_cell | Number of cells at level 0 in each coordinate direction. | Ints<3> | None | +----------------------+-----------------------------------------------------------------------+-------------+-----------+ The base mesh spacing is computed for each direction by dividing the :ref:`domain length` by the diff --git a/docs/source_docs/user_guide/inputs/fluid_model.rst b/docs/source_docs/user_guide/inputs/fluid_model.rst index 42d2543..58ceadc 100644 --- a/docs/source_docs/user_guide/inputs/fluid_model.rst +++ b/docs/source_docs/user_guide/inputs/fluid_model.rst @@ -50,11 +50,10 @@ The following inputs are defined using the prefix ``[fluid_name].viscosity.molec +------------------------+----------------------------------------------------------------+--------+----------+ | | Description | Type | Default | +========================+================================================================+========+==========+ -| model | Specify which molecular viscosity model to use. | String | None | +| model | Specify which molecular viscosity model to use. | String | constant | | | | | | | | Options: | | | | | | | | -| | * ``None`` - no viscosity model. | | | | | * ``constant`` - constant viscosity | | | | | * ``Sutherland`` :cite:p:`suth1893` - | | | | | | | | @@ -73,23 +72,23 @@ The following inputs are defined using the prefix ``[fluid_name].viscosity.molec | | A viscosity model is required if the fluid solver is | | | | | enabled. | | | +------------------------+----------------------------------------------------------------+--------+----------+ -| constant | Constant fluid viscosity. | Real | 0 | +| constant | Constant fluid viscosity. | Real | None | | | | | | | | A value is required for ``constant`` viscosity model. | | | +------------------------+----------------------------------------------------------------+--------+----------+ -| Sutherland.T_ref | Sutherland model reference temperature. | Real | 0 | +| Sutherland.T_ref | Sutherland model reference temperature. | Real | None | | | | | | | | A value is required for ``Sutherland`` viscosity model. | | | +------------------------+----------------------------------------------------------------+--------+----------+ -| Sutherland.mu_ref | Sutherland model reference viscosity at T_ref. | Real | 0 | +| Sutherland.mu_ref | Sutherland model reference viscosity at T_ref. | Real | None | | | | | | | | A value is required for ``Sutherland`` viscosity model. | | | +------------------------+----------------------------------------------------------------+--------+----------+ -| Sutherland.S | Sutherland model temperature. | Real | 0 | +| Sutherland.S | Sutherland model temperature. | Real | None | | | | | | | | A value is required for ``Sutherland`` viscosity model. | | | +------------------------+----------------------------------------------------------------+--------+----------+ -| Reid.A | Reid model constants. | Real | 0 | +| Reid.A | Reid model constants. | Real | None | | Reid.B | | | | | Reid.C | Values are required for ``Reid`` viscosity model. | | | | Reid.D | | | | diff --git a/docs/source_docs/user_guide/inputs/geometry.rst b/docs/source_docs/user_guide/inputs/geometry.rst index 2b6add4..e0ad0d8 100644 --- a/docs/source_docs/user_guide/inputs/geometry.rst +++ b/docs/source_docs/user_guide/inputs/geometry.rst @@ -361,20 +361,6 @@ The following inputs are defined using the prefix ``stl``: the documentation may include a tutorial to better demonstrate this feature. -Checkpoint geometry -------------------- - -Read EB geometry data from a checkpoint file. - -The following inputs are defined using the prefix ``mfix``. - -+----------------------+-----------------------------------------------------------------------+-------------+--------------+ -| | Description | Type | Default | -+======================+=======================================================================+=============+==============+ -| geom_chk_read | Flag to read the EB geometry data from the ``geom_chk_file`` | Bool | false | -| | :ref:`checkpoint file`. If levelset refinement | | | -| | is enabled, levelset data is read from ``geom_levelset_chk_file``. | | | -+----------------------+-----------------------------------------------------------------------+-------------+--------------+ Levelset refinement ------------------- diff --git a/docs/source_docs/user_guide/inputs/initial_conditions.rst b/docs/source_docs/user_guide/inputs/initial_conditions.rst index 7c94000..7220f9c 100644 --- a/docs/source_docs/user_guide/inputs/initial_conditions.rst +++ b/docs/source_docs/user_guide/inputs/initial_conditions.rst @@ -26,17 +26,17 @@ using the compound prefix ``ic.[region_name].[fluid_name]``: +------------------------+------------------------------------------------------------------------+-------------+-----------+ | | Description | Type | Default | +========================+========================================================================+=============+===========+ -| volfrac | Volume fraction [required] | Real | 0 | +| volfrac | Volume fraction [required] | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| density | Fluid density | Real | 0 | +| density | Fluid density | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components | Reals<3> | 0 0 0 | +| velocity | Velocity components | Reals<3> | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| pressure | Fluid pressure | Real | 0 | +| pressure | Fluid pressure | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| temperature | Fluid temperature | Real | 0 | +| temperature | Fluid temperature | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ -| species.[species_name] | Mass fraction of ``species_name``. Species must be a fluid species. | Real | 0 | +| species.[species_name] | Mass fraction of ``species_name``. Species must be a fluid species. | Real | None | +------------------------+------------------------------------------------------------------------+-------------+-----------+ @@ -80,13 +80,13 @@ using the compound prefix ``ic.[region_name].[solid_name]``: +------------------------+-----------------------------------------------------------------------+-------------+-----------+ | | Description | Type | Default | +========================+=======================================================================+=============+===========+ -| volfrac | Volume fraction | Real | 0 | +| volfrac | Volume fraction | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| temperature | Temperature | Real | 0 | +| temperature | Temperature | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| species.[species_name] | Mass fraction of `species_name`. Must be a solid species. | Real | 0 | +| species.[species_name] | Mass fraction of `species_name`. Must be a solid species. | Real | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ -| velocity | Velocity components | Reals<3> | 0 0 0 | +| velocity | Velocity components | Reals<3> | None | +------------------------+-----------------------------------------------------------------------+-------------+-----------+ For automatically generated particles, diameter and density distributions can be specified. @@ -122,20 +122,20 @@ please refer to :ref:`ReferenceParticleDistributions `. If levelset refinement | | | +| | is enabled, levelset data is read from ``geom_levelset_chk_file``. | | | ++----------------------+-----------------------------------------------------------------------+-------------+--------------+ diff --git a/docs/source_docs/user_guide/inputs/species.rst b/docs/source_docs/user_guide/inputs/species.rst index f94ad72..0b40d44 100644 --- a/docs/source_docs/user_guide/inputs/species.rst +++ b/docs/source_docs/user_guide/inputs/species.rst @@ -155,12 +155,11 @@ The following input is defined using the prefix ``species.viscosity.molecular`` +------------------------+-------------------------------------------------------------------------+----------+-----------+ | | Description | Type | Default | +========================+=========================================================================+==========+===========+ -| model | Molecular viscosity model of species. This setting only applies when | String | None | +| model | Molecular viscosity model of species. This setting only applies when | String | constant | | | ``[fluid_name].viscosity.molecular`` = ``mixture``. | | | | | | | | | | Options: | | | | | | | | -| | * ``None`` - no viscosity model | | | | | * ``constant`` - constant viscosity | | | | | * ``Sutherland`` :cite:p:`suth1893` | | | | | * ``Reid`` :cite:p:`reid87` | | | @@ -174,23 +173,23 @@ The following inputs are defined for each species using the prefix ``species.[sp +------------------------+-------------------------------------------------------------------------+----------+-----------+ | | Description | Type | Default | +========================+=========================================================================+==========+===========+ -| constant | Constant species fluid viscosity. | Real | 0 | +| constant | Constant species fluid viscosity. | Real | None | | | | | | | | A value is required for ``constant`` species viscosity model. | | | +------------------------+-------------------------------------------------------------------------+----------+-----------+ -| Sutherland.T_ref | Sutherland model reference temperature for species. | Real | 0 | +| Sutherland.T_ref | Sutherland model reference temperature for species. | Real | None | | | | | | | | A value is required for ``Sutherland`` species viscosity model. | | | +------------------------+-------------------------------------------------------------------------+----------+-----------+ -| Sutherland.mu_ref | Sutherland model reference viscosity at T_ref for species. | Real | 0 | +| Sutherland.mu_ref | Sutherland model reference viscosity at T_ref for species. | Real | None | | | | | | | | A value is required for ``Sutherland`` species viscosity model. | | | +------------------------+-------------------------------------------------------------------------+----------+-----------+ -| Sutherland.S | Sutherland model temperature for species. | Real | 0 | +| Sutherland.S | Sutherland model temperature for species. | Real | None | | | | | | | | A value is required for ``Sutherland`` species viscosity model. | | | +------------------------+-------------------------------------------------------------------------+----------+-----------+ -| Reid.A | Reid model constants for species. | Real | 0 | +| Reid.A | Reid model constants for species. | Real | None | | Reid.B | | | | | Reid.C | Values are required for ``Reid`` species viscosity model. | | | | Reid.D | | | | -- GitLab