Molecular dynamics (MD) is a computer simulation method for analyzing the physical movements of atoms and molecules. The atoms and molecules are allowed to interact for a fixed period of time, giving a view of the dynamic "evolution" of the system.
"gmx pdb2gmx -f complex.pdb -o complex_processed.gro -water spce"
Type 15 at the command prompt, followed by 'Enter
Additional options: in case of missing atoms use -missing, in case of other error use -ignh to ignore
"gmx editconf -f complex_processed.gro -o complex_newbox.gro -c -d 1.0 -bt cubic"
"gmx solvate -cp complex_newbox.gro -cs spc216.gro -o complex_solv.gro -p topol.top"
"gmx grompp -f ions.mdp -c complex_solv.gro -p topol.top -o ions.tpr"
"gmx genion -s ions.tpr -o complex_solv_ions.gro -p topol.top -pname NA -nname CL -neutral"
"gmx grompp -f minim.mdp -c complex_solv_ions.gro -p topol.top -o em.tpr"
"gmx mdrun -v -deffnm em"
"gmx energy -f em.edr -o potential.xvg"
"xmgrace potential.xvg"
"gmx grompp -f nvt.mdp -c em.gro -r em.gro -p topol.top -o nvt.tpr"
"gmx mdrun -deffnm nvt"
"gmx energy -f nvt.edr -o temperature.xvg"
"gmx grompp -f npt.mdp -c nvt.gro -r nvt.gro -t nvt.cpt -p topol.top -o npt.tpr"
"gmx mdrun -deffnm npt"
"gmx energy -f npt.edr -o pressure.xvg"
"gmx energy -f npt.edr -o density.xvg"
"gmx grompp -f md.mdp -c npt.gro -t npt.cpt -p topol.top -o md_0_1.tpr"
"gmx mdrun -deffnm md_0_1"
"gmx mdrun -deffnm md_0_1 -nb gpu"