Skip to content

Commit 93d85ec

Browse files
authored
update the add incr namelist for ensembles (#1704)
# Description <!-- Enter PR description here. --> Earlier pull request only addressed the deterministic one. This one updates both. Also makes ens_size and variable input, and removes "quote marks" from around Boolean and numeric variables--per suggestion by the AI-copilot reviews. # Companion PRs <!-- Enter links to any companion PRs here. --> NOAA-EMC/global-workflow #3645 (NOAA-EMC/global-workflow#3645) # Issues <!-- Enter any issues referenced or resolved by this PR here. Use keywords "Resolves" or "Refs". Resolves #1234 Refs #4321 Refs NOAA-EMC/repo#5678 --> # Automated CI tests to run in Global Workflow <!-- Which Global Workflow CI tests are required to adequately test this PR? --> - [ ] atm_jjob <!-- JEDI atm single cycle DA !--> - [ ] C96C48_ufs_hybatmDA <!-- JEDI atm cycled DA !--> - [x] C96C48_hybatmaerosnowDA <!-- JEDI aero/snow cycled DA !--> - [ ] C48mx500_3DVarAOWCDA <!-- JEDI low-res marine 3DVar cycled DA !--> - [ ] C48mx500_hybAOWCDA <!-- JEDI marine hybrid envar cycled DA !--> - [ ] C96C48_hybatmDA <!-- GSI atm cycled DA !-->
1 parent 2154dde commit 93d85ec

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

parm/snow/apply_incr_nml.j2

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
inc_path = "./anl",
88
orog_path = "{{ HOMEgfs }}/fix/orog/{{ CASE }}",
99
otype = "{{ CASE }}.mx{{ OCNRES }}_oro_data",
10-
ntiles="{{ ntiles }}",
11-
ens_size=1,
12-
noincr_threshold = "{{ noincr_threshold }}",
10+
ntiles={{ ntiles }},
11+
ens_size={{ ens_size }},
12+
noincr_threshold={{ noincr_threshold }},
1313
print_summary=.true.,
14-
print_debug="{{ print_debug }}" ,
14+
print_debug={{ print_debug }} ,
15+
truncate={{ truncate_incr }}
1516
/

parm/snow/ens_apply_incr_nml.j2

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,11 @@
66
rst_path = "{{ DATA }}/anl/mem{{ MYMEM }}",
77
inc_path = "{{ DATA }}/anl",
88
orog_path = "{{ HOMEgfs }}/fix/orog/{{ CASE_ENS }}",
9-
otype = "{{ CASE_ENS }}.mx{{ OCNRES }}_oro_data"
9+
otype = "{{ CASE_ENS }}.mx{{ OCNRES }}_oro_data",
10+
ntiles={{ ntiles }},
11+
ens_size={{ ens_size }},
12+
noincr_threshold={{ noincr_threshold }},
13+
print_summary=.true.,
14+
print_debug={{ print_debug }} ,
15+
truncate={{ truncate_incr }}
1016
/

test/snow/apply_jedi_incr.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ cat << EOF > apply_incr_nml
5353
ens_size=1,
5454
noincr_threshold=999999.9,
5555
print_summary=.true.,
56-
print_debug=.false.
56+
print_debug=.false.,
57+
truncate=.true.
5758
/
5859
EOF
5960

0 commit comments

Comments
 (0)