Commit ab698ea0 authored by Deepak Rangarajan's avatar Deepak Rangarajan Committed by Jordan Musser
Browse files

add missing godunov options (exa/docs!86)

parent 470515e1
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -73,6 +73,18 @@ The following inputs are defined using the ``mfix`` prefix.
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| use_drag_in_godunov             | Include a drag term in the Godunov flux or (default) not              |   Bool      |  False       |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| godunov_ppm                     | When using Godunov, use piecewise parabolic (PPM) instead of          |   Bool      |  False       |
|                                 | piecewise linear (PLM) reconstruction                                 |             |              |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| godunov_include_diff_in_forcing | When using Godunov, include viscous/diffusive terms in forcing terms  |   Bool      |  True        |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| godunov_use_forces_in_trans     | When using Godunov, add forcing terms in the construction of `trans`  |   Bool      |  False       |
|                                 | velocities                                                            |             |              |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| use_mac_phi_in_godunov          | When using Godunov, don't include the pressure gradient in the        |   Bool      |  False       |
|                                 | forcing term passed into the godunov routine; instead use gradient of |             |              |
|                                 | mac phi which contains the full pressure                              |             |              |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| correction_small_volfrac        | Threshold volume fraction for correcting small cell velocity          |             |              |
|                                 | at the end of the predictor and corrector                             |   Real      |  1.e-4       |
+---------------------------------+-----------------------------------------------------------------------+-------------+--------------+
+2 −0
Original line number Diff line number Diff line
@@ -226,6 +226,8 @@ The following inputs are valid when using ``BoomerAMG`` as a preconditioner or s
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| overwrite_existing_matrix_files   |  Over-write existing matrix files                                     |    Bool     |   false      |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| write_matrix_files                |  Write out matrix into text files                                     |    Bool     |   false      |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+


.. note::