Skip to content

Commit

Permalink
Merge branch 'develop' into feature/build_app
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed May 17, 2022
2 parents 198f501 + 69b39ee commit b6243ee
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@
"TRACER", "atmos_mod", "water_nc"
"longname", "cloud liquid water number concentration"
"units", "/kg"
"profile_type", "fixed", "surface_value=1.e30" /
"profile_type", "fixed", "surface_value=0.0" /
# prognostic cloud ice number concentration
"TRACER", "atmos_mod", "ice_nc"
"longname", "cloud ice water number concentration"
"units", "/kg"
"profile_type", "fixed", "surface_value=1.e30" /
"profile_type", "fixed", "surface_value=0.0" /
# prognostic rain number concentration
"TRACER", "atmos_mod", "rain_nc"
"longname", "rain number concentration"
"units", "/kg"
"profile_type", "fixed", "surface_value=1.e30" /
"profile_type", "fixed", "surface_value=0.0" /
# prognostic ozone mixing ratio tracer
"TRACER", "atmos_mod", "o3mr"
"longname", "ozone mixing ratio"
Expand All @@ -62,4 +62,4 @@
"TRACER", "atmos_mod", "sgs_tke"
"longname", "subgrid scale turbulent kinetic energy"
"units", "m2/s2"
"profile_type", "fixed", "surface_value=1.e30" /
"profile_type", "fixed", "surface_value=0.0" /
4 changes: 0 additions & 4 deletions sorc/build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,8 @@ set +x
#
# USER DEFINED STUFF:
#
# USE_PREINST_LIBS: set to "true" to use preinstalled libraries.
# Anything other than "true" will use libraries locally.
#------------------------------------

export USE_PREINST_LIBS="true"

#------------------------------------
# END USER DEFINED STUFF
#------------------------------------
Expand Down
7 changes: 0 additions & 7 deletions sorc/build_gfs_wafs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ set -eux
source ./machine-setup.sh > /dev/null 2>&1
cwd=$(pwd)

USE_PREINST_LIBS=${USE_PREINST_LIBS:-"true"}
if [ $USE_PREINST_LIBS = true ]; then
export MOD_PATH=/scratch3/NCEPDEV/nwprod/lib/modulefiles
else
export MOD_PATH=${cwd}/lib/modulefiles
fi

# Check final exec folder exists
if [ ! -d "../exec" ]; then
mkdir ../exec
Expand Down
7 changes: 0 additions & 7 deletions sorc/build_gldas.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ set -eux
source ./machine-setup.sh > /dev/null 2>&1
cwd=$(pwd)

USE_PREINST_LIBS=${USE_PREINST_LIBS:-"true"}
if [ $USE_PREINST_LIBS = true ]; then
export MOD_PATH=/scratch3/NCEPDEV/nwprod/lib/modulefiles
else
export MOD_PATH=${cwd}/lib/modulefiles
fi

# Check final exec folder exists
if [ ! -d "../exec" ]; then
mkdir ../exec
Expand Down
7 changes: 0 additions & 7 deletions sorc/build_gsi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ set -eux
source ./machine-setup.sh > /dev/null 2>&1
cwd=$(pwd)

USE_PREINST_LIBS=${USE_PREINST_LIBS:-"true"}
if [ $USE_PREINST_LIBS = true ]; then
export MOD_PATH=/scratch3/NCEPDEV/nwprod/lib/modulefiles
else
export MOD_PATH=${cwd}/lib/modulefiles
fi

gsitarget=$target
[[ "$target" == wcoss_cray ]] && gsitarget=cray

Expand Down
7 changes: 0 additions & 7 deletions sorc/build_ncep_post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ set -eux
source ./machine-setup.sh > /dev/null 2>&1
cwd=$(pwd)

USE_PREINST_LIBS=${USE_PREINST_LIBS:-"true"}
if [ $USE_PREINST_LIBS = true ]; then
export MOD_PATH=/scratch3/NCEPDEV/nwprod/lib/modulefiles
else
export MOD_PATH=${cwd}/lib/modulefiles
fi

# Check final exec folder exists
if [ ! -d "../exec" ]; then
mkdir ../exec
Expand Down
2 changes: 1 addition & 1 deletion sorc/checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ if [[ ! -d gsi.fd ]] ; then
git clone --recursive https://github.com/NOAA-EMC/GSI.git gsi.fd >> ${logdir}/checkout-gsi.log 2>&1
cd gsi.fd
git checkout a62dec6
git submodule update
git submodule update --init
cd ${topdir}
else
echo 'Skip. Directory gsi.fd already exists.'
Expand Down

0 comments on commit b6243ee

Please sign in to comment.