Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/ReadMe
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Input
4. Monthly salinity climatology at T1534 Gaussian grids, interpolated from 1 degree Levitus surface salinity climatology.
5. Surface mask fix file for ½, ¼ and 1/12 lat/lon grids

Note: All fix files are compressed with gzip, and need to be uncompressed with gunzip before running

Output

RTG-like SST files
Expand Down
Binary file removed jobs/.JNSTRTG.swm
Binary file not shown.
Binary file removed jobs/.JNSTRTG.swn
Binary file not shown.
Binary file removed jobs/.JNSTRTG.swo
Binary file not shown.
13 changes: 7 additions & 6 deletions jobs/JNSST
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ set -xa
date
export PS4='$SECONDS + '

#################################################
# get work directory
################################################
export DATA=${DATA:-${DATAROOT:?}/${jobid:?}} # temporary running directory
mkdir -p $DATA
cd $DATA

####################################
# Specify NET and RUN Name and model
####################################
Expand Down Expand Up @@ -33,12 +40,6 @@ export COMOUTwmo=${COMOUTwmo:-${COMOUT}/wmo}
export COMOUTgempak=${COMOUTgempak:-${COMOUT}/gempak}
mkdir -p $COMOUT $COMOUTwmo $COMOUTgempak

#################################################
# get work directory
################################################
export DATA=${DATA:-${DATAROOT:?}/${jobid:?}} # temporary running directory
mkdir -p $DATA
cd $DATA
#################################################
# Specify job's execution areas (directory paths)
#################################################
Expand Down
101 changes: 0 additions & 101 deletions parm/rtgssthr_buoyboxes.namelist

This file was deleted.

9 changes: 8 additions & 1 deletion scripts/exnsst.sh.ecf
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,14 @@ rm -f $mailbody
#
for SDIR in $COMINgdas/${cyc} ${COMINgdas/$PDY/$PDYm1}/${cyc}
do
iceanl_name=$CDUMP.$cycle.seaice.5min.blend.grb
if [ $SFCIO = "nemsio" ] ; then
iceanl_name=$CDUMP.$cycle.seaice.5min.blend.grb
elif [ $SFCIO="ncio" ] ; then
iceanl_name=atmos/$CDUMP.$cycle.seaice.5min.blend.grb
else
echo "invalid sfcio"
exit
fi
if [ -s $SDIR/$iceanl_name ] ; then
ln -fs $SDIR/$iceanl_name iceanl
if [ $SDIR != $COMINgdas/${cyc} ]; then
Expand Down