-
Notifications
You must be signed in to change notification settings - Fork 198
SFS Runs at C96mx100 #2960
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SFS Runs at C96mx100 #2960
Changes from 77 commits
30cf5df
4b3ae39
fe2054e
7b7ee9b
225d280
b17765e
675cb77
e49dbcf
ec4becc
b69d653
084d744
a4bb8f3
4ff31fd
97b92ee
713f41d
af31d2f
cec7b81
4aaca9a
11e1957
a005e5f
2dd9a7e
b132408
3d9455b
447224c
c6b7eaa
51aa2dd
a641591
4985361
8eaef27
2e7241f
ddc544d
40515ca
3d16fb7
5f37ce8
9e84240
fa25984
23564f1
2176326
e99b3f4
154e72f
57ce47b
b62e4ca
d393a13
8c875a9
a87fa6c
058ba52
3e74753
830d904
c938275
f51fed8
c842090
0802ef1
12e940c
66c7117
69fccdd
d93d094
788a4c4
446e02b
ed8aa9d
c75540c
259665e
fef15c5
5d05216
c9ee432
30beca0
077ad5f
7e09580
b019dc7
67272c3
ff3bf91
ceeea0b
d08d66a
d64111d
2b97e38
035cf24
8acc70a
5be5a75
e2587ae
cfa1543
35ee836
50c5b5e
3c4bbbf
3e32354
5bf7036
7a6188b
b5f217a
367f1e4
44c6d11
6912e43
686ba4f
df77207
b3e09dc
4dcb3ac
2215d40
fcc0983
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
experiment: | ||
system: gefs | ||
WalterKolczynski-NOAA marked this conversation as resolved.
Show resolved
Hide resolved
|
||
mode: forecast-only | ||
|
||
arguments: | ||
idate: 1994050100 | ||
edate: 1994050100 | ||
pslot: {{ 'pslot' | getenv }} | ||
app: S2S | ||
resdetatmos: 96 | ||
resensatmos: 96 | ||
resdetocean: 1 | ||
start: 'cold' | ||
gfs_cyc: 1 | ||
nens: 10 | ||
comroot: {{ 'RUNTESTS' | getenv }}/COMROOT | ||
expdir: {{ 'RUNTESTS' | getenv }}/EXPDIR | ||
icsdir: {{ 'TOPICDIR' | getenv }}/HR4/C96mx100 | ||
yaml: {{ HOMEgfs }}/ci/cases/yamls/sfs_defaults.yaml | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ base: | |
FHOUT_OCN_GFS: 24 | ||
FHOUT_ICE_GFS: 24 | ||
HOMEDIR: {{ 'RUNTESTS' | getenv }}/GLOBAL | ||
SFS_POST: "NO" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
base: | ||
DO_JEDIATMVAR: "NO" | ||
DO_JEDIATMENS: "NO" | ||
DO_JEDIOCNVAR: "NO" | ||
DO_JEDISNOWDA: "NO" | ||
DO_MERGENSST: "NO" | ||
DO_BUFRSND: "NO" | ||
DO_GEMPAK: "NO" | ||
DO_AWIPS: "NO" | ||
KEEPDATA: "YES" | ||
DO_EXTRACTVARS: "NO" | ||
FHMAX_GFS: 2976 | ||
FHMAX_HF_GFS: 0 | ||
FHOUT_HF_GFS: 1 | ||
FHOUT_GFS: 24 | ||
FHOUT_OCN_GFS: 24 | ||
FHOUT_ICE_GFS: 24 | ||
FCST_BREAKPOINTS: "" | ||
REPLAY_ICS: "NO" | ||
HPSSARCH: "NO" | ||
LOCALARCH: "NO" | ||
SFS_POST: "YES" | ||
ACCOUNT: {{ 'HPC_ACCOUNT' | getenv }} | ||
fcst: | ||
TYPE: "hydro" | ||
MONO: "mono" | ||
reforecast: "YES" | ||
FHZER: 24 | ||
stage_ic: | ||
USE_OCN_ENS_PERTURB_FILES: "YES" | ||
USE_ATM_ENS_PERTURB_FILES: "YES" | ||
ocn: | ||
MOM6_INTERP_ICS: "YES" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,7 +39,7 @@ if [[ "${RUN}" == "enkfgfs" ]]; then | |
fi | ||
|
||
# Stochastic physics parameters (only for ensemble forecasts) | ||
export DO_SKEB="YES" | ||
export DO_SKEB=${DO_SKEB:-"YES"} # SKEB turned off for C96 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this is going to work, because There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. DO_SKEB="NO" for C96 in config.ufs which is being propagated to the namelist. See log on hercules at /home/nbarton/GW/EXPDIR/SFS_C96mx100_S2S/LOGS_COMROOT/1994050100/fcst_mem001_seg0.log There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The point was this "YES" will never be used because it is always set upstream. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see, I removed DO_SKEB in config.ufs and added an if statement in config.efcs |
||
export SKEB="0.8,-999,-999,-999,-999" | ||
export SKEB_TAU="2.16E4,2.592E5,2.592E6,7.776E6,3.1536E7" | ||
export SKEB_LSCALE="500.E3,1000.E3,2000.E3,2000.E3,2000.E3" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
:HGT:surface: | ||
:PRMSL:mean sea level: | ||
:PRES:surface: | ||
:TMP:2 m above ground: | ||
:TMAX:2 m above ground: | ||
:TMIN:2 m above ground: | ||
:RH:2 m above ground: | ||
:DPT:2 m above ground: | ||
:UGRD:10 m above ground: | ||
:VGRD:10 m above ground: | ||
:APCP:surface: | ||
:CRAIN:surface: | ||
:CSNOW:surface: | ||
:CFRZR:surface: | ||
:CICEP:surface: | ||
:PWAT:entire atmosphere (considered as a single layer): | ||
:CAPE:180-0 mb above ground: | ||
:CAPE:surface: | ||
:CIN:180-0 mb above ground: | ||
:CIN:surface: | ||
:CPOFP:surface: | ||
:HLCY:3000-0 m above ground: | ||
:TCDC:entire atmosphere: | ||
:WEASD:surface: | ||
:SNOD:surface: | ||
:ULWRF:top of atmosphere: | ||
:DSWRF:surface: | ||
:DLWRF:surface: | ||
:USWRF:surface: | ||
:ULWRF:surface: | ||
:GUST:surface: | ||
:SHTFL:surface: | ||
:LHTFL:surface: | ||
:ICETK:surface: | ||
:TSOIL:0-0.1 | ||
:SOILW:0-0.1 | ||
:MSLET:mean sea level: | ||
:VIS:surface: | ||
:HGT:cloud ceiling: |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
:PRMSL:mean sea level: | ||
:PRES:surface: | ||
:TMP:surface: | ||
:TMP:2 m above ground: | ||
:TMP:850 mb: | ||
:TMP:500 mb: | ||
:TMP:200 mb: | ||
:TMAX:2 m above ground: | ||
:TMIN:2 m above ground: | ||
:RH:2 m above ground: | ||
:DPT:2 m above ground: | ||
:UGRD:10 m above ground: | ||
:UGRD:850 mb: | ||
:UGRD:500 mb: | ||
:UGRD:200 mb: | ||
:VGRD:10 m above ground: | ||
:VGRD:850 mb: | ||
:VGRD:500 mb: | ||
:VGRD:200 mb: | ||
:HGT:850 mb: | ||
:HGT:500 mb: | ||
:HGT:200 mb: | ||
:APCP:surface: | ||
:CRAIN:surface: | ||
:CSNOW:surface: | ||
:CFRZR:surface: | ||
:CICEP:surface: | ||
:FDNSSTMP:surface: | ||
:PWAT:entire atmosphere (considered as a single layer): | ||
:CAPE:180-0 mb above ground: | ||
:CAPE:surface: | ||
:CIN:180-0 mb above ground: | ||
:CIN:surface: | ||
:HLCY:3000-0 m above ground: | ||
:TCDC:entire atmosphere (considered as a single layer): | ||
:WEASD:surface: | ||
:SNOD:surface: | ||
:ULWRF:top of atmosphere: | ||
:DSWRF:surface: | ||
:CPOFP:surface: | ||
:DLWRF:surface: | ||
:USWRF:surface: | ||
:ULWRF:surface: | ||
:GUST:surface: | ||
:SHTFL:surface: | ||
:LHTFL:surface: | ||
:ICETK:surface: | ||
:TSOIL:0-0.1 | ||
:SOILW:0-0.1 | ||
:MSLET:mean sea level: | ||
:VIS:surface: | ||
:HGT:cloud ceiling: |
Uh oh!
There was an error while loading. Please reload this page.