-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable running regional nesting configurations and add four regional …
…and global nesting RTs as well as two HAFS WW3 coupling RTs (#846) * * Add the following HAFS regional and global nesting regression tests. - hafs_regional_1nest_atm - hafs_regional_telescopic_2nests_atm - hafs_global_1nest_atm - hafs_global_multiple_4nests_atm * Unify and simplify the existing HAFS regression tests for both scripts and input data. * Switch to use 'netcdf' instead of 'netcdf_parallel' for the sfcfhhh.nc files for the hafs_regional_1nest_atm RT to speed up the write grid component. * *Add FHCYC, FHSWR, and FHLWR in tests/parm/input_global/regional/nest_hafs.nml.IN. Change FHCYC from 24 to 0 for hafs RTs. * *Add two HAFS WW3 related regression tests. - hafs_regional_atm_wav: two-way atm-wav coupling - hafs_regional_atm_ocn_wav: two-way atm-ocn coupling and one-way atm2wav coupling * updated hafs/ww3 tests -- rt.sh points to the temporary update input directories on orion Co-authored-by: JessicaMeixner-NOAA <[email protected]>
- Loading branch information
1 parent
e1cfb05
commit 5a548b9
Showing
43 changed files
with
5,255 additions
and
2,520 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
rm -rf INPUT RESTART | ||
mkdir INPUT RESTART | ||
|
||
for file in $(find @[INPUTDATA_ROOT]/FV3_hafs_input_data/ -maxdepth 1 -type f); do | ||
cp $file ./ | ||
done | ||
|
||
if [ ${CNTL_DIR} = "hafs_regional_atm" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_atm_ocn" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_docn" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_docn_oisst" ]; then | ||
cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_atm/* ./INPUT/ | ||
elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_telescopic_2nests_atm" ] || \ | ||
[ ${CNTL_DIR} = "hafs_global_1nest_atm" ] || \ | ||
[ ${CNTL_DIR} = "hafs_global_multiple_4nests_atm" ]; then | ||
cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_${CNTL_DIR}/* ./INPUT/ | ||
else | ||
echo "Error: unsupported experiments ${CNTL_DIR}" | ||
fi |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ | ||
[ ${CNTL_DIR} = "hafs_regional_atm_ocn_wav" ]; then | ||
cp @[INPUTDATA_ROOT_WW3]/mod_def.natl_6m ./mod_def.ww3 | ||
cp @[INPUTDATA_ROOT_WW3]/mod_def.points ./mod_def.points | ||
cp @[INPUTDATA_ROOT_WW3]/wind.natl_6m ./wind.ww3 | ||
# Currently, provide a non-existing symbolic link for nest.ww3 | ||
ln -sf @[INPUTDATA_ROOT_WW3]/nest.ww3 ./ | ||
else | ||
echo "Error: unsupported experiments ${CNTL_DIR}" | ||
fi |
Oops, something went wrong.