~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to tools/moltemplate/examples/all_atom_examples/force_field_OPLSAA/waterSPCE+methane/moltemplate_files/oplsaa_lt_generator/README.TXT

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
This directory contains instructions for creating a a moltemplate file
 
2
("oplsaa.lt") containing force-field definitions relevant to the "Methane" 
 
3
molecule.  (However, these instructions should work for other molecules too.)
 
4
Note that the "SPCE" (water) molecules in this example, do NOT use the OPLSAA
 
5
database to look up the force-field parameters, so I did not include water
 
6
atom types in the "oplsaa_subset.prm".
 
7
 
 
8
--- Instructions ---
 
9
 
 
10
First, check and see if there is an "oplsaa_subset.prm" file present.
 
11
If not, then download this file:
 
12
 
 
13
http://dasher.wustl.edu/tinker/distribution/params/oplsaa.prm
 
14
   This file is also available here:
 
15
http://dasher.wustl.edu/ffe/distribution/params/oplsaa.prm
 
16
 
 
17
and save this file as "oplsaa_subset.prm".  Then you must EDIT THIS FILE
 
18
so that it only contains atom types you plan to have in your simulation
 
19
(see below for details).  Then run the opls_moltemplate.py script this way:
 
20
 
 
21
 
 
22
python oplsaa_moltemplate.py  oplsaa_subset.prm
 
23
 
 
24
 
 
25
This will create a file named "oplsaa.lt"
 
26
Look over the newly created "oplsaa.lt" file.
 
27
Then move this file to wherever you plan to run moltemplate.  For example:
 
28
 
 
29
mv -f oplsaa.lt ..
 
30
 
 
31
----- DETAILS: Editing the "oplsaa_subset.prm" file -------
 
32
 
 
33
Again, before you run "oplsaa_moltemplate.py", you must edit the "oplsaa.prm"
 
34
file (or "oplsaa_subset.prm file) and eliminate atom types which do not 
 
35
correspond to any of the atoms in your simulation.  This means you must
 
36
look for lines near the beginning of this file which begin with the word "atom"
 
37
and refer to atom types which appear in the simulation you plan to run.  All
 
38
other lines (beginning with the word "atom") must be deleted or commented out.
 
39
(Leave the rest of the file alone.)
 
40
 
 
41
For example:
 
42
If you were working with methane, you would delete every line
 
43
beginning with the word "atom", except for these two lines:
 
44
 
 
45
 
 
46
atom         83   13    CT    "Methane CH4"                  6    12.011    4
 
47
atom         85   46    HC    "Alkane H-C"                   1     1.008    1
 
48
 
 
49
 
 
50
Then you are ready to run oplsaa_moltemplate.py on this file.
 
51
 
 
52
(Note: Atom type numbers, like "83", "85", "46", etc... may vary depending on
 
53
 when you downloaded "oplsaa.prm".)
 
54
 
 
55
 
 
56
----- Using the "oplsaa.lt" file -----
 
57
 
 
58
Once you have created the "oplsaa.lt" file, you can create files (like 
 
59
ethylene.lt) which define molecules that refer to these atom types.
 
60
Here is an excerpt from "methane.lt":
 
61
 
 
62
import "oplsaa.lt"
 
63
Methane inherits OPLSAA {
 
64
  write('Data Atoms') { 
 
65
    list of atoms goes here ...
 
66
  }
 
67
  write('Data Bond List') { 
 
68
    list of bonds goes here ...
 
69
  }
 
70
}
 
71
 
 
72
And then run moltemplate.
 
73
 
 
74
 
 
75
-----------  CHARGE: -----------
 
76
 
 
77
By default, the OPLSAA force-field assigns atom charge according to atom type.
 
78
When you run moltemplate, it will create a file named "system.in.charges",
 
79
containing commands like:
 
80
 
 
81
set type 2 charge -0.42
 
82
set type 3 charge 0.21
 
83
 
 
84
(This assumes your main moltemplate file is named "system.lt".  If it was
 
85
named something else, eg "polymer.lt", then the file created by moltemplate
 
86
will be named "polymer.in.charges".)
 
87
 
 
88
Include these commands somewhere in your LAMMPS input script 
 
89
(or use the LAMMPS "include" command to load the commands in system.in.charges)
 
90
 
 
91
Note that the atom numbers (eg "2", "3") in this file will not match the 
 
92
OPLS atom numbers.  (Check the output_ttree/ttree_assignments.txt file,
 
93
created by moltemplate, to see a table of "@atom" type numbers translated 
 
94
from OPLSAA into LAMMPS.)
 
95
 
 
96
----------- CREDIT -----------
 
97
 
 
98
If you use these tools and you publish a paper using OPLSAA, please also cite 
 
99
the TINKER program.  (Because these examples use the "oplsaa.prm" file which
 
100
is distributed with TINKER.)  I think these are the relevant citations:
 
101
 
 
102
1) Ponder, J. W., & Richards, F. M. (1987). "An efficient newton‐like method for molecular mechanics energy minimization of large molecules. Journal of Computational Chemistry", 8(7), 1016-1024.
 
103
 
 
104
2) Ponder, J. W, (2004) "TINKER: Software tools for molecular design", http://dasher.wustl.edu/tinker/
 
105
 
 
106
-------------------------------
 
107
 
 
108
Andrew Jewett and Jason Lambert
 
109
May, 2014
 
110
 
 
111
Please email bugs to jewett.aij@gmail.com and jlamber9@gmail.com