Advertisement
Guest User

npt.mdp

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