coupled model configuration generation
Project description
CoupledModelDriver
CoupledModelDriver generates an overlying job submission framework and configuration directories for NEMS-coupled coastal ocean model ensembles.
pip install coupledmodeldriver
It utilizes NEMSpy to generate NEMS configuration files, shares common configurations between runs, and organizes spinup and mesh partition into separate jobs for dependant submission.
Documentation can be found at https://coupledmodeldriver.readthedocs.io
supported models and platforms
- models
- platforms
- local
- Slurm
- Hera
- Stampede2
- Orion
organization / responsibility
CoupledModelDriver is developed for the COASTAL Act project by the Coastal Marine Modeling Branch (CMMB) of the Office of Coast Survey (OCS), a part of the National Oceanic and Atmospheric Administration (NOAA), an agency of the United States federal government.
- Zachary Burnett (lead) - zachary.burnett@noaa.gov
- William Pringle - wpringle@anl.gov
- Saeed Moghimi - saeed.moghimi@noaa.gov
usage example
1. generate JSON configuration files
initialize_adcirc
creates JSON configuration files according to the given parameters. ADCIRC run options that are not exposed
by this command, such as runs
or gwce_solution_scheme
, can be specified by directly modifying the JSON files. The following
creates JSON files for coupling (ATMESH + WW3DATA) -> ADCIRC
over a small Shinnecock Inlet mesh:
initialize_adcirc \
--platform HERA \
--mesh-directory /scratch2/COASTAL/coastal/save/shared/models/meshes/shinnecock/v1.0 \
--output-directory hera_shinnecock_ike_spinup_tidal_atmesh_ww3data \
--modeled-start-time 20080823 \
--modeled-duration 14:06:00:00 \
--modeled-timestep 00:00:02 \
--nems-interval 01:00:00 \
--adcirc-executable /scratch2/COASTAL/coastal/save/shared/repositories/CoastalApp/ALLBIN_INSTALL/NEMS-adcirc-atmesh-ww3data.x \
--adcirc-processors 40
--adcprep-executable /scratch2/COASTAL/coastal/save/shared/repositories/CoastalApp/ALLBIN_INSTALL/adcprep \
--modulefile /scratch2/COASTAL/coastal/save/shared/repositories/CoastalApp/modulefiles/envmodules_intel.hera \
--forcings tidal,atmesh,ww3data \
--tidal-source TPXO \
--tidal-path /scratch2/COASTAL/coastal/save/shared/models/forcings/tides/h_tpxo9.v1.nc \
--tidal-spinup-duration 12:06:00:00 \
--atmesh-path /scratch2/COASTAL/coastal/save/shared/models/forcings/shinnecock/ike/wind_atm_fin_ch_time_vec.nc \
--ww3data-path /scratch2/COASTAL/coastal/save/shared/models/forcings/shinnecock/ike/ww3.Constant.20151214_sxy_ike_date.nc
This will create the directory hera_shinnecock_ike_spinup_tidal_atmesh_ww3data/
with the following JSON configuration files:
๐ hera_shinnecock_ike_spinup_tidal_atmesh_ww3data/
โฃ ๐ configure_adcirc.json
โฃ ๐ configure_atmesh.json
โฃ ๐ configure_modeldriver.json
โฃ ๐ configure_nems.json
โฃ ๐ configure_slurm.json
โฃ ๐ configure_tidal_forcing.json
โ ๐ configure_ww3data.json
These files contain relevant configuration values for an ADCIRC run. You will likely wish to change these values to alter the
resulting run, before generating the actual model configuration. For instance, NEMS connections and the run sequence need to be
manually specified in configure_nems.json
.
2. generate model configuration files
generate_adcirc
generates an ADCIRC run configuration (fort.14
, fort.15
, etc.) using options read from the JSON
configuration files (generated in the previous step).
cd hera_shinnecock_ike_spinup_tidal_atmesh_ww3data
generate_adcirc
The resulting configuration will look like this:
๐ hera_shinnecock_ike_spinup_tidal_atmesh_ww3data/
โฃ ๐ configure_adcirc.json
โฃ ๐ configure_atmesh.json
โฃ ๐ configure_modeldriver.json
โฃ ๐ configure_nems.json
โฃ ๐ configure_slurm.json
โฃ ๐ configure_tidal_forcing.json
โฃ ๐ configure_ww3data.json
โฃ ๐ spinup/
โ โฃ ๐ fort.13
โ โฃ ๐ fort.14 -> ../fort.14
โ โฃ ๐ fort.15
โ โฃ ๐ nems.configure
โ โฃ ๐ model_configure
โ โฃ ๐ atm_namelist.rc -> ./model_configure
โ โฃ ๐ config.rc
โ โฃ ๐ setup.job
โ โ ๐ adcirc.job
โฃ ๐ runs/
โ โ ๐ unperturbed/
โ โฃ ๐ fort.13
โ โฃ ๐ fort.14 -> ../../fort.14
โ โฃ ๐ fort.15
โ โฃ ๐ fort.67.nc -> ../../spinup/fort.67.nc
โ โฃ ๐ fort.68.nc -> ../../spinup/fort.68.nc
โ โฃ ๐ nems.configure
โ โฃ ๐ model_configure
โ โฃ ๐ atm_namelist.rc -> ./model_configure
โ โฃ ๐ config.rc
โ โฃ ๐ setup.job
โ โ ๐ adcirc.job
โฃ ๐ fort.14
โฃ ๐ cleanup.sh
โ ๐ run_hera.sh
3. run the model
The previous step will also have generated a script called ./run_hera.sh
. You can run it to submit the model run to the Slurm
job queue:
./run_hera.sh
The queue will have the following jobs added:
JOBID CPU NODE DEPENDENCY NODELIST(REA NAME
20967647 1 1 (null) (None) ADCIRC_SETUP_SPINUP
20967648 40 1 afterok:20967647 (Dependency) ADCIRC_COLDSTART_SPINUP
20967649 1 1 (null) (None) ADCIRC_SETUP_unperturbed
20967650 42 2 afterok:20967649 (Dependency) ADCIRC_HOTSTART_unperturbed
4. track model progress
check_completion
checks the completion status of a running model directory.
cd hera_shinnecock_ike_spinup_tidal_atmesh_ww3data
check_completion
{
"hera_shinnecock_ike_spinup_tidal_atmesh_ww3data": {
"spinup": "running - 15%",
"runs": "not_started - 0%"
}
}
you can also pass a specific directory (or several directories):
check_completion spinup
{
"spinup": "running - 27%"
}
cd run_20211027_florence_besttrack_250msubset_quadrature
check_completion runs/*_13
{
"vortex_4_variable_perturbation_13": "completed - 100.0%",
"vortex_4_variable_quadrature_13": "not_started - 0%"
}
if a run has an error, you can pass --verbose
to see detailed logs:
check_completion spinup
{
"spinup": "error - 0%"
}
check_completion spinup --verbose
{
"spinup": {
"status": "error",
"progress": "0%",
"error": {
"ADCIRC_SETUP_SPINUP.err.log": [
"forrtl: severe (24): end-of-file during read, unit -4, file /proc/92195/fd/0\n",
"Image PC Routine Line Source \n",
"adcprep 000000000069A72E Unknown Unknown Unknown\n",
"adcprep 00000000006CBAAF Unknown Unknown Unknown\n",
"adcprep 000000000050A5CB openprepfiles_ 6996 prep.F\n",
"adcprep 0000000000507F22 prep13_ 753 prep.F\n",
"adcprep 000000000042E2E9 prepinput_ 717 adcprep.F\n",
"adcprep 000000000042BCDB MAIN__ 239 adcprep.F\n",
"adcprep 000000000040B65E Unknown Unknown Unknown\n",
"libc-2.17.so 00002AAEC02EB555 __libc_start_main Unknown Unknown\n",
"adcprep 000000000040B569 Unknown Unknown Unknown\n",
"srun: error: h24c51: task 0: Exited with exit code 24\n",
"srun: launch/slurm: _step_signal: Terminating StepId=25366266.1\n"
]
}
}
}
check_completion runs
{
"spinup": "failed - 0%"
}
check_completion runs --verbose
{
"runs": {
"status": "failed",
"progress": "0%",
"failed": {
"fort.16": "ADCIRC output file `fort.16` not found"
},
"error": {
"ADCIRC_SETUP_unperturbed.err.log": [
"slurmstepd: error: execve(): /scratch2/COASTAL/coastal/save/shared/repositories/CoastalApp/ADCIRC/ALLBIN_INSTALL/adcprep: No such file or directory\n",
"srun: error: h18c49: task 0: Exited with exit code 2\n",
"srun: launch/slurm: _step_signal: Terminating StepId=25366268.0\n"
]
}
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for coupledmodeldriver-1.7.1.post1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6afbb285f7f0e35903644ea22654e555ec441d7ae09b70921262e7404798991 |
|
MD5 | 5a23161de237feec2a5f1fde48720ed9 |
|
BLAKE2b-256 | d2a1479eaea8994921fe4cc06aa531d7257a8b682c8a2315787a512d87fb1eaf |
Hashes for coupledmodeldriver-1.7.1.post1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a19e8f0129b1f1dddcd7f82cf14fe4051ee6f4c6bc81c83e477c8cc4911924dc |
|
MD5 | 720e9a10eb18d9a8da306228fb5621a7 |
|
BLAKE2b-256 | 8ee8afc261021efd6d56e9ade46babbed1cfe3bc6abbded7677f49aab3e94b48 |