Skip to content

Commit cba2a38

Browse files
Merge branch 'develop' into feature/sfc_climo_gen.frac
Fixes ufs-community#709.
2 parents ff3f2e4 + 56123a8 commit cba2a38

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

fix/link_fixdirs.sh

+8-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ elif [ $machine = "jet" ]; then
4343
elif [ $machine = "orion" ]; then
4444
FIX_DIR="/work/noaa/global/glopara/fix"
4545
elif [ $machine = "wcoss2" ]; then
46-
FIX_DIR="/lfs/h2/emc/global/save/emc.global/FIX/fix"
46+
FIX_DIR="/lfs/h2/emc/global/noscrub/emc.global/FIX/fix"
4747
elif [ $machine = "s4" ]; then
4848
FIX_DIR="/data/prod/glopara/fix"
4949
fi
@@ -52,13 +52,17 @@ am_ver=${am_ver:-20220805}
5252
orog_ver=${orog_ver:-20220805}
5353
sfc_climo_ver=${sfc_climo_ver:-20221017}
5454

55-
for dir in am orog sfc_climo; do
55+
for dir in am orog orog_raw sfc_climo; do
5656
if [ -d $dir ]; then
5757
[[ $RUN_ENVIR = nco ]] && chmod -R 755 $dir
5858
rm -rf $dir
5959
fi
60-
fix_ver="${dir}_ver"
61-
$LINK $FIX_DIR/$dir/${!fix_ver} ${dir}
60+
if [ $dir = "orog_raw" ]; then
61+
$LINK $FIX_DIR/raw/orog ${dir}
62+
else
63+
fix_ver="${dir}_ver"
64+
$LINK $FIX_DIR/$dir/${!fix_ver} ${dir}
65+
fi
6266
done
6367

6468
exit 0

ush/fv3gfs_driver_grid.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export out_dir=${out_dir:?}
102102
export home_dir=${home_dir:-"$PWD/../"}
103103
export script_dir=$home_dir/ush
104104
export exec_dir=${exec_dir:-"$home_dir/exec"}
105-
export topo=$home_dir/fix/orog
105+
export topo=$home_dir/fix/orog_raw
106106

107107
export NCDUMP=${NCDUMP:-ncdump}
108108

0 commit comments

Comments
 (0)