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..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", "rad_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 %} @@ -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")