Script-vasp-tekla: Difference between revisions

From Wiki
Jump to navigation Jump to search
Removing all content from page
No edit summary
Line 1: Line 1:
The current version in [[Tekla2]] is [[VASP-Current | current version]]


#!/bin/bash
#$ -N NAME
#$ -pe c8m24_ompi NUMBER_OF_CORE
#$ -cwd
#$ -o vasp-ompi.out
#$ -e vasp-ompi.err
#$ -S /bin/bash
. /etc/profile.d/modules.sh
module load vasp/5.2_VTST
export OMP_NUM_THREADS=1
mpirun -np $NSLOTS vasp
rm -f CHG* WAVE*

Revision as of 13:50, 12 May 2010

The current version in Tekla2 is current version

  1. !/bin/bash
  2. $ -N NAME
  3. $ -pe c8m24_ompi NUMBER_OF_CORE
  4. $ -cwd
  5. $ -o vasp-ompi.out
  6. $ -e vasp-ompi.err
  7. $ -S /bin/bash

. /etc/profile.d/modules.sh module load vasp/5.2_VTST

export OMP_NUM_THREADS=1 mpirun -np $NSLOTS vasp

rm -f CHG* WAVE*