From d09d0b253e0a92a2d1937b27b218440f345e0e9c Mon Sep 17 00:00:00 2001 From: Jordan Musser Date: Sat, 15 Nov 2025 10:37:07 -0500 Subject: [PATCH] Move read EB checkpoint to initialize section --- docs/source_docs/user_guide/inputs/initialization.rst | 4 ++++ .../user_guide/inputs/output/checkpointing.rst | 8 ++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/source_docs/user_guide/inputs/initialization.rst b/docs/source_docs/user_guide/inputs/initialization.rst index a4bb68e..55c6949 100644 --- a/docs/source_docs/user_guide/inputs/initialization.rst +++ b/docs/source_docs/user_guide/inputs/initialization.rst @@ -19,6 +19,10 @@ They must be defined with the prefix ``mfix``: +----------------------+-----------------------------------------------------------------------+-------------+--------------+ | restart | If set, then restart from this file rather than from scratch. | String | None | +----------------------+-----------------------------------------------------------------------+-------------+--------------+ +| geom_chk_read | Flag to read the EB geometry data from the ``geom_chk_file`` | Bool | false | +| | :ref:`checkpoint file`. If levelset refinement | | | +| | is enabled, levelset data is read from ``geom_levelset_chk_file``. | | | ++----------------------+-----------------------------------------------------------------------+-------------+--------------+ | repl_x | Replicate initial data by this factor in the x-direction. | Int | 1 | +----------------------+-----------------------------------------------------------------------+-------------+--------------+ | repl_y | Replicate initial data by this factor in the y-direction. | Int | 1 | diff --git a/docs/source_docs/user_guide/inputs/output/checkpointing.rst b/docs/source_docs/user_guide/inputs/output/checkpointing.rst index 30fe4fb..3eda37d 100644 --- a/docs/source_docs/user_guide/inputs/output/checkpointing.rst +++ b/docs/source_docs/user_guide/inputs/output/checkpointing.rst @@ -20,12 +20,8 @@ The following inputs must be preceded by the prefix ``mfix`` and control checkpo +-------------------------+-----------------------------------------------------------------------+-------------+------------+ | check_file | Prefix to use for checkpoint output | String | chk | +-------------------------+-----------------------------------------------------------------------+-------------+------------+ -| geom_chk_write | When enabled, write the EB geometry data into ``geom_chk_file`` | Bool | false | -| | and additionally, ``geom_levelset_chk_file`` if levelset | | | -| | refinement is enabled. | | | -+-------------------------+-----------------------------------------------------------------------+-------------+------------+ -| geom_chk_read | When true, read the EB geometry data from ``geom_chk_file`` | Bool | false | -| | and additionally, ``geom_levelset_chk_file`` if levelset | | | +| geom_chk_write | Write the EB geometry data into ``geom_chk_file`` and additionally, | Bool | false | +| | ``geom_levelset_chk_file`` if levelset refinement is enabled. | | | | | refinement is enabled. | | | +-------------------------+-----------------------------------------------------------------------+-------------+------------+ | geom_chk_file | Name of the EB checkpoint file that is used to store or read | String | geom_chk | -- GitLab