Versions Compared

Key

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

...

Ključna riječ, odnosno TURBOMOLE naredba jobex poziva se u direktoriju u kojem se nalaze ostale input datoteke.

Gotove ulazne podatke, s PBS skriptom za podnošenje, možete preuzeti u obliku zip arhive.

Code Block
languagebash
titleBash PBS skripta
linenumberstrue
#!/bin/bash

#PBS -q cpu
#PBS -l ncpus=4

cd ${PBS_O_WORKDIR}

module load scientific/turbomole/7.7

export PARA_ARCH=SMP
export PARNODES=$OMP_NUM_THREADS
export PATH=$TURBODIR/bin/`sysname`:$PATH
export PERL_BADLANG=0

jobex -level scf -ri -c 50 -energy 6 -gcart 3

...