GROMACS version: 2023.3
GROMACS modification: No
I encountered an issue when in the NPT Equilibration phase of the Protein Ligand Complex tutorial on their website (Protein-Ligand Complex).
The error read:
WARNING 1 [file npt.mdp]:
The Berendsen barostat does not generate any strictly correct ensemble,
and should not be used for new production simulations (in our opinion).
We recommend using the C-rescale barostat instead.
So, I went over to the following line in my npt.mdp file, and changed it from this:
tcoupl = V-rescale ; modified Berendsen thermostat
to this:
tcoupl = C-rescale ; modified Berendsen thermostat
I received another error by running the same command as before (gmx grompp -f npt.mdp -c nvt.gro -t nvt.cpt -r nvt.gro -p topol.top -n index.ndx -o npt.tpr).
The new error read:
ERROR 1 [file npt.mdp, line 49]:
Invalid enum ‘C-rescale’ for variable tcoupl, using ‘No’
Next time, use one of: ‘No’ ‘Berendsen’ ‘Nose-Hoover’ ‘yes’ ‘Andersen’
‘Andersen-massive’ ‘V-rescale’
How do I solve this issue so that I can move onto the next step in the tutorial which is performing an mdrun on npt?