From bfb31f043e86d9b454d5efd1e8a96bc763e7db17 Mon Sep 17 00:00:00 2001 From: Cory Martin Date: Thu, 19 Feb 2026 14:52:27 +0000 Subject: [PATCH 1/2] add to gitignore and change varbc names --- .gitignore | 1 + parm/archive/gdas_restarta.yaml.j2 | 2 +- parm/stage/analysis.yaml.j2 | 4 ++-- ush/python/pygfs/task/atm_analysis.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 7e286433cab..083367dd5d2 100644 --- a/.gitignore +++ b/.gitignore @@ -184,6 +184,7 @@ ush/python/gsincdiag_to_ioda ush/python/ufsda ush/python/pyiodaconv ush/python/soca +ush/python/wxflow ush/python/gen_bufr2ioda_json.py ush/python/gen_bufr2ioda_yaml.py ush/python/run_bufr2ioda.py diff --git a/parm/archive/gdas_restarta.yaml.j2 b/parm/archive/gdas_restarta.yaml.j2 index 07dda9ce567..bb9899c53cd 100644 --- a/parm/archive/gdas_restarta.yaml.j2 +++ b/parm/archive/gdas_restarta.yaml.j2 @@ -46,7 +46,7 @@ gdas_restarta: - "{{ COMIN_ATMOS_ANALYSIS }}/{{ head }}{{ suffix }}" {% endfor %} {% else %} - - "{{ COMIN_ATMOS_ANALYSIS }}/{{ head }}rad_varbc_params.tar" + - "{{ COMIN_ATMOS_ANALYSIS }}/{{ head }}varbc_params.tar" {% endif %} # Input BUFR files diff --git a/parm/stage/analysis.yaml.j2 b/parm/stage/analysis.yaml.j2 index ddb10b5ad72..d92706ca764 100644 --- a/parm/stage/analysis.yaml.j2 +++ b/parm/stage/analysis.yaml.j2 @@ -56,7 +56,7 @@ analysis: {% endif %} {# Bias Correction Files #} - {% for ftype in ["abias.txt", "abias_air.txt", "abias_int.txt", "abias_pc.txt", "rad_varbc_params.tar"] %} + {% for ftype in ["abias.txt", "abias_air.txt", "abias_int.txt", "abias_pc.txt", "varbc_params.tar"] %} {% if path_exists(ICSDIR ~ "/" ~ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) ~ "/" ~ RUN ~ ".t" ~ current_cycle_HH ~ "z." ~ ftype) %} - ["{{ ICSDIR }}/{{ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) }}/{{ RUN }}.t{{ current_cycle_HH }}z.{{ ftype }}", "{{ COMOUT_ATMOS_ANALYSIS }}"] {% endif %} @@ -69,7 +69,7 @@ analysis: {# All GSI Analysis Files #} {% for ftype in ["abias.txt", "abias_air.txt", "abias_int.txt", "abias_pc.txt", "increment.atm.i006.nc", "increment.atm.i009.nc", "increment.atm.i003.nc", "radstat.tar", - "recentered_increment.atm.i006.nc", "recentered_increment.atm.i009.nc", "recentered_increment.atm.i003.nc", "rad_varbc_params.tar"] %} + "recentered_increment.atm.i006.nc", "recentered_increment.atm.i009.nc", "recentered_increment.atm.i003.nc"] %} {% if path_exists(ICSDIR ~ "/" ~ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) ~ "/" ~ RUN ~ ".t" ~ current_cycle_HH ~ "z." ~ ftype) %} - ["{{ ICSDIR }}/{{ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) }}/{{ RUN }}.t{{ current_cycle_HH }}z.{{ ftype }}", "{{ COMOUT_ATMOS_ANALYSIS }}"] {% endif %} diff --git a/ush/python/pygfs/task/atm_analysis.py b/ush/python/pygfs/task/atm_analysis.py index d2fd0f820a5..85d668f8270 100644 --- a/ush/python/pygfs/task/atm_analysis.py +++ b/ush/python/pygfs/task/atm_analysis.py @@ -147,7 +147,7 @@ def finalize(self) -> None: # Tar radiative bias correction files to COM directory logger.info(f"Saving radiative bias correction files to COM") self.jedi_dict['atmanlvar'].save_obsbiasout(self.task_config.COMOUT_ATMOS_ANALYSIS, - f"{self.task_config.APREFIX}rad_varbc_params") + f"{self.task_config.APREFIX}varbc_params") # Save files from COM logger.info(f"Saving files to COM") From 6841a333a18cd2f248337d30ec38c5dd2886f21b Mon Sep 17 00:00:00 2001 From: Cory Martin Date: Thu, 19 Feb 2026 18:39:27 +0000 Subject: [PATCH 2/2] remove GSI files from JEDI case --- parm/stage/analysis.yaml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parm/stage/analysis.yaml.j2 b/parm/stage/analysis.yaml.j2 index d92706ca764..e50cbf1f7d3 100644 --- a/parm/stage/analysis.yaml.j2 +++ b/parm/stage/analysis.yaml.j2 @@ -56,7 +56,7 @@ analysis: {% endif %} {# Bias Correction Files #} - {% for ftype in ["abias.txt", "abias_air.txt", "abias_int.txt", "abias_pc.txt", "varbc_params.tar"] %} + {% for ftype in ["varbc_params.tar"] %} {% if path_exists(ICSDIR ~ "/" ~ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) ~ "/" ~ RUN ~ ".t" ~ current_cycle_HH ~ "z." ~ ftype) %} - ["{{ ICSDIR }}/{{ COMOUT_ATMOS_ANALYSIS | relpath(ROTDIR) }}/{{ RUN }}.t{{ current_cycle_HH }}z.{{ ftype }}", "{{ COMOUT_ATMOS_ANALYSIS }}"] {% endif %}