GROMACS version:2021 and 2023
GROMACS modification: Yes/No
I am trying to extend the GROMACS simulation after completion. I need to continue with a more frequent output rate (500 steps instead of 5000) while maintaining everything is the same. So, after I finish the first 20 ns of my simulation and make sure that it reaches equilibrium, I edit the .mdp file to give me trajectory information every 500 steps, not 5000. The reason behind this is that I need to reduce the size of my .trr file.
The way I am doing it is as follows;
gmx grompp -s new.mdp -c last_state.gro -r last_state.gro -t last_state.cpt -p same_topology.top -o more_frequent.tpr
gmx mdrun -v -deffnm more_frequent
When I do so I get the below error:
Step 20000101 Pressure scaling more than 1%. This may mean your system is not yet equilibrated. Use of Parrinello-Rahman pressure coupling during equilibration can lead to simulation instability, and is discouraged.
Step 20000151 Pressure scaling more than 1%. This may mean your system is not yet equilibrated. Use of Parrinello-Rahman pressure coupling during equilibration can lead to simulation instability, and is discouraged.
Step 20000152, time 20000.2 (ps) LINCS WARNING
relative constraint deviation after LINCS:
rms 71.542221, max 1498.503662 (between atoms 18580 and 18570)
bonds that rotated more than 30 degrees:
atom 1 atom 2 angle previous, current, constraint length
48428 48427 90.0 0.0459 0.2038 0.1000
48427 48426 57.6 0.0459 0.1002 0.1000
48589 48588 90.0 0.0459 0.5917 0.1000
48590 48589 90.0 0.0459 0.6072 0.1000
…
Fatal error:
Too many LINCS warnings (29731)
If you know what you are doing you can adjust the lincs warning threshold in
your mdp file
or set the environment variable GMX_MAXCONSTRWARN to -1,
but normally it is better to fix the problem
Fatal error:
Too many LINCS warnings (29731)
If you know what you are doing you can adjust the lincs warning threshold in
your mdp file
or set the environment variable GMX_MAXCONSTRWARN to -1,
but normally it is better to fix the problem