I’m running an MD simulation of ethane in argon gas, where I use the colvars module to explore energy profile of the H-C-C-H dihedral. This are the ABFsettings:
colvar {
name phi
width 2.
lowerBoundary 0.
upperBoundary +360.
# H C C H
dihedral {
group1 { atomNumbers 3}
group2 { atomNumbers 1}
group3 { atomNumbers 2}
group4 { atomNumbers 6}
}
extendedLagrangian on
extendedFluctuation 0.1
}
abf {
colvars phi
fullSamples 200
}
Launching the MD run works fine, but once it finished I noticed that, during the simulation time, half of the range of the dihedral angle has not been explored.
Therefore, I tried to extend the simulation as follows:
thank you for your kind responses and useful inputs.
@giacomo.fiorin thank you for the suggestion of the wrapAround command. I’m trying to compare the PES from QM calculations, and unfortunately in ORCA the dihedral range can be only between 0 and 360.
@Hub I am attaching the tpr file as required, plus the colvars input and state file. Let me know if you need anything else for debugging purposes. abf_dihedral.dat (326 Bytes) abf_dihedral_state.dat (9.4 KB)
Thanks for the file. I’m able to reproduce the error.
The reason is the name of the colvars restart file : -colvars_restart abf_dihedral_state.dat.
In the colvars/gromacs code, we assume the name of this restart file is always in the form of X.colvars.state.dat so in your case abf_dihedral.colvars.state.dat.
[Edit: you need in fact to have this file copied twice : one with the name abf_dihedral.colvars.state.dat to be read by mdrun and one with the name abf_dihedral.colvars.state to be parsed by colvars]
It will not happen in GMX 2024 because we handle the restart information differently.
Anyway, I will report the issue for GROMACS 2023 and below to have a more meaningful error message and remove the need to have 2 copies of the same file