Skip to content

Commit

Permalink
Properly set FV3 output filetype to 'netcdf_parallel' for EP4A
Browse files Browse the repository at this point in the history
  • Loading branch information
rmontuoro committed Sep 15, 2023
1 parent b48906f commit 4435762
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 8 additions & 4 deletions parm/config/gefs/config.efcs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,14 @@ source "${EXPDIR}/config.ufs" ${string}
source "${EXPDIR}/config.resources" efcs

# Use serial I/O for ensemble (lustre?)
export OUTPUT_FILETYPE_ATM="netcdf"
export OUTPUT_FILETYPE_SFC="netcdf"
case "${PROTO:-}" in
EP4A)
;;
*)
export OUTPUT_FILETYPE_ATM="netcdf"
export OUTPUT_FILETYPE_SFC="netcdf"
;;
esac

# Number of enkf members per fcst job
export NMEM_EFCSGRP=1
Expand All @@ -44,8 +50,6 @@ export WRITE_DOPOST=".true."
# Stochastic physics parameters (only for ensemble forecasts)
case "${PROTO:-}" in
EP4A)
export OUTPUT_FILETYPE_ATM="netcdf_parallel"
export OUTPUT_FILETYPE_ATM="netcdf_parallel"
export MOM6_RESTART_SETTING=n
export IEMS_ENKF=2
export FHCYC_ENKF=24
Expand Down
2 changes: 2 additions & 0 deletions parm/config/gefs/config.ufs
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ case "${PROTO}" in
export nthreads_mom6=1
export ntasks_ww3=262
export nthreads_ww3=1
export OUTPUT_FILETYPE_ATM="netcdf_parallel"
export OUTPUT_FILETYPE_SFC="netcdf_parallel"
;;
*)
;;
Expand Down

0 comments on commit 4435762

Please sign in to comment.