Unverified Commit 316794df authored by jmusser304's avatar jmusser304 Committed by GitHub
Browse files

Update InputsDiscretization.rst

Added new input `redistribute_nodal_proj` and corrected the defaults for advection and redistribution types.
parent 132f1b3c
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -6,14 +6,16 @@ Discretization
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+
| Key                       | Description                                                           |   Type      | Default      |
+===========================+=======================================================================+=============+==============+
| use_drag_coeff_in_proj_gp | Algebraically consistent p coeff in proj or (default) simplified form |   Bool      |  False       |
| advection_type            | Predictor-Corrector Method of Lines ("mol") or Godunov ("godunov")    |   String    |  Godunov     |
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+
| advection_type            | Predictor-Corrector Method of Lines ("mol") or Godunov ("godunov")    |   String    |  mol         |
| redistribution_type       | Use flux ("FluxRedist"), state ("StateRedist") or no ("NoRedist")     |             |              |
|                           | redistribution                                                        |   String    |  StateRedist |
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+
| use_drag_in_godunov       | Include a drag term in the Godunov flux or (default) not              |   Bool      |  False       |
| redistribute_nodal_proj   | Redistribute the velocity field after the nodal projection            |   Bool      |  False       |
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+
| redistribution_type       | Use flux ("FluxRedist"), state ("StateRedist") or no ("NoRedist")     |             |              |
|                           | redistribution                                                        |   String    |  FluxRedist  |
| use_drag_coeff_in_proj_gp | Algebraically consistent p coeff in proj or (default) simplified form |   Bool      |  False       |
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+
| use_drag_in_godunov       | Include a drag term in the Godunov flux or (default) not              |   Bool      |  False       |
+---------------------------+-----------------------------------------------------------------------+-------------+--------------+

Notes: The code was originally developed with MOL and FluxRedist. Preliminary