Skip to content

Commit

Permalink
norms round NOAA-EMC#2
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidNew-NOAA committed Feb 12, 2025
1 parent c23ca3e commit 342b64b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ush/forecast_postdet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ EOF
exit 1
fi
# Add together increment with correction increment to get recentered increment
ncbo --op_typ=add -v u_inc,v_inc,T_inc,delp_inc,delz_inc,sphum_inc,liq_wat_inc,o3mr_inc,icmr_inc ${DATA}/INPUT/${inc_file} ${DATA}/INPUT/c${inc_file} ${DATA}/INPUT/r${inc_file}
ncbo --op_typ=add -v u_inc,v_inc,T_inc,delp_inc,delz_inc,sphum_inc,liq_wat_inc,o3mr_inc,icmr_inc "${DATA}/INPUT/${inc_file}" "${DATA}/INPUT/c${inc_file}" "${DATA}/INPUT/r${inc_file}"
fi
else
increment_file="${COMIN_ATMOS_ANALYSIS}/${RUN}.t${cyc}z.${PREFIX_ATMINC}${inc_file}"
Expand Down
3 changes: 1 addition & 2 deletions ush/python/pygfs/task/analysis_calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ def __init__(self, config):

_iau_times_iso = []
for hour in self.task_config.IAUFHRS:
_iau_times_iso.append(to_isotime(_window_begin + to_timedelta(f"{str(hour)}H") -
to_timedelta(f"{self.task_config.assim_freq}H")/2))
_iau_times_iso.append(to_isotime(_window_begin + to_timedelta(f"{str(hour)}H") - to_timedelta(f"{self.task_config.assim_freq}H")/2))

# Create a local dictionary that is repeatedly used across this class
local_dict = AttrDict(
Expand Down
3 changes: 1 addition & 2 deletions ush/python/pygfs/task/ensemble_center.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ def __init__(self, config):

_iau_times_iso = []
for hour in self.task_config.IAUFHRS:
_iau_times_iso.append(to_isotime(_window_begin + to_timedelta(f"{str(hour)}H") -
to_timedelta(f"{self.task_config.assim_freq}H")/2))
_iau_times_iso.append(to_isotime(_window_begin + to_timedelta(f"{str(hour)}H") - to_timedelta(f"{self.task_config.assim_freq}H")/2))

# Create a local dictionary that is repeatedly used across this class
local_dict = AttrDict(
Expand Down

0 comments on commit 342b64b

Please sign in to comment.