Advertisement
Guest User

nvt.mdp

a guest
Jun 23rd, 2015
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. title = Protein-ligand complex NVT equilibration
  2.  
  3. define = -DPOSRES ; position restrain the protein and ligand
  4.  
  5. ; Run parameters
  6. integrator = md ; leap-frog integrator
  7. nsteps = 50000 ; 2 * 50000 = 100 ps
  8. dt = 0.002 ; 2 fs
  9.  
  10. ; Output
  11. nstxout = 500 ; save coordinates every 1.0 ps
  12. nstvout = 500 ; save velocities every 1.0 ps
  13. nstenergy = 500 ; save energies every 1.0 ps
  14. nstlog = 500 ; update log file every 1.0 ps
  15. energygrps = Protein DNA
  16.  
  17. ; Bond
  18. continuation = no ; first dynamics run
  19. constraint_algorithm = lincs ; holonomic constraints
  20. constraints = all-bonds ; all bonds (even heavy atom-H bonds) constrained
  21. lincs_iter = 1 ; accuracy of LINCS
  22. lincs_order = 4 ; also related to accuracy
  23.  
  24. ; Neighborsearching
  25. cutoff-scheme = Verlet
  26. ns_type = grid ; search neighboring grid cells
  27. nstlist = 20 ; 20 fs, largely irrelevant with Verlet
  28. rcoulomb = 1.2 ; short-range electrostatic cutoff (in nm)
  29. rvdw = 1.2 ; short-range VdW cutoff
  30.  
  31. ; Electrostatics
  32. coulombtype = PME ; Particle Mesh Ewald for long-range electrostatics
  33. pme_order = 4 ; cubic interpolation
  34. fourierspacing = 0.16 ; grid spacing for FFT
  35.  
  36. ; Temperature coupling
  37. tcoupl = V-rescale ; modified Berendsen thermostat
  38. tc-grps = Protein_DNA Water_and_ions ; two coupling groups - more accurate
  39. tau_t = 0.1 0.1 ; time constant, in ps
  40. ref_t = 300 300 ; reference temperature, one for each group, in K
  41.  
  42. ; Pressure coupling
  43. pcoupl = no ; no pressure coupling in NVT
  44.  
  45. ; Periodic boundary conditions
  46. pbc = xyz ; 3-D PBC
  47.  
  48. ; Dispersion correction
  49. DispCorr = EnerPres ; account for cut-off vdW scheme
  50.  
  51. ; Velocity generation
  52. gen_vel = yes ; assign velocities from Maxwell distribution
  53. gen_temp = 300 ; temperature for Maxwell distribution
  54. gen_seed = -1 ; generate a random seed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement