-
Notifications
You must be signed in to change notification settings - Fork 0
/
02_water_aa.in
46 lines (32 loc) · 1.42 KB
/
02_water_aa.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# ----------------- Init Section -----------------
include "02_water_aa.in.init"
# ----------------- Atom Definition Section -----------------
read_data "02_water_aa.data"
# ----------------- Settings Section -----------------
include "02_water_aa.in.settings"
# ----------------- Run Section -----------------
include "02_water_aa.in.run"
# ----------------- Run Section -----------------
# The lines above define the system you want to simulate.
# What you do next is up to you.
# Typically a user would minimize and equilibrate
# the system using commands similar to the following:
# ---- examples ----
#
# -- minimize --
# minimize 1.0e-5 1.0e-7 1000 10000
# (Note: Some fixes, for example "shake", interfere with the minimize command,
# You can use the "unfix" command to disable them before minimization.)
# -- declare time step for normal MD --
# timestep 1.0
# -- run at constant pressure (Nose-Hoover)--
# fix fxnpt all npt temp 300.0 300.0 100.0 iso 1.0 1.0 1000.0 drag 1.0
# -- ALTERNATELY, run at constant volume (Nose-Hoover) --
# fix fxnvt all nvt temp 300.0 300.0 500.0 tchain 1
# -- ALTERNATELY, run at constant volume using Langevin dynamics. --
# -- (This is good for sparse CG polymers in implicit solvent.) --
# fix fxLAN all langevin 300.0 300.0 5000 48279
# fix fxNVE all nve #(<--needed by fix langevin)
# -- Now, finally run the simulation --
# run 50000
# ---- (end of examples) ----