Skip to content

Commit 8fa33c8

Browse files
CopilotCoryMartin-NOAARussTreadon-NOAA
authored
Fix GSI B matrix templates to use analysis resolution instead of guess resolution (NOAA-EMC#2044)
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: CoryMartin-NOAA <[email protected]> Co-authored-by: Cory Martin <[email protected]> Co-authored-by: RussTreadon-NOAA <[email protected]> Co-authored-by: russ.treadon <[email protected]>
1 parent 326262a commit 8fa33c8

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- ['{{ HOMEgfs }}/fix/gdas/gsibec/{{ CASE_GSIBEC }}/gfs_gsi_global.nml', '{{ DATA }}/berror']
2-
- ['{{ HOMEgfs }}/fix/gdas/gsibec/{{ CASE_GSIBEC }}/gsi-coeffs-gfs-global.nc4', '{{ DATA }}/berror']
1+
- ['{{ HOMEgfs }}/fix/gdas/gsibec/{{ CASE_ANL }}/gfs_gsi_global.nml', '{{ DATA }}/berror']
2+
- ['{{ HOMEgfs }}/fix/gdas/gsibec/{{ CASE_ANL }}/gsi-coeffs-gfs-global.nc', '{{ DATA }}/berror']

parm/atm/atm_obs_list.yaml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ observations:
3030
##- cris-fsr_n20
3131
##- cris-fsr_n21
3232
##- atms_npp
33-
- atms_n20
33+
- radiance_atms_n20
3434
##- gnssro_cosmic2
3535
##- gnssro_spire
3636
##- gnssro_s6

parm/jcb-gdas/model/atmosphere/atmosphere_background_error_hybrid_gsibec_bump.yaml.j2

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ components:
66
saber block name: gsi static covariance
77
read:
88
gsi akbk: {{atmosphere_fv3jedi_files_path}}/akbk.nc4
9-
gsi error covariance file: {{atmosphere_gsibec_path}}/gsi-coeffs-gfs-global.nc4
9+
gsi error covariance file: {{atmosphere_gsibec_path}}/gsi-coeffs-gfs-global.nc
1010
gsi berror namelist file: {{atmosphere_gsibec_path}}/gfs_gsi_global.nml
1111
processor layout x direction: {{atmosphere_layout_gsib_x}}
1212
processor layout y direction: {{atmosphere_layout_gsib_y}}
@@ -17,8 +17,9 @@ components:
1717
function space: StructuredColumns
1818
custom grid matching gsi:
1919
type: gaussian
20-
lats: {{ atmosphere_npy_ges + 1 }}
21-
{% set atmosphere_lons = (atmosphere_npx_ges - 1) * 2 %}
20+
{% set atmosphere_lats = ((atmosphere_npy_anl - 1) * 2) + 2 %}
21+
lats: {{ atmosphere_lats }}
22+
{% set atmosphere_lons = (atmosphere_npx_anl - 1) * 4 %}
2223
lons: {{ atmosphere_lons }}
2324
custom partitioner matching gsi:
2425
bands: {{ atmosphere_layout_gsib_y }}

parm/jcb-gdas/model/atmosphere/atmosphere_background_error_static_gsibec.yaml.j2

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ saber central block:
44
saber block name: gsi static covariance
55
read:
66
gsi akbk: {{atmosphere_fv3jedi_files_path}}/akbk.nc4
7-
gsi error covariance file: {{atmosphere_gsibec_path}}/gsi-coeffs-gfs-global.nc4
7+
gsi error covariance file: {{atmosphere_gsibec_path}}/gsi-coeffs-gfs-global.nc
88
gsi berror namelist file: {{atmosphere_gsibec_path}}/gfs_gsi_global.nml
99
processor layout x direction: {{atmosphere_layout_gsib_x}}
1010
processor layout y direction: {{atmosphere_layout_gsib_y}}
@@ -15,8 +15,9 @@ saber outer blocks:
1515
function space: StructuredColumns
1616
custom grid matching gsi:
1717
type: gaussian
18-
lats: {{ atmosphere_npy_ges + 1 }}
19-
{% set atmosphere_lons = (atmosphere_npx_ges - 1) * 2 %}
18+
{% set atmosphere_lats = ((atmosphere_npy_anl - 1) * 2) + 2 %}
19+
lats: {{ atmosphere_lats }}
20+
{% set atmosphere_lons = (atmosphere_npx_anl - 1) * 4 %}
2021
lons: {{ atmosphere_lons }}
2122
custom partitioner matching gsi:
2223
bands: {{ atmosphere_layout_gsib_y }}

0 commit comments

Comments
 (0)