Excerpt |
---|
hidden | true |
---|
name | Example 1: Run WRF |
---|
|
ตัวอย่างการใช้งาน WRF เบื้องต้น |
...
Code Block |
---|
|
#!/bin/bash
#SBATCH -p devel # Partition or machine type [devel/compute/memory]
#SBATCH -N 1 --ntasks-per-node=54 # Number of nodes and Number of core per node
#SBATCH -t 02:00:00 # Total run time limit (hour:minute:second)
#SBATCH -J WPS_Ex1 # Job name (short)
#SBATCH -A projxxxx # Your project account *** {USER EDIT} ***
module purge
module load netCDF-Fortran/4.5.2-iimpi-2019b
module load libpng/1.6.37-GCCcore-8.3.0
module load JasPer/1.900.1-intel-2019b
export JASPERINC=$EBROOTJASPER/include
export JASPERLIB=$EBROOTJASPER/lib
ulimit -s unlimited # MUST have otherwise ERROR
srun -n4 ./geogrid.exe # 4 CPU cores (--exclusive ./geogrid.exe &
srun -n1 --exclusive ./ungrib.exe &
wait
srun -n4 ./metgridn4) is suggested for geogrid.exe
srun -n1 ./ungrib.exe # ungrib.exe MUST run in serial (-n1)
srun -n4 ./metgrid.exe # 4 CPU cores (-n4) is suggested for geogrid.exe |
Note |
---|
ungrid.exe ต้องรันแบบ Single processor/Serial execution เท่านั้น |
...
Code Block |
---|
|
#!/bin/bash
#SBATCH -p compute # Partition or machine type [devel/compute/memory]
#SBATCH -N 1 --ntasks-per-node=40 # Number of nodes and Number of core per node
#SBATCH -t 24:00:00 # Total run time limit (hour:minute:second)
#SBATCH -J WRF_Ex1 # Job name (short)
#SBATCH -A projxxxx # Your project account *** {USER EDIT} ***
module purge
module load netCDF-Fortran/4.5.2-iimpi-2019b
module load libpng/1.6.37-GCCcore-8.3.0
module load JasPer/1.900.1-intel-2019b
export JASPERINC=$EBROOTJASPER/include
export JASPERLIB=$EBROOTJASPER/lib
ulimit -s unlimited # MUST have otherwise ERROR
srun ./real.exe & wait
srun ./wrf.exe |
สามารถปรับให้ Submit WPS และ WRF พร้อมกันได้ (See Single WRF Job Submission)
...
Code Block |
---|
|
sbatch submitWRF.sh
tail -F rsl.out.0000 # (Optional) see the progress |
...
Contact Us
ThaiSC support service : thaisc-support@nstda.or.th