Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ufs-weather-model to 2024-12-06 commit #3145

Open
wants to merge 11 commits into
base: develop
Choose a base branch
from
1 change: 1 addition & 0 deletions sorc/build_ww3prepost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ sed -e "s/DIST/SHRD/g"\
-e "s/OMPH / /g"\
-e "s/MPIT / /g"\
-e "s/MPI / /g"\
-e "s/PIO / /g"\
-e "s/B4B / /g"\
-e "s/PDLIB / /g"\
-e "s/SCOTCH / /g"\
Expand Down
7 changes: 6 additions & 1 deletion sorc/link_workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,15 @@
${LINK_OR_COPY} "${HOMEgfs}/sorc/ufs_model.fd/tests/parm/noahmptable.tbl" .

cd "${HOMEgfs}/parm/post" || exit 1
for file in params_grib2_tbl_new nam_micro_lookup.dat
for file in params_grib2_tbl_new
Fixed Show fixed Hide fixed
do
${LINK_OR_COPY} "${HOMEgfs}/sorc/upp.fd/parm/${file}" .
done
cd "${HOMEgfs}/parm/post" || exit 1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we are already in this directory. L147

for file in nam_micro_lookup.dat
Fixed Show fixed Hide fixed
do
${LINK_OR_COPY} "${HOMEgfs}/sorc/upp.fd/fix/${file}" .
aerorahul marked this conversation as resolved.
Show resolved Hide resolved
done
for dir in gfs gefs sfs
do
${LINK_OR_COPY} "${HOMEgfs}/sorc/upp.fd/parm/${dir}" .
Expand Down
2 changes: 1 addition & 1 deletion sorc/ufs_model.fd
Submodule ufs_model.fd updated 211 files
3 changes: 2 additions & 1 deletion ush/parsing_namelists_CICE.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ local CICE_RESTART_FORMAT="pnetcdf2"
local CICE_DUMPFREQ="y" # "h","d","m" or "y" for restarts at intervals of "hours", "days", "months" or "years"
local CICE_DUMPFREQ_N=10000 # Set this to a really large value, as cice, mom6 and cmeps restart interval is controlled by ufs.configure
local CICE_DIAGFREQ=$(( 86400 / DT_CICE )) # frequency of diagnostic output in timesteps, recommended for 1x per day
local CICE_HISTFREQ_N="0, 0, ${FHOUT_ICE}, 1, 1"
local CICE_HISTFREQ_N="0, 0, ${FHOUT_ICE}, 0, 1"
local CICE_hist_suffix="'x','x','x','x','x'"
if [[ "${RUN}" =~ "gdas" ]]; then
local CICE_HIST_AVG=".false., .false., .false., .false., .false." # DA needs instantaneous
else
Expand Down
10 changes: 10 additions & 0 deletions ush/parsing_ufs_configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ if [[ "${cplwav}" = ".true." ]]; then
local MULTIGRID="${waveMULTIGRID}"
local WW3_user_sets_restname="false"

local WW3_user_histname="false"
local WW3_historync="false"
local WW3_restartnc="false"
local WW3_restart_from_binary="true"
DeniseWorthen marked this conversation as resolved.
Show resolved Hide resolved
local WW3_PIO_FORMAT="pnetcdf"
local WW3_PIO_IOTASKS=-99
local WW3_PIO_STRIDE=4
local WW3_PIO_REARR="box"
local WW3_PIO_ROOT=-99

fi

if [[ "${cplchm}" = ".true." ]]; then
Expand Down