This is an old revision of the document!
In order to use Gromacs append the following lines to your .profile file:
export MODULEPATH=/opt/gridware/applications/gromacs/modules:$MODULEPATH module add gromacs/4.6.1 mpich2/1.5
To complete the setup log out of the cluster and back in again (or just source your .profile file) to update your environment variables.
The following file is a Gromacs template job submission script that can used as a starting point for creating your own scripts:
#MSUB -l nodes=2:ppn=12 #MSUB -l feature=dell #MSUB -l walltime=24:00:00 #MSUB -j oe #MSUB -o out.log #MSUB -d /export/home/username/scratch5/gromacs #MSUB -V #This job tests GROMACS, it requires the input file min.steep0.tpr to be in the same directory. nproc=`cat $PBS_NODEFILE | wc -l` echo $nproc exe=mdrun_mpi args="-s min.steep0.tpr -deffnm min.steep0 -npme 4" mpirun -np $nproc -machinefile $PBS_NODEFILE $exe $args
This job submission script requires that the file min.steep0.tpr exists in the working directory specified above.