Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
11aa01f
updated checkout build and link to use new unified model
JessicaMeixner-NOAA Nov 5, 2020
8adf345
updates for linking to new fix
JessicaMeixner-NOAA Nov 6, 2020
3318844
point to a particular hash of ufs model
JessicaMeixner-NOAA Nov 9, 2020
f6d3bb2
remove theia modules
JessicaMeixner-NOAA Nov 10, 2020
648e1cd
update ww3 build for fv3->ufs naming change
JessicaMeixner-NOAA Nov 10, 2020
ce6a6f3
adding WW3 to build
JessicaMeixner-NOAA Nov 10, 2020
335fd40
updates for having cice fix file have resolution folders and
JessicaMeixner-NOAA Nov 10, 2020
b8dba4a
remove CODEwave as it is an unused variable
JessicaMeixner-NOAA Nov 10, 2020
df0431e
more fv3->ufs dir name changes
JessicaMeixner-NOAA Nov 10, 2020
4424670
update location of fd_nems.yaml file for CMEPS-interface change
JessicaMeixner-NOAA Nov 10, 2020
896d603
modules used for successful forecast and atm post, but ocn post failed
JessicaMeixner-NOAA Nov 10, 2020
73ba046
remove nowave parm file
JessicaMeixner-NOAA Nov 10, 2020
2d13d80
rename w/wave file
JessicaMeixner-NOAA Nov 10, 2020
508eb23
change of parameters for mom6 to match rt tests
JessicaMeixner-NOAA Nov 10, 2020
bcdc041
add all the parm files for ocean
JessicaMeixner-NOAA Nov 10, 2020
70c385c
updates for MOM6 to use same MOM_input templates as used in rt tests/…
JessicaMeixner-NOAA Nov 11, 2020
2216560
Merge remote-tracking branch 'EMC/feature/coupled-crow' into feature/…
JessicaMeixner-NOAA Nov 24, 2020
1eb4ff4
add one-step option to no wave case
JessicaMeixner-NOAA Nov 24, 2020
5cc684e
updates to make nems.configure template files more closely
JessicaMeixner-NOAA Dec 2, 2020
d00ad01
use latest ufs-weather-model
JessicaMeixner-NOAA Dec 4, 2020
4cb0071
update to latest code
JessicaMeixner-NOAA Dec 8, 2020
13ee4d1
changing n_aero from 1 to 0 following https://github.com/ufs-communi…
JessicaMeixner-NOAA Dec 8, 2020
aaed92a
updating MOM_input_templates based on https://github.com/ufs-communit…
JessicaMeixner-NOAA Dec 8, 2020
cef3392
updating iovsr after NCAR/ccpp-physics#514 namelist options iovrsw a…
JessicaMeixner-NOAA Dec 8, 2020
4dbf5e8
Merge remote-tracking branch 'EMC/feature/coupled-crow' into coupled/…
JessicaMeixner-NOAA Dec 8, 2020
adbfa5b
updates for most recent commit to ufs-weather-model
JessicaMeixner-NOAA Dec 10, 2020
71ffe6e
deleting redundant/renamed files. These files are now nems.configure…
JessicaMeixner-NOAA Dec 10, 2020
e113bba
updated wave case file to include frac grid and made a new
JessicaMeixner-NOAA Dec 10, 2020
80b1e10
use frac grid oro if frac grid true
JessicaMeixner-NOAA Dec 13, 2020
312e5d2
Merge remote-tracking branch 'EMC/feature/coupled-crow' into coupled/…
JessicaMeixner-NOAA Dec 15, 2020
8653998
add nonfrac grid case to readme
JessicaMeixner-NOAA Dec 15, 2020
7afce36
remove keep data option from case file
JessicaMeixner-NOAA Dec 15, 2020
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,10 @@ or
./setup_case.sh -p HERA ../cases/$CASE.yaml test2d
```
where $CASE is one of the following:
- prototype_5: Used for UFS S2S Prototype 5 (Runs 35 day cases with atm-ocn-ice-wav coupling)
- prototype_5: Used for UFS S2S Prototype 5 (Runs 35 day cases with atm-ocn-ice-wav coupling, use with p5 workflow only)
- coupled_free_forecast: 2 day tests for atm-ocn-ice coupling
- coupled_free_forecast_wave: 2 day test for atm-ocn-ice-wav coupling (same as p5 except shorter)
- coupled_free_forecast_wave: 2 day test for atm-ocn-ice-wav coupling (frac grid)
- coupled_free_forecast_nofrac_wave: 2 day test for atm-ocn-ice-wav coupling (non frac grid)
- atm_free_forecast: Run the atm only case with same ICs as coupled tests
Please see the bottom of the README for information about particular versions and ICs

Expand Down
11 changes: 10 additions & 1 deletion ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,17 @@ EOF
# Grid and orography data
for n in $(seq 1 $ntiles); do
$NLN $FIXfv3/$CASE/${CASE}_grid.tile${n}.nc $DATA/INPUT/${CASE}_grid.tile${n}.nc
$NLN $FIXfv3/$CASE/${CASE}_oro_data.tile${n}.nc $DATA/INPUT/oro_data.tile${n}.nc
done
if [ $FRAC_GRID ]; then
FIXoro=${FIXoro:-$FIX_DIR/fix_fv3_fracoro}
for n in $(seq 1 $ntiles); do
$NLN $FIXoro/${CASE}.mx${OCNRES}_frac/${CASE}.mx${OCNRES}_tile${n}.nc $DATA/INPUT/oro_data.tile${n}.nc
done
else
for n in $(seq 1 $ntiles); do
$NLN $FIXfv3/$CASE/${CASE}_oro_data.tile${n}.nc $DATA/INPUT/oro_data.tile${n}.nc
done
fi
if [ $cplflx = ".false." ] ; then
$NLN $FIXfv3/$CASE/${CASE}_mosaic.nc $DATA/INPUT/grid_spec.nc
else
Expand Down
62 changes: 62 additions & 0 deletions workflow/cases/coupled_free_forecast_nofrac_wave.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
case:
places:
workflow_file: layout/free_forecast_gfs.yaml
#BASE_CPLIC: /scratch2/NCEPDEV/climate/climpara/S2S/IC

settings:
SDATE: 2013-04-01t00:00:00
EDATE: 2013-04-01t00:00:00

onestep: .true.
cplmode: nems_orig
FRAC_GRID: .false.
cplwav: .true.
cplwav2atm: .true.
cplflx: .true.
print_esmf: .true.
nems_temp: 'cpld_wave'
mom6ic_prepared: .false.
KEEPDATA: NO

nsst:
NST_MODEL: 0

output_settings:
OCN_INTERVAL: 24
FHOUT_GFS: 6
FHMIN_GFS: 0
FHMAX_GFS: 48
FHMAX_HF_GFS: 0
FHOUT_HF_GFS: -1

fv3_gfs_settings:
CASE: C384
LEVS: 65
DELTIM: 450
SEEDLET: 10
CCPP_SUITE: FV3_GFS_v15p2_coupled
nst_anl: no
DO_SKEB: false
DO_SHUM: false
DO_SPPT: false
layout:
x: 6
y: 12
nth: 1
WGRP: 1
WGRP_NTASKS: 24
WRTIOBUF: "32M"
cdmbgwd: "1.0,1.2"

ocn_settings:
OCNPETS: 240

ice_settings:
ICEPETS: 48

wave_settings:
WAVPETS: 136

post:
downset: 2
GOESF: no
5 changes: 3 additions & 2 deletions workflow/cases/coupled_free_forecast_wave.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ case:
EDATE: 2013-04-01t00:00:00

onestep: .true.
cplmode: nems_orig
FRAC_GRID: .false.
cplmode: nems_frac
FRAC_GRID: .true.
cplwav: .true.
cplwav2atm: .true.
cplflx: .true.
Expand All @@ -35,6 +35,7 @@ case:
DELTIM: 450
SEEDLET: 10
CCPP_SUITE: FV3_GFS_v15p2_coupled
CPL_ATMIC: CFSRfracL64
nst_anl: no
DO_SKEB: false
DO_SHUM: false
Expand Down