-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1635 from emkemp/fix/lisf76_scripts
Added FOC files and script updates
- Loading branch information
Showing
356 changed files
with
91,683 additions
and
800 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/sh | ||
#SBATCH --job-name=ldt | ||
#SBATCH --time=1:00:00 | ||
#SBATCH --account=NWP601 | ||
#SBATCH --output ldt.slurm.out | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cluster-constraint=blue | ||
#SBATCH --exclusive | ||
#SBATCH --mem=0 | ||
#------------------------------------------------------------------------------ | ||
# | ||
# SCRIPT: run_ldt_usafsi_hpc11.sh | ||
# | ||
# Batch script for running LDT to generate USAFSI snow and ice analysis. | ||
# | ||
# REVISION HISTORY: | ||
# 05 Nov 2024: Eric Kemp, SSAI. Initial specification. | ||
#------------------------------------------------------------------------------ | ||
|
||
ulimit -s unlimited | ||
|
||
# When a batch script is started, it starts in the user's home directory. | ||
# Change to the directory where job was submitted. | ||
if [ ! -z $SLURM_SUBMIT_DIR ] ; then | ||
cd $SLURM_SUBMIT_DIR || exit 1 | ||
fi | ||
|
||
# Environment | ||
module use --append /ccs/home/emkemp/hpc11/privatemodules | ||
module load lisf_7.6_prgenv_cray_8.5.0_cpe_23.12 | ||
module load afw-python/3.11-202406 | ||
|
||
ldtconfig=ldt.config.foc.nrt_sf.usafsi.76 | ||
|
||
# Sanity checks | ||
if [ ! -e ./$ldtconfig ] ; then | ||
echo "ERROR, ./$ldtconfig not found!" && exit 1 | ||
fi | ||
if [ ! -e ./LDT ] ; then | ||
echo "ERROR, ./LDT does not exist!" && exit 1 | ||
fi | ||
|
||
echo `date` | ||
srun ./LDT $ldtconfig || exit 1 | ||
echo `date` | ||
|
||
# The end | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/bin/sh | ||
#SBATCH --job-name=ldt | ||
#SBATCH --time=1:00:00 | ||
#SBATCH --account=NWP601 | ||
#SBATCH --output ldt.slurm.out | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cluster-constraint=blue | ||
#SBATCH --exclusive | ||
#SBATCH --mem=0 | ||
#------------------------------------------------------------------------------ | ||
# | ||
# SCRIPT: run_ldt_bridge_noah39_hpc11.sh | ||
# | ||
# Batch script for running NRT-Streamflow to MR "bridge" step, i.e., converting | ||
# LIS LSM restart file from NRT-Streamflow run into version usable by LIS MR | ||
# run. Customized for Noah39 runs (only LSM restart file is processed, not | ||
# routing). Also customized for HPC11. | ||
# | ||
# REVISION HISTORY: | ||
# 05 Nov 2024: Eric Kemp, SSAI. Initial specification. | ||
#------------------------------------------------------------------------------ | ||
|
||
ulimit -s unlimited | ||
|
||
# When a batch script is started, it starts in the user's home directory. | ||
# Change to the directory where job was submitted. | ||
if [ ! -z $SLURM_SUBMIT_DIR ] ; then | ||
cd $SLURM_SUBMIT_DIR || exit 1 | ||
fi | ||
|
||
# Environment | ||
module use --append /ccs/home/emkemp/hpc11/privatemodules | ||
module load lisf_7.6_prgenv_cray_8.5.0_cpe_23.12 | ||
module load afw-python/3.11-202406 | ||
|
||
ldtconfig=ldt.config.foc.bridge.noah39.76 | ||
|
||
# Sanity checks | ||
if [ ! -e ./$ldtconfig ] ; then | ||
echo "ERROR, ./$ldtconfig not found!" && exit 1 | ||
fi | ||
if [ ! -e ./LDT ] ; then | ||
echo "ERROR, ./LDT does not exist!" && exit 1 | ||
fi | ||
|
||
echo `date` | ||
srun ./LDT $ldtconfig || exit 1 | ||
echo `date` | ||
|
||
# The end | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/bin/sh | ||
#SBATCH --job-name=ldt | ||
#SBATCH --time=1:00:00 | ||
#SBATCH --account=NWP601 | ||
#SBATCH --output ldt.slurm.out | ||
#SBATCH --ntasks=1 | ||
#SBATCH --cluster-constraint=blue | ||
#SBATCH --exclusive | ||
#SBATCH --mem=0 | ||
#------------------------------------------------------------------------------ | ||
# | ||
# SCRIPT: run_ldt_bridge_noahmp401_hpc11.sh | ||
# | ||
# Batch script for running NRT-Streamflow to MR "bridge" step, i.e., converting | ||
# LIS LSM restart file from NRT-Streamflow run into version usable by LIS MR | ||
# run. Customized for NoahMP401 runs (only LSM restart file is processed, not | ||
# routing). Also customized for HPC11. | ||
# | ||
# REVISION HISTORY: | ||
# 05 Nov 2024: Eric Kemp, SSAI. Initial specification. | ||
#------------------------------------------------------------------------------ | ||
|
||
ulimit -s unlimited | ||
|
||
# When a batch script is started, it starts in the user's home directory. | ||
# Change to the directory where job was submitted. | ||
if [ ! -z $SLURM_SUBMIT_DIR ] ; then | ||
cd $SLURM_SUBMIT_DIR || exit 1 | ||
fi | ||
|
||
# Environment | ||
module use --append /ccs/home/emkemp/hpc11/privatemodules | ||
module load lisf_7.6_prgenv_cray_8.5.0_cpe_23.12 | ||
module load afw-python/3.11-202406 | ||
|
||
ldtconfig=ldt.config.foc.bridge.noahmp401.76 | ||
|
||
# Sanity checks | ||
if [ ! -e ./$ldtconfig ] ; then | ||
echo "ERROR, ./$ldtconfig not found!" && exit 1 | ||
fi | ||
if [ ! -e ./LDT ] ; then | ||
echo "ERROR, ./LDT does not exist!" && exit 1 | ||
fi | ||
|
||
echo `date` | ||
srun ./LDT $ldtconfig || exit 1 | ||
echo `date` | ||
|
||
# The end | ||
exit 0 |
Oops, something went wrong.