From 316794df42935d063bdc36a23dc571fdeb5e820b Mon Sep 17 00:00:00 2001 From: jmusser304 <60466395+jmusser304@users.noreply.github.com> Date: Thu, 21 Apr 2022 10:01:41 -0400 Subject: [PATCH] Update InputsDiscretization.rst Added new input `redistribute_nodal_proj` and corrected the defaults for advection and redistribution types. --- docs/source/inputs/InputsDiscretization.rst | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/source/inputs/InputsDiscretization.rst b/docs/source/inputs/InputsDiscretization.rst index 04e62bd..6764821 100644 --- a/docs/source/inputs/InputsDiscretization.rst +++ b/docs/source/inputs/InputsDiscretization.rst @@ -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 -- GitLab