Skip to content

Commit

Permalink
end of day commit
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryMartin-NOAA committed Nov 15, 2024
1 parent 0c2e80a commit 4002bf1
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 6 deletions.
2 changes: 2 additions & 0 deletions env/HERA.env
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ elif [[ "${step}" = "snowanl" ]]; then

elif [[ "${step}" = "esnowanl" ]]; then

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default} --cpus-per-task=${NTHREADS_ESNOWANL}"

Expand Down
2 changes: 2 additions & 0 deletions env/HERCULES.env
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ case ${step} in
;;
"esnowanl")

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default} --cpus-per-task=${NTHREADS_ESNOWANL}"

Expand Down
2 changes: 2 additions & 0 deletions env/JET.env
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ elif [[ "${step}" = "snowanl" ]]; then

elif [[ "${step}" = "esnowanl" ]]; then

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default} --cpus-per-task=${NTHREADS_ESNOWANL}"

Expand Down
2 changes: 2 additions & 0 deletions env/ORION.env
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ elif [[ "${step}" = "snowanl" ]]; then

elif [[ "${step}" = "esnowanl" ]]; then

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default} --cpus-per-task=${NTHREADS_ESNOWANL}"

Expand Down
2 changes: 2 additions & 0 deletions env/S4.env
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ elif [[ "${step}" = "snowanl" ]]; then

elif [[ "${step}" = "esnowanl" ]]; then

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default} --cpus-per-task=${NTHREADS_ESNOWANL}"

Expand Down
2 changes: 2 additions & 0 deletions env/WCOSS2.env
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ elif [[ "${step}" = "snowanl" ]]; then

elif [[ "${step}" = "esnowanl" ]]; then

export APRUN_CALCFIMS="${launcher} -n 1"

export NTHREADS_ESNOWANL=${NTHREADSmax}
export APRUN_ESNOWANL="${APRUN_default}"

Expand Down
2 changes: 1 addition & 1 deletion parm/archive/gdas.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ gdas:
- "{{ COMIN_OBS | relpath(ROTDIR) }}/{{ head }}aerorawobs"
{% endif %}
{% if DO_JEDISNOWDA %}
- "{{ COMIN_SNOW_ANALYSIS | relpath(ROTDIR) }}/{{ head }}snowstat.tgz"
- "{{ COMIN_SNOW_ANALYSIS | relpath(ROTDIR) }}/{{ head }}snowstat"
{% endif %}

# Ozone verification
Expand Down
4 changes: 2 additions & 2 deletions parm/archive/gfs_arcdir.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
{% endif %}

{% if DO_JEDISNOWDA == True %}
{% do det_anl_files.append([COMIN_SNOW_ANALYSIS ~ "/" ~ head ~ "snowstat.tgz",
ARCDIR ~ "/snowstat." ~ RUN ~ "." ~ cycle_YMDH ~ ".tgz"]) %}
{% do det_anl_files.append([COMIN_SNOW_ANALYSIS ~ "/" ~ head ~ "snowstat",
ARCDIR ~ "/snowstat." ~ RUN ~ "." ~ cycle_YMDH ]) %}
{% endif %}

{% if AERO_ANL_RUN == RUN or AERO_ANL_RUN == "both" %}
Expand Down
2 changes: 1 addition & 1 deletion sorc/gdas.cd
4 changes: 2 additions & 2 deletions ush/python/pygfs/task/snowens_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def prepare_IMS(self) -> None:

# create a temporary dict of all keys needed in this method
localconf = AttrDict()
keys = ['DATA', 'current_cycle', 'COM_OBS', 'COM_ATMOS_RESTART_PREV',
keys = ['DATA', 'current_cycle', 'COMIN_OBS',
'OPREFIX', 'CASE', 'OCNRES', 'ntiles', 'FIXgfs']
for key in keys:
localconf[key] = self.task_config[key]
Expand All @@ -199,7 +199,7 @@ def prepare_IMS(self) -> None:
prep_ims_config = parse_j2yaml(self.task_config.IMS_OBS_LIST, localconf)
logger.debug(f"{self.task_config.IMS_OBS_LIST}:\n{pformat(prep_ims_config)}")

# copy the IMS obs files from COM_OBS to DATA/obs
# copy the IMS obs files from COMIN_OBS to DATA/obs
logger.info("Copying IMS obs for CALCFIMSEXE")
FileHandler(prep_ims_config.calcfims).sync()

Expand Down

0 comments on commit 4002bf1

Please sign in to comment.