Skip to content

Commit

Permalink
Set io_layout to "1,1" when not C768
Browse files Browse the repository at this point in the history
- retain io_layout="4,4" when C768
- add io_layout="1,1" when not C768, lower resolution layouts not always divisible by 4
- brings in matching change in config.fcst from develop branch

Refs: #363
  • Loading branch information
KateFriedman-NOAA committed Jul 30, 2021
1 parent 2dbbb33 commit 16285b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion parm/config/config.fcst
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,11 @@ elif [[ "$CDUMP" == "gfs" ]] ; then # GFS cycle specific parameters
export adjust_dry_mass=".false."

# Write each restart file in 16 small files to save time
export io_layout="4,4"
if [ $CASE = C768 ]; then
export io_layout="4,4"
else
export io_layout="1,1"
fi


fi
Expand Down

0 comments on commit 16285b2

Please sign in to comment.