![]() | ||
|
Gromacs
General It is primarily designed for biochemical molecules like proteins and lipids that have a lot of complicated bonded interactions, but since Gromacs is extremely fast at calculating the nonbonded interactions (that usually dominate simulations) many groups are also using it for research on non-biological systems, e.g. polymers.
Policy
Program citation
Manual
Essentials Running Gromacs will involve a number of input and output file types. An overview of the most important types is found [here]. In the example below, the following input file types are needed.
Gromacs on Monolith cp /usr/local/chem/gromacs-3.2/bin/share/tutor/water/* $HOME/calc/.View the cluster structure (spc216.pdb) with for instance GView on Monolith.
Generate the run input file topol.tpr with the command /usr/local/chem/gromacs-3.2/bin/linux/bin/gromppThe generated input file topol.tpr is the only file needed by the program mdrun in the MD simulation. To start the 20 picosecond MD simulation with use of 4 processors (2 nodes with 2 processors each) for one hour, submit the shell script below to the queue (the submit command is: qsub scriptname). The input files are assumed to be located in the directory $HOME/calc/ #!/bin/bash #PBS -l walltime=1:00:00 #PBS -l nodes=2:ppn=2 . /usr/local/chem/gromacs-3.2/bin/linux/bin/GMXRC WRKDIR=$HOME/calc/ cd $WRKDIR grompp -np 4 mpprun /usr/local/chem/gromacs-3.2/bin/linux/bin/mdrunAfter the calculaiton there are tools for visulization and analysis. Please, consult the manual for details on this particular example. [here] |