-
Notifications
You must be signed in to change notification settings - Fork 17
/
nwchem.py
299 lines (246 loc) · 8.55 KB
/
nwchem.py
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
"""
/******************************************************************************
This source file is part of the Avogadro project.
This source code is released under the New BSD License, (the "License").
******************************************************************************/
"""
import argparse
import json
import sys
# Some globals:
debug = False
def basisGuiToInput(gui):
if gui == '3-21 G':
return "3-21G"
elif gui == '6-31 G(d)':
return "6-31G*"
elif gui == '6-31 G(d,p)':
return "6-31G**"
elif gui == '6-31+ G(d)':
return "6-31+G*"
elif gui == '6-311 G(d)':
return "6-311G*"
elif gui == 'LANL2DZ':
return "LANL2DZ ECP"
else:
return gui
def getOptions():
userOptions = {}
userOptions['Title'] = {}
userOptions['Title']['type'] = 'string'
userOptions['Title']['default'] = ''
userOptions['Calculation Type'] = {}
userOptions['Calculation Type']['type'] = "stringList"
userOptions['Calculation Type']['default'] = 1
userOptions['Calculation Type']['values'] = \
['Single Point', 'Equilibrium Geometry', 'Frequencies']
userOptions['Theory'] = {}
userOptions['Theory']['type'] = "stringList"
userOptions['Theory']['default'] = 1
userOptions['Theory']['values'] = ['RHF', 'B3LYP', 'MP2', 'CCSD']
userOptions['Basis'] = {}
userOptions['Basis']['type'] = "stringList"
userOptions['Basis']['default'] = 2
userOptions['Basis']['values'] = \
['STO-3G', '3-21 G', '6-31 G(d)', '6-31 G(d,p)', '6-31+ G(d)',
'6-311 G(d)', 'cc-pVDZ', 'cc-pVTZ', 'LANL2DZ']
userOptions['Multiplicity'] = {}
userOptions['Multiplicity']['type'] = "integer"
userOptions['Multiplicity']['default'] = 1
userOptions['Multiplicity']['minimum'] = 1
userOptions['Multiplicity']['maximum'] = 5
userOptions['Charge'] = {}
userOptions['Charge']['type'] = "integer"
userOptions['Charge']['default'] = 0
userOptions['Charge']['minimum'] = -9
userOptions['Charge']['maximum'] = 9
userOptions['Filename Base'] = {}
userOptions['Filename Base']['type'] = 'string'
userOptions['Filename Base']['default'] = 'job'
# highlighting options
defaultRules = []
# literals
literalRule = {
"patterns": [
{"regexp": "\\b[+-]?[.0-9]+(?:[eEdD][+-]?[.0-9]+)?\\b"}
],
"format": {
"preset": "literal"
}
}
defaultRules.append(literalRule)
# keywords
keywordList = [
"(?:re)?start", "(?:scratch|permanent)?_dir", "memory", "echo", "title",
"(?:no)?print", "(?:un)?set", "stop", "task", "ecce_print", "charge",
"geometry", "basis", "spherical", "library", "end", "xc", "mult",
"freeze atomic", "(?:no)?center", "bqbq", "nuc(?:l(?:eus)?)?", "scf", "dft",
"mp2", "ccsd", "units", "autosym"]
keywordPatterns = []
for keyword in keywordList:
keywordPatterns.append({"regexp": "\\b%s\\b" % keyword})
keywordRule = {
"patterns": keywordPatterns,
"format": {
"preset": "keyword"
}
}
defaultRules.append(keywordRule)
# properties
propertyPatterns = []
for basis in userOptions['Basis']['values']:
propertyPatterns.append({"regexp": "\\*\\s+library\\s+([^\\n]+)"})
propertyPatterns.append(
{"regexp": "units\\s+(an|angstroms|au|atom|bohr|nm|nanometers|pm|picometers)"})
propertyPatterns.append({"regexp": "(?:re)?start\\s+([^;\\n]+)"})
propertyPatterns.append({"regexp": "\\bprint\\s+(xyz)"})
propertyPatterns.append({"regexp": "\\autosym\\s+([-\\d.eEdD+]+)"})
propertyPatterns.append({"regexp": "\\bnuc(?:l(?:eus)?)?\\s+([^\\s;]+)"})
propertyPatterns.append({"regexp": "\\bbasis\\s+(spherical)\\b"})
propertyPatterns.append({"regexp": "\\bxc\\s+([^\\n]+)\\b"})
propertyPatterns.append({"regexp":
"\\btask\\s+" + # Task directive
# theory
"((?:mc)?scf|(:?so)?dft|(:?direct_|ri)?mp2|ccsd(:?\\(t\\))?|selci|md|pspw|band|tce)\\s+" +
# calc
"(energy|gradient|optimize|saddle|hessian|freq(?:uencies)?|property|(?:thermo)?dynamics)\\b"
})
propertyRule = {
"patterns": propertyPatterns,
"format": {
"preset": "property"
}
}
defaultRules.append(propertyRule)
# title
titleRule = {
"patterns": [
{"regexp": "title\\s+\"(.+)\""}
],
"format": {
"preset": "title"
}
}
defaultRules.append(titleRule)
# comment
commentRule = {
"patterns": [
{"regexp": "#[^\n]*"}
],
"format": {
"preset": "comment"
}
}
defaultRules.append(commentRule)
# Assemble default style:
defaultStyle = {}
defaultStyle["style"] = "default"
defaultStyle["rules"] = defaultRules
highlightStyles = [defaultStyle]
opts = {}
opts['userOptions'] = userOptions
opts['highlightStyles'] = highlightStyles
return opts
def generateInputFile(opts):
# Extract options:
title = opts['Title']
calculate = opts['Calculation Type']
theory = opts['Theory']
basis = opts['Basis']
multiplicity = opts['Multiplicity']
charge = opts['Charge']
# Preamble
nwfile = ""
nwfile += "echo\n\n"
nwfile += "start molecule\n\n"
nwfile += "title \"%s\"\n" % title
# Charge
nwfile += "charge %d\n\n" % charge
# Coordinates
nwfile += "geometry units angstroms print xyz autosym\n"
nwfile += "$$coords:Sxyz$$\n"
nwfile += "end\n\n"
# Basis
nwfile += "basis"
if basis == "cc-pVDZ" or basis == "cc-pVTZ":
nwfile += " spherical"
nwfile += "\n"
nwfile += " * library "
nwfile += basisGuiToInput(basis)
nwfile += "\n"
nwfile += "end\n\n"
# Theory
task = ""
if theory == "RHF":
task = "scf"
elif theory == "B3LYP":
task = "dft"
nwfile += "dft\n"
nwfile += " xc b3lyp\n"
nwfile += " mult %d\n" % multiplicity
nwfile += "end\n\n"
elif theory == "MP2":
task = "mp2"
nwfile += "mp2\n"
nwfile += " # Exclude core electrons from MP2 treatment:\n"
nwfile += " freeze atomic\n"
nwfile += "end\n\n"
elif theory == "CCSD":
task = "ccsd"
nwfile += "ccsd\n"
nwfile += " # Exclude core electrons from coupled cluster perturbations:\n"
nwfile += " freeze atomic\n"
nwfile += "end\n\n"
else:
raise Exception("Invalid Theory: %s" % theory)
# Task
nwfile += "task %s " % task
if calculate == 'Single Point':
nwfile += "energy"
elif calculate == 'Equilibrium Geometry':
nwfile += "optimize"
elif calculate == 'Frequencies':
nwfile += "freq"
else:
raise Exception("Invalid calculation type: %s" % calculate)
nwfile += "\n"
return nwfile
def generateInput():
# Read options from stdin
stdinStr = sys.stdin.read()
# Parse the JSON strings
opts = json.loads(stdinStr)
# Generate the input file
inp = generateInputFile(opts['options'])
# Basename for input files:
baseName = opts['options']['Filename Base']
# Prepare the result
result = {}
# Input file text -- will appear in the same order in the GUI as they are
# listed in the array:
files = []
files.append({'filename': '%s.nw' % baseName,
'contents': inp,
'highlightStyles': ['default']})
if debug:
files.append({'filename': 'debug_info', 'contents': stdinStr})
result['files'] = files
# Specify the main input file. This will be used by MoleQueue to determine
# the value of the $$inputFileName$$ and $$inputFileBaseName$$ keywords.
result['mainFile'] = '%s.nw' % baseName
return result
if __name__ == "__main__":
parser = argparse.ArgumentParser('Generate a NWChem input file.')
parser.add_argument('--debug', action='store_true')
parser.add_argument('--print-options', action='store_true')
parser.add_argument('--generate-input', action='store_true')
parser.add_argument('--display-name', action='store_true')
parser.add_argument('--lang', nargs='?', default='en')
args = vars(parser.parse_args())
debug = args['debug']
if args['display_name']:
print("NWChem")
if args['print_options']:
print(json.dumps(getOptions()))
elif args['generate_input']:
print(json.dumps(generateInput()))