GROMACS version: gmx_mpi version 2020
GROMACS modification: Yes/No
Here post your question
Hello everyone,
I am running 8 replica system for 1000 ns and I need to restart my simulations- here is my code for running it on 8 different dir/folder–
for dir in remd{0…7}; do cd $dir;
gmx_mpi grompp -f md.mdp -c complex_npt.gro -t complex_nvt.cpt -p topol.top -o md.tpr -maxwarn 10;cd …;done &&
mpirun -np 8 gmx_mpi mdrun -multidir remd{0…7} -s md.tpr -c complex_npt.gro -o md.trr -replex 1000
How do I restart my REMD simulations?