GROMACS version: 2020.1-Ubuntu-2020.1-1
GROMACS modification: No
Hello folks,
My task with gromacs is to do a 2ns
MD simulation of TIP4P
water in which the temperature is going to change from 240K
to 80K
. In order to do that I have included this in my .mdp
file:
; Temperature coupling is on
tcoupl = nose-hoover ; modified Berendsen thermostat
tc-grps = system ; two coupling groups - more accurate
tau_t = 0.4 ; time constant, in ps
ref_t = 240 ; reference temperature, one for each group, in K
; Simulated Annealing
annealing = single
annealing-npoints = 2
annealing-temp = 240 80 ; temperature decreases from 240 to 80
annealing-time = 0 2000 ; temperatre decreases from 240K at time = 0 ps to 90K at time = 2000 ps (2 ns)
My questions are these:
1.What exactly is the reference temperature in gromacs, and is that supposed to have the initial temperature or the final temperature?
2. Other one is, in the simulated annealing, is that section correct according to what I want to achieve?
Thank you so much.