From 7740b6fa0dcf314d2ecd4390e34cef75db8c6f63 Mon Sep 17 00:00:00 2001 From: Deepak Rangarajan Date: Tue, 8 Aug 2023 16:19:13 +0000 Subject: [PATCH] add new option from mfix MR 1170 --- .../inputs/InputsDiscretization.rst | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/docs/source_docs/inputs/InputsDiscretization.rst b/docs/source_docs/inputs/InputsDiscretization.rst index 6764821..3222b6d 100644 --- a/docs/source_docs/inputs/InputsDiscretization.rst +++ b/docs/source_docs/inputs/InputsDiscretization.rst @@ -3,20 +3,22 @@ Discretization ============== -+---------------------------+-----------------------------------------------------------------------+-------------+--------------+ -| Key | Description | Type | Default | -+===========================+=======================================================================+=============+==============+ -| advection_type | Predictor-Corrector Method of Lines ("mol") or Godunov ("godunov") | String | Godunov | -+---------------------------+-----------------------------------------------------------------------+-------------+--------------+ -| redistribution_type | Use flux ("FluxRedist"), state ("StateRedist") or no ("NoRedist") | | | -| | redistribution | String | StateRedist | -+---------------------------+-----------------------------------------------------------------------+-------------+--------------+ -| redistribute_nodal_proj | Redistribute the velocity field after the nodal projection | Bool | False | -+---------------------------+-----------------------------------------------------------------------+-------------+--------------+ -| 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 | -+---------------------------+-----------------------------------------------------------------------+-------------+--------------+ ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| Key | Description | Type | Default | ++=================================+=======================================================================+=============+==============+ +| advection_type | Predictor-Corrector Method of Lines ("mol") or Godunov ("godunov") | String | Godunov | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| redistribution_type | Use flux ("FluxRedist"), state ("StateRedist") or no ("NoRedist") | | | +| | redistribution | String | StateRedist | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| redistribute_before_nodal_proj | Redistribute the velocity field before the nodal projection | Bool | True | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| redistribute_nodal_proj | Redistribute the velocity field after the nodal projection | Bool | False | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| 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 tests show that the new single-step Godunov method is roughly twice as fast as -- GitLab