From 763ab5915430cd179ea04b20b660e719d4145466 Mon Sep 17 00:00:00 2001 From: Deepak Rangarajan Date: Wed, 3 Jan 2024 15:56:36 +0000 Subject: [PATCH 1/2] add notes for new deposition redist option --- docs/source_docs/inputs/InputsDiscretization.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source_docs/inputs/InputsDiscretization.rst b/docs/source_docs/inputs/InputsDiscretization.rst index 5754dbd..9d91fd7 100644 --- a/docs/source_docs/inputs/InputsDiscretization.rst +++ b/docs/source_docs/inputs/InputsDiscretization.rst @@ -24,6 +24,12 @@ The following inputs must be preceded by "mfix." | correction_small_volfrac | Threshold volume fraction for correcting small cell velocity | | | | | at the end of the predictor and corrector | Real | 1.e-4 | +---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| deposition_redist_type | Redistribute excess solids using max packing ("MaxPack") or state | | | +| | ("StateRedist") algorithms. | String | MaxPack | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ +| deposition_redist_vfrac | The threshold cell volume fraction when using "StateRedist" | | | +| | for deposition redistribution. | Real | 0.1 | ++---------------------------------+-----------------------------------------------------------------------+-------------+--------------+ 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 From 08539ed4b3bb72c56a4c211b56b4554df5b5131c Mon Sep 17 00:00:00 2001 From: Deepak Rangarajan Date: Wed, 3 Jan 2024 16:29:49 +0000 Subject: [PATCH 2/2] add amr options to the docs --- docs/source_docs/inputs/InputsLoadBalancing.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/source_docs/inputs/InputsLoadBalancing.rst b/docs/source_docs/inputs/InputsLoadBalancing.rst index ff41595..f7c386e 100644 --- a/docs/source_docs/inputs/InputsLoadBalancing.rst +++ b/docs/source_docs/inputs/InputsLoadBalancing.rst @@ -23,6 +23,14 @@ The following inputs must be preceded by "amr." and determine how we create the +----------------------+-----------------------------------------------------------------------+-------------+-----------+ | blocking_factor_z | Each grid must be divisible by blocking_factor_z in z-direction | Int | 8 | +----------------------+-----------------------------------------------------------------------+-------------+-----------+ +| grid_eff | Threshold value to ensure grids do not contain too large a fraction | Real | 0.7 | +| | of un-tagged cells. | | | +| | Applicable only when mesh refinement is enabled ("max_level" > 0). | | | ++----------------------+-----------------------------------------------------------------------+-------------+-----------+ +| n_error_buf | Controls the number of tagged cells before grids are defined. Used | Int | 1 | +| | to ensure coarse/fine boundaries are not too close to tagged cells. | | | +| | Applicable only when mesh refinement is enabled ("max_level" > 0). | | | ++----------------------+-----------------------------------------------------------------------+-------------+-----------+ The following inputs must be preceded by "mfix." and determine how often we regrid. -- GitLab