Advertisement
Guest User

md.mdp

a guest
Jun 23rd, 2015
119
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-DNA MD simulation
  2.  
  3. ; Run parameters
  4. integrator = md ;
  5. nsteps = 12000000 ; 1 * 12000000 = 12 ns
  6. dt = 0.001 ; 1 fs
  7.  
  8. ; Output
  9. nstxout = 1000
  10. nstvout = 1000
  11. nstenergy = 1000
  12. nstlog = 1000
  13. nstxout-compressed = 1000
  14. compressed-x-grps = System
  15. energygrps = Protein DNA
  16.  
  17. ; Bond
  18. continuation = yes ; first dynamics run
  19. constraint_algorithm = lincs ; holonomic constraints
  20. constraints = all-bonds ; all bonds constrained
  21. lincs_iter = 1 ; accuracy of LINCS
  22. lincs_order = 4 ; also related to accuracy
  23. ; Neighborsearching
  24. cutoff-scheme = Verlet
  25. ns_type = grid ; search neighboring grid cells
  26. nstlist = 10 ;
  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.  
  48. ; Periodic boundary conditions
  49. pbc = xyz ; 3-D PBC
  50. ; Dispersion correction
  51. DispCorr = EnerPres ; account for cut-off vdW scheme
  52. ; Velocity generation
  53. gen_vel = no ; assign velocities from Maxwell distribution
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement