-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit contains the following: * CCPP is added to the s2s coupled system * Includes PR NOAA-EMC/fv3atm#86 (Regain bit-for-bit identical results between IPD and CCPP for coupled model runs) * Regression tests are added for IPD REPRO, CCPP REPRO, CCPP PROD * For warm start tests, mediator files are now located in RESTART directories in the baseline directories * Python script create_baseline.py is added for creating baseline directories iteratively from rtgen.PID directories Authored-by: @climbfuji Co-authored-by: Linlin.Pan <[email protected]> Co-authored-by: panll <[email protected]>
- Loading branch information
1 parent
a59b6cf
commit f53e7ce
Showing
42 changed files
with
41,717 additions
and
2,460 deletions.
There are no files selected for viewing
Submodule FV3
updated
8 files
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 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,107 @@ | ||
######################################################################## | ||
|
||
test cpld_fv3_ccpp_384_mom6_cice_cold_bmark_rt: fv3_ccpp_mom6_cice.exe { | ||
use cpld_fv3_ccpp_mom6_cice_cold_atm_flux | ||
use plat%default_cpl_benchmark | ||
|
||
ATMRES='384' | ||
TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE system - cold 384" | ||
CNTL_NAME="RT-Baselines_cold_bmrt_ccpp" | ||
CNTLMED="@[plat%BASELINE]/MEDIATOR_bmrt_ccpp" | ||
|
||
DT_ATMOS='450' | ||
NPX='385' | ||
NPY='385' | ||
IMO='1536' | ||
JMO='768' | ||
FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," | ||
FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," | ||
FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," | ||
FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," | ||
FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," | ||
|
||
FV3_mosaic="C@[ATMRES]" | ||
|
||
# inputs and fixed files for benchmark runs to match workflow | ||
INPUT_NML="input.benchmark_ccpp.nml.IN" | ||
SUITE_NAME='FV3_GFS_v15p2_coupled' | ||
FIELD_TABLE="field_table.gfdlmp" | ||
OZONE_data="@[FV3_input_data]/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77" | ||
CO2_data="@[plat%INPUTS]/FV3_input_bm2/INPUT" | ||
|
||
# - set date YYYYMMDDHH | ||
SYEAR='2013' | ||
SMONTH='04' | ||
SDAY='01' | ||
SHOUR='00' | ||
CDATE="@[SYEAR]@[SMONTH]@[SDAY]@[SHOUR]" | ||
|
||
# - set run type for CICE in ice_in | ||
RUNID='cpcice' | ||
|
||
# - set initialization type for MOM6 | ||
MOM6_RESTART_SETTING = 'r' | ||
|
||
# set locations of ICs | ||
BM_IC="@[plat%INPUTS]/BM_IC/@[CDATE]" | ||
FV3_IC="@[BM_IC]/gfs/C384/INPUT" | ||
MOM6_IC="@[BM_IC]/mom6_da" | ||
CICE5_IC="@[BM_IC]/cpc" | ||
|
||
spawn execute { | ||
{"@[build%target]", ranks="@[TASKS]", threads="@[THRD]", ppn="@[TPN]" } | ||
} | ||
} | ||
|
||
test cpld_fv3_ccpp_384_mom6_cice_cold_bmark_rt_repro: fv3_ccpp_mom6_cice_repro.exe { | ||
use cpld_fv3_ccpp_mom6_cice_cold_atm_flux_repro | ||
use plat%default_cpl_benchmark | ||
|
||
ATMRES='384' | ||
TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE system - cold 384 - repro" | ||
CNTL_NAME="RT-Baselines_cold_bmrt_repro" | ||
CNTLMED="@[plat%BASELINE]/MEDIATOR_bmrt_repro" | ||
|
||
DT_ATMOS='450' | ||
NPX='385' | ||
NPY='385' | ||
IMO='1536' | ||
JMO='768' | ||
FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," | ||
FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," | ||
FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," | ||
FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," | ||
FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," | ||
|
||
FV3_mosaic="C@[ATMRES]" | ||
|
||
# inputs and fixed files for benchmark runs to match workflow | ||
INPUT_NML="input.benchmark_ccpp.nml.IN" | ||
SUITE_NAME='FV3_GFS_v15p2_coupled' | ||
FIELD_TABLE="field_table.gfdlmp" | ||
OZONE_data="@[FV3_input_data]/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77" | ||
CO2_data="@[plat%INPUTS]/FV3_input_bm2/INPUT" | ||
|
||
# - set date YYYYMMDDHH | ||
SYEAR='2013' | ||
SMONTH='04' | ||
SDAY='01' | ||
SHOUR='00' | ||
CDATE="@[SYEAR]@[SMONTH]@[SDAY]@[SHOUR]" | ||
|
||
# - set run type for CICE in ice_in | ||
RUNID='cpcice' | ||
|
||
# - set initialization type for MOM6 | ||
MOM6_RESTART_SETTING = 'r' | ||
|
||
# set locations of ICs | ||
BM_IC="@[plat%INPUTS]/BM_IC/@[CDATE]" | ||
FV3_IC="@[BM_IC]/gfs/C384/INPUT" | ||
MOM6_IC="@[BM_IC]/mom6_da" | ||
CICE5_IC="@[BM_IC]/cpc" | ||
|
||
spawn execute { | ||
{"@[build%target]", ranks="@[TASKS]", threads="@[THRD]", ppn="@[TPN]" } | ||
} | ||
} |
Oops, something went wrong.