Run-vasp-tekla.s: Difference between revisions
Jump to navigation
Jump to search
New page: #!/bin/bash #$ -N NAME # # pe request #$ -pe q0 8 cd WORK DIRECTORY /usr/bin/mpirun -np 8 -machinefile $TMPDIR/machines /usr/local/bin/vasp rm CHG* WAVE* |
No edit summary |
||
| (5 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
The running version in [[Tekla]] is [[VASP-Current | current version]] | |||
Make a script like the script bellow this lines an change: | |||
$JOBNAME as your job name | |||
$QUEUE_NAME as the corresponding queue name | |||
-allowed values are (c0 | q0) | |||
$N_PROCESSORS as the number of processors requested | |||
$WORKING_DIRECTORY directory where the inputs have been placed | |||
script.sub | |||
cd | #!/bin/bash | ||
#$ -N $JOBNAME | |||
/usr/bin/mpirun -np | # | ||
# pe request | |||
rm CHG* WAVE* | #$ -pe $QUEUE_NAME $N_PROCESSORS | ||
cd WORKING_DIRECTORY | |||
/usr/bin/mpirun -np $N_PROCESSORS -machinefile $TMPDIR/machines /usr/local/bin/vasp | |||
rm CHG* WAVE* | |||
Latest revision as of 11:09, 21 May 2010
The running version in Tekla is current version
Make a script like the script bellow this lines an change:
$JOBNAME as your job name
$QUEUE_NAME as the corresponding queue name
-allowed values are (c0 | q0)
$N_PROCESSORS as the number of processors requested
$WORKING_DIRECTORY directory where the inputs have been placed
script.sub
#!/bin/bash
#$ -N $JOBNAME
#
# pe request
#$ -pe $QUEUE_NAME $N_PROCESSORS
cd WORKING_DIRECTORY
/usr/bin/mpirun -np $N_PROCESSORS -machinefile $TMPDIR/machines /usr/local/bin/vasp
rm CHG* WAVE*