Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion external/mom6_forge
Submodule mom6_forge updated 57 files
+0 −3 .docstr/build_docs.md
+0 −22 .docstr/examples.rst
+0 −7 .docstr/mom6_forge.grid.rst
+0 −16 .docstr/mom6_forge.rst
+0 −7 .docstr/mom6_forge.topo.rst
+19 −32 .github/workflows/docs.yml
+116 −0 .github/workflows/package.yml
+44 −0 .github/workflows/test.yml
+8 −2 .gitignore
+20 −1 README.md
+0 −0 docs/source/api/modules.rst
+117 −0 docs/source/api/mom6_forge.rst
+17 −0 docs/source/build_docs.md
+5 −1 docs/source/conf.py
+0 −0 docs/source/glossary.rst
+ docs/source/images/TopoLibrarySample.png
+ docs/source/images/TopoSampleGitLog.png
+ docs/source/images/TopoTempCommandHistory.png
+2 −2 docs/source/index.rst
+0 −0 docs/source/installation.rst
+8 −0 docs/source/notebooks.rst
+2 −5 docs/source/notebooks/1_spherical_grid.ipynb
+2 −7 docs/source/notebooks/2_equatorial_res.ipynb
+2 −7 docs/source/notebooks/3_custom_bathy.ipynb
+4 −9 docs/source/notebooks/4_ingest_landmask.ipynb
+2 −5 docs/source/notebooks/5_modify_existing.ipynb
+272 −0 docs/source/notebooks/6_coarsen_existing.ipynb
+4 −4 docs/source/notebooks/6_demo_editors.ipynb
+0 −0 docs/source/quickstart.rst
+76 −1 docs/source/widgets.rst
+2 −2 environment.yml
+373 −0 mom6_forge/_source_bathy.py
+642 −116 mom6_forge/_supergrid.py
+31 −19 mom6_forge/chl.py
+2 −1 mom6_forge/command_manager.py
+133 −2 mom6_forge/edit_command.py
+124 −11 mom6_forge/grid.py
+909 −207 mom6_forge/grid_creator.py
+151 −0 mom6_forge/mapping.py
+509 −296 mom6_forge/topo.py
+101 −90 mom6_forge/topo_editor.py
+19 −302 mom6_forge/utils.py
+3 −0 pyproject.toml
+7 −3 setup.py
+139 −0 tests/conftest.py
+58 −0 tests/test_edit_commands.py
+28 −0 tests/test_grid.py
+127 −0 tests/test_mapping.py
+160 −0 tests/test_masks.py
+2 −2 tests/test_notebooks.py
+396 −0 tests/test_rotation.py
+154 −0 tests/test_source_bathy.py
+97 −4 tests/test_supergrid.py
+24 −10 tests/test_topo.py
+56 −0 tests/test_topo_bathymetry_workflows.py
+1 −1 tests/test_topo_command_manager.py
+2 −32 tests/test_utils.py
19 changes: 13 additions & 6 deletions visualCaseGen/config_vars/launcher_vars.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,19 @@
@owh.out.capture()
def initialize_launcher_variables(cime):

ConfigVarStr("CASEROOT") # Path where the case will be created
ConfigVarStr("CASEROOT") # Path where the case will be created
ConfigVarStr(
"MACHINE",
default_value = cime.machine,
default_value=cime.machine,
)
ConfigVarStr("PROJECT", widget_none_val="") # Project ID for the machine
ConfigVarStr("CASE_CREATOR_STATUS", widget_none_val="") # a status variable to prevent the completion of the stage
ConfigVarInt("NINST", default_value=1) # Number of model instances (Currently, can only be controlled in the backend,
# particularly when visualCaseGen is used as an external library)
ConfigVarStr("PROJECT", widget_none_val="") # Project ID for the machine
ConfigVarStr(
"CASE_CREATOR_STATUS", widget_none_val=""
) # a status variable to prevent the completion of the stage
ConfigVarInt(
"NINST", default_value=1
) # Number of model instances (Currently, can only be controlled in the backend,
# particularly when visualCaseGen is used as an external library)
ConfigVarStr(
"PECOUNT"
) # PE layout size hint for create_newcase (S, M, L, X1, X2, NxM, or integer); None uses CIME default (M)
Loading
Loading