Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titlewrf-real.sh
linenumberstrue
collapsetrue
#!/bin/bash

#PBS -q cpu
#PBS -l select=32:ncpus=1:mem=100GB

module load cray-pals
module load scientific/wrf/4.3.3-gnu

# change to working dir
cd $PBS_O_WORKDIR

# real
mpiexec -np 32 real.exe

...

Code Block
languagebash
titlewrf.sh
linenumberstrue
collapsetrue
#!/bin/bash

#PBS -q cpu
#PBS -l select=128:ncpus=1:mem=5GB

module load cray-pals
module load scientific/wrf/4.3.3-gnu

# change to working dir
cd $PBS_O_WORKDIR

# real
ln -sf $WRF_HOME/run/*.TBL .
ln -sf $WRF_HOME/run/RRTM* .
ln -sf $WRF_HOME/run/CAMtr_* .
mpiexec -np 128 wrf.exe

...