nomad-parser-plugins-atomistic 1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- atomisticparsers/__init__.py +400 -0
- atomisticparsers/amber/__init__.py +19 -0
- atomisticparsers/amber/__main__.py +31 -0
- atomisticparsers/amber/metainfo/__init__.py +19 -0
- atomisticparsers/amber/metainfo/amber.py +495 -0
- atomisticparsers/amber/parser.py +42 -0
- atomisticparsers/asap/__init__.py +19 -0
- atomisticparsers/asap/__main__.py +31 -0
- atomisticparsers/asap/metainfo/__init__.py +19 -0
- atomisticparsers/asap/metainfo/asap.py +75 -0
- atomisticparsers/asap/parser.py +197 -0
- atomisticparsers/bopfox/__init__.py +19 -0
- atomisticparsers/bopfox/__main__.py +31 -0
- atomisticparsers/bopfox/metainfo/__init__.py +19 -0
- atomisticparsers/bopfox/metainfo/bopfox.py +225 -0
- atomisticparsers/bopfox/parser.py +808 -0
- atomisticparsers/dftbplus/__init__.py +19 -0
- atomisticparsers/dftbplus/__main__.py +31 -0
- atomisticparsers/dftbplus/metainfo/__init__.py +19 -0
- atomisticparsers/dftbplus/metainfo/dftbplus.py +217 -0
- atomisticparsers/dftbplus/parser.py +500 -0
- atomisticparsers/dlpoly/__init__.py +19 -0
- atomisticparsers/dlpoly/__main__.py +31 -0
- atomisticparsers/dlpoly/metainfo/__init__.py +19 -0
- atomisticparsers/dlpoly/metainfo/dl_poly.py +312 -0
- atomisticparsers/dlpoly/parser.py +798 -0
- atomisticparsers/gromacs/__init__.py +19 -0
- atomisticparsers/gromacs/__main__.py +31 -0
- atomisticparsers/gromacs/metainfo/__init__.py +19 -0
- atomisticparsers/gromacs/metainfo/gromacs.py +2388 -0
- atomisticparsers/gromacs/parser.py +1581 -0
- atomisticparsers/gromos/__init__.py +19 -0
- atomisticparsers/gromos/__main__.py +31 -0
- atomisticparsers/gromos/metainfo/__init__.py +19 -0
- atomisticparsers/gromos/metainfo/gromos.py +1995 -0
- atomisticparsers/gromos/parser.py +58 -0
- atomisticparsers/gulp/__init__.py +19 -0
- atomisticparsers/gulp/__main__.py +31 -0
- atomisticparsers/gulp/metainfo/__init__.py +19 -0
- atomisticparsers/gulp/metainfo/gulp.py +1117 -0
- atomisticparsers/gulp/parser.py +1316 -0
- atomisticparsers/h5md/__init__.py +19 -0
- atomisticparsers/h5md/__main__.py +31 -0
- atomisticparsers/h5md/metainfo/__init__.py +19 -0
- atomisticparsers/h5md/metainfo/h5md.py +239 -0
- atomisticparsers/h5md/parser.py +901 -0
- atomisticparsers/lammps/__init__.py +19 -0
- atomisticparsers/lammps/__main__.py +31 -0
- atomisticparsers/lammps/metainfo/__init__.py +19 -0
- atomisticparsers/lammps/metainfo/lammps.py +1417 -0
- atomisticparsers/lammps/parser.py +1753 -0
- atomisticparsers/libatoms/__init__.py +19 -0
- atomisticparsers/libatoms/__main__.py +31 -0
- atomisticparsers/libatoms/metainfo/__init__.py +19 -0
- atomisticparsers/libatoms/metainfo/lib_atoms.py +251 -0
- atomisticparsers/libatoms/parser.py +38 -0
- atomisticparsers/namd/__init__.py +19 -0
- atomisticparsers/namd/__main__.py +31 -0
- atomisticparsers/namd/metainfo/__init__.py +19 -0
- atomisticparsers/namd/metainfo/namd.py +1605 -0
- atomisticparsers/namd/parser.py +312 -0
- atomisticparsers/tinker/__init__.py +19 -0
- atomisticparsers/tinker/__main__.py +31 -0
- atomisticparsers/tinker/metainfo/__init__.py +18 -0
- atomisticparsers/tinker/metainfo/tinker.py +1363 -0
- atomisticparsers/tinker/parser.py +685 -0
- atomisticparsers/utils/__init__.py +22 -0
- atomisticparsers/utils/mdanalysis.py +662 -0
- atomisticparsers/utils/parsers.py +226 -0
- atomisticparsers/xtb/__init__.py +19 -0
- atomisticparsers/xtb/__main__.py +32 -0
- atomisticparsers/xtb/metainfo/__init__.py +19 -0
- atomisticparsers/xtb/metainfo/xtb.py +256 -0
- atomisticparsers/xtb/parser.py +979 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/LICENSE +202 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/METADATA +327 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/RECORD +80 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/WHEEL +5 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/entry_points.txt +15 -0
- nomad_parser_plugins_atomistic-1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1363 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright The NOMAD Authors.
|
|
3
|
+
#
|
|
4
|
+
# This file is part of NOMAD.
|
|
5
|
+
# See https://nomad-lab.eu for further info.
|
|
6
|
+
#
|
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
# you may not use this file except in compliance with the License.
|
|
9
|
+
# You may obtain a copy of the License at
|
|
10
|
+
#
|
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
#
|
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
import numpy as np # pylint: disable=unused-import
|
|
20
|
+
from nomad.metainfo import ( # pylint: disable=unused-import
|
|
21
|
+
MSection,
|
|
22
|
+
MCategory,
|
|
23
|
+
Category,
|
|
24
|
+
Package,
|
|
25
|
+
Quantity,
|
|
26
|
+
Section,
|
|
27
|
+
SubSection,
|
|
28
|
+
SectionProxy,
|
|
29
|
+
Reference,
|
|
30
|
+
JSON,
|
|
31
|
+
)
|
|
32
|
+
import runschema.run # pylint: disable=unused-import
|
|
33
|
+
import runschema.calculation # pylint: disable=unused-import
|
|
34
|
+
import runschema.method # pylint: disable=unused-import
|
|
35
|
+
import runschema.system # pylint: disable=unused-import
|
|
36
|
+
import simulationworkflowschema
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
m_package = Package()
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
class x_tinker_mdin_input_output_files(MCategory):
|
|
43
|
+
"""
|
|
44
|
+
Parameters of mdin belonging to x_tinker_section_control_parameters.
|
|
45
|
+
"""
|
|
46
|
+
|
|
47
|
+
m_def = Category()
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class x_tinker_mdin_control_parameters(MCategory):
|
|
51
|
+
"""
|
|
52
|
+
Parameters of mdin belonging to x_tinker_section_control_parameters.
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
m_def = Category()
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
class x_tinker_mdin_method(MCategory):
|
|
59
|
+
"""
|
|
60
|
+
Parameters of mdin belonging to section method.
|
|
61
|
+
"""
|
|
62
|
+
|
|
63
|
+
m_def = Category()
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class x_tinker_mdout_single_configuration_calculation(MCategory):
|
|
67
|
+
"""
|
|
68
|
+
Parameters of mdout belonging to section_single_configuration_calculation.
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
m_def = Category()
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
class x_tinker_mdout_method(MCategory):
|
|
75
|
+
"""
|
|
76
|
+
Parameters of mdin belonging to section method.
|
|
77
|
+
"""
|
|
78
|
+
|
|
79
|
+
m_def = Category()
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
class x_tinker_mdout_run(MCategory):
|
|
83
|
+
"""
|
|
84
|
+
Parameters of mdin belonging to settings run.
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
m_def = Category()
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class x_tinker_mdin_run(MCategory):
|
|
91
|
+
"""
|
|
92
|
+
Parameters of mdin belonging to settings run.
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
m_def = Category()
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class x_tinker_section_input_output_files(MSection):
|
|
99
|
+
"""
|
|
100
|
+
Section to store input and output file names
|
|
101
|
+
"""
|
|
102
|
+
|
|
103
|
+
m_def = Section(validate=False)
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
class x_tinker_section_control_parameters(MSection):
|
|
107
|
+
"""
|
|
108
|
+
Section to store the input and output control parameters
|
|
109
|
+
"""
|
|
110
|
+
|
|
111
|
+
m_def = Section(validate=False)
|
|
112
|
+
|
|
113
|
+
x_tinker_inout_file_structure = Quantity(
|
|
114
|
+
type=str,
|
|
115
|
+
shape=[],
|
|
116
|
+
description="""
|
|
117
|
+
tinker input topology file.
|
|
118
|
+
""",
|
|
119
|
+
)
|
|
120
|
+
|
|
121
|
+
x_tinker_inout_file_trajectory = Quantity(
|
|
122
|
+
type=str,
|
|
123
|
+
shape=[],
|
|
124
|
+
description="""
|
|
125
|
+
tinker output trajectory file.
|
|
126
|
+
""",
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
x_tinker_inout_file_traj_coord = Quantity(
|
|
130
|
+
type=str,
|
|
131
|
+
shape=[],
|
|
132
|
+
description="""
|
|
133
|
+
tinker output trajectory file.
|
|
134
|
+
""",
|
|
135
|
+
)
|
|
136
|
+
|
|
137
|
+
x_tinker_inout_file_traj_vel = Quantity(
|
|
138
|
+
type=str,
|
|
139
|
+
shape=[],
|
|
140
|
+
description="""
|
|
141
|
+
tinker output file for velocities in the trajectory.
|
|
142
|
+
""",
|
|
143
|
+
)
|
|
144
|
+
|
|
145
|
+
x_tinker_inout_file_traj_force = Quantity(
|
|
146
|
+
type=str,
|
|
147
|
+
shape=[],
|
|
148
|
+
description="""
|
|
149
|
+
tinker output file for forces in the trajectory.
|
|
150
|
+
""",
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
x_tinker_inout_file_output_coord = Quantity(
|
|
154
|
+
type=str,
|
|
155
|
+
shape=[],
|
|
156
|
+
description="""
|
|
157
|
+
tinker output coordinates file.
|
|
158
|
+
""",
|
|
159
|
+
)
|
|
160
|
+
|
|
161
|
+
x_tinker_inout_file_output_vel = Quantity(
|
|
162
|
+
type=str,
|
|
163
|
+
shape=[],
|
|
164
|
+
description="""
|
|
165
|
+
tinker output velocities file.
|
|
166
|
+
""",
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
x_tinker_inout_file_output_force = Quantity(
|
|
170
|
+
type=str,
|
|
171
|
+
shape=[],
|
|
172
|
+
description="""
|
|
173
|
+
tinker output forces file.
|
|
174
|
+
""",
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
x_tinker_inout_file_input_coord = Quantity(
|
|
178
|
+
type=str,
|
|
179
|
+
shape=[],
|
|
180
|
+
description="""
|
|
181
|
+
tinker input coordinates file.
|
|
182
|
+
""",
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
x_tinker_inout_file_input_vel = Quantity(
|
|
186
|
+
type=str,
|
|
187
|
+
shape=[],
|
|
188
|
+
description="""
|
|
189
|
+
tinker input velocities file.
|
|
190
|
+
""",
|
|
191
|
+
)
|
|
192
|
+
|
|
193
|
+
x_tinker_inout_file_restart_coord = Quantity(
|
|
194
|
+
type=str,
|
|
195
|
+
shape=[],
|
|
196
|
+
description="""
|
|
197
|
+
tinker restart coordinates file.
|
|
198
|
+
""",
|
|
199
|
+
)
|
|
200
|
+
|
|
201
|
+
x_tinker_inout_file_restart_vel = Quantity(
|
|
202
|
+
type=str,
|
|
203
|
+
shape=[],
|
|
204
|
+
description="""
|
|
205
|
+
tinker restart velocities file.
|
|
206
|
+
""",
|
|
207
|
+
)
|
|
208
|
+
|
|
209
|
+
x_tinker_inout_file_output_log = Quantity(
|
|
210
|
+
type=str,
|
|
211
|
+
shape=[],
|
|
212
|
+
description="""
|
|
213
|
+
tinker MD output log file.
|
|
214
|
+
""",
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
x_tinker_inout_control_number_of_steps = Quantity(
|
|
218
|
+
type=str,
|
|
219
|
+
shape=[],
|
|
220
|
+
description="""
|
|
221
|
+
tinker running environment and control parameters.
|
|
222
|
+
""",
|
|
223
|
+
)
|
|
224
|
+
|
|
225
|
+
x_tinker_inout_control_polar_eps = Quantity(
|
|
226
|
+
type=str,
|
|
227
|
+
shape=[],
|
|
228
|
+
description="""
|
|
229
|
+
tinker running environment and control parameters.
|
|
230
|
+
""",
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
x_tinker_inout_control_initial_temperature = Quantity(
|
|
234
|
+
type=str,
|
|
235
|
+
shape=[],
|
|
236
|
+
description="""
|
|
237
|
+
tinker running environment and control parameters.
|
|
238
|
+
""",
|
|
239
|
+
)
|
|
240
|
+
|
|
241
|
+
x_tinker_inout_control_dielectric = Quantity(
|
|
242
|
+
type=str,
|
|
243
|
+
shape=[],
|
|
244
|
+
description="""
|
|
245
|
+
tinker running environment and control parameters.
|
|
246
|
+
""",
|
|
247
|
+
)
|
|
248
|
+
|
|
249
|
+
x_tinker_inout_control_minimization = Quantity(
|
|
250
|
+
type=str,
|
|
251
|
+
shape=[],
|
|
252
|
+
description="""
|
|
253
|
+
tinker running environment and control parameters.
|
|
254
|
+
""",
|
|
255
|
+
)
|
|
256
|
+
|
|
257
|
+
x_tinker_inout_control_integrator = Quantity(
|
|
258
|
+
type=str,
|
|
259
|
+
shape=[],
|
|
260
|
+
description="""
|
|
261
|
+
tinker running environment and control parameters.
|
|
262
|
+
""",
|
|
263
|
+
)
|
|
264
|
+
|
|
265
|
+
x_tinker_inout_control_parameters = Quantity(
|
|
266
|
+
type=str,
|
|
267
|
+
shape=[],
|
|
268
|
+
description="""
|
|
269
|
+
tinker running environment and control parameters.
|
|
270
|
+
""",
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
x_tinker_inout_control_verbose = Quantity(
|
|
274
|
+
type=bool,
|
|
275
|
+
shape=[],
|
|
276
|
+
description="""
|
|
277
|
+
tinker running environment and control parameters.
|
|
278
|
+
""",
|
|
279
|
+
)
|
|
280
|
+
|
|
281
|
+
x_tinker_inout_control_a_axis = Quantity(
|
|
282
|
+
type=str,
|
|
283
|
+
shape=[],
|
|
284
|
+
description="""
|
|
285
|
+
tinker running environment and control parameters.
|
|
286
|
+
""",
|
|
287
|
+
)
|
|
288
|
+
|
|
289
|
+
x_tinker_inout_control_b_axis = Quantity(
|
|
290
|
+
type=str,
|
|
291
|
+
shape=[],
|
|
292
|
+
description="""
|
|
293
|
+
tinker running environment and control parameters.
|
|
294
|
+
""",
|
|
295
|
+
)
|
|
296
|
+
|
|
297
|
+
x_tinker_inout_control_c_axis = Quantity(
|
|
298
|
+
type=str,
|
|
299
|
+
shape=[],
|
|
300
|
+
description="""
|
|
301
|
+
tinker running environment and control parameters.
|
|
302
|
+
""",
|
|
303
|
+
)
|
|
304
|
+
|
|
305
|
+
x_tinker_inout_control_alpha = Quantity(
|
|
306
|
+
type=str,
|
|
307
|
+
shape=[],
|
|
308
|
+
description="""
|
|
309
|
+
tinker running environment and control parameters.
|
|
310
|
+
""",
|
|
311
|
+
)
|
|
312
|
+
|
|
313
|
+
x_tinker_inout_control_beta = Quantity(
|
|
314
|
+
type=str,
|
|
315
|
+
shape=[],
|
|
316
|
+
description="""
|
|
317
|
+
tinker running environment and control parameters.
|
|
318
|
+
""",
|
|
319
|
+
)
|
|
320
|
+
|
|
321
|
+
x_tinker_inout_control_gamma = Quantity(
|
|
322
|
+
type=str,
|
|
323
|
+
shape=[],
|
|
324
|
+
description="""
|
|
325
|
+
tinker running environment and control parameters.
|
|
326
|
+
""",
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
x_tinker_inout_control_tau_pressure = Quantity(
|
|
330
|
+
type=str,
|
|
331
|
+
shape=[],
|
|
332
|
+
description="""
|
|
333
|
+
tinker running environment and control parameters.
|
|
334
|
+
""",
|
|
335
|
+
)
|
|
336
|
+
|
|
337
|
+
x_tinker_inout_control_tau_temperature = Quantity(
|
|
338
|
+
type=str,
|
|
339
|
+
shape=[],
|
|
340
|
+
description="""
|
|
341
|
+
tinker running environment and control parameters.
|
|
342
|
+
""",
|
|
343
|
+
)
|
|
344
|
+
|
|
345
|
+
x_tinker_inout_control_debug = Quantity(
|
|
346
|
+
type=bool,
|
|
347
|
+
shape=[],
|
|
348
|
+
description="""
|
|
349
|
+
tinker running environment and control parameters.
|
|
350
|
+
""",
|
|
351
|
+
)
|
|
352
|
+
|
|
353
|
+
x_tinker_inout_control_group = Quantity(
|
|
354
|
+
type=bool,
|
|
355
|
+
shape=[],
|
|
356
|
+
description="""
|
|
357
|
+
tinker running environment and control parameters.
|
|
358
|
+
""",
|
|
359
|
+
)
|
|
360
|
+
|
|
361
|
+
x_tinker_inout_control_group_inter = Quantity(
|
|
362
|
+
type=str,
|
|
363
|
+
shape=[],
|
|
364
|
+
description="""
|
|
365
|
+
tinker running environment and control parameters.
|
|
366
|
+
""",
|
|
367
|
+
)
|
|
368
|
+
|
|
369
|
+
x_tinker_inout_control_vib_roots = Quantity(
|
|
370
|
+
type=str,
|
|
371
|
+
shape=[],
|
|
372
|
+
description="""
|
|
373
|
+
tinker running environment and control parameters.
|
|
374
|
+
""",
|
|
375
|
+
)
|
|
376
|
+
|
|
377
|
+
x_tinker_inout_control_spacegroup = Quantity(
|
|
378
|
+
type=str,
|
|
379
|
+
shape=[],
|
|
380
|
+
description="""
|
|
381
|
+
tinker running environment and control parameters.
|
|
382
|
+
""",
|
|
383
|
+
)
|
|
384
|
+
|
|
385
|
+
x_tinker_inout_control_digits = Quantity(
|
|
386
|
+
type=str,
|
|
387
|
+
shape=[],
|
|
388
|
+
description="""
|
|
389
|
+
tinker running environment and control parameters.
|
|
390
|
+
""",
|
|
391
|
+
)
|
|
392
|
+
|
|
393
|
+
x_tinker_inout_control_printout = Quantity(
|
|
394
|
+
type=str,
|
|
395
|
+
shape=[],
|
|
396
|
+
description="""
|
|
397
|
+
tinker running environment and control parameters.
|
|
398
|
+
""",
|
|
399
|
+
)
|
|
400
|
+
|
|
401
|
+
x_tinker_inout_control_enforce_chirality = Quantity(
|
|
402
|
+
type=bool,
|
|
403
|
+
shape=[],
|
|
404
|
+
description="""
|
|
405
|
+
tinker running environment and control parameters.
|
|
406
|
+
""",
|
|
407
|
+
)
|
|
408
|
+
|
|
409
|
+
x_tinker_inout_control_neighbor_list = Quantity(
|
|
410
|
+
type=bool,
|
|
411
|
+
shape=[],
|
|
412
|
+
description="""
|
|
413
|
+
tinker running environment and control parameters.
|
|
414
|
+
""",
|
|
415
|
+
)
|
|
416
|
+
|
|
417
|
+
x_tinker_inout_control_vdw_cutoff = Quantity(
|
|
418
|
+
type=str,
|
|
419
|
+
shape=[],
|
|
420
|
+
description="""
|
|
421
|
+
tinker running environment and control parameters.
|
|
422
|
+
""",
|
|
423
|
+
)
|
|
424
|
+
|
|
425
|
+
x_tinker_inout_control_vdw_correction = Quantity(
|
|
426
|
+
type=bool,
|
|
427
|
+
shape=[],
|
|
428
|
+
description="""
|
|
429
|
+
tinker running environment and control parameters.
|
|
430
|
+
""",
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
x_tinker_inout_control_ewald = Quantity(
|
|
434
|
+
type=bool,
|
|
435
|
+
shape=[],
|
|
436
|
+
description="""
|
|
437
|
+
tinker running environment and control parameters.
|
|
438
|
+
""",
|
|
439
|
+
)
|
|
440
|
+
|
|
441
|
+
x_tinker_inout_control_ewald_cutoff = Quantity(
|
|
442
|
+
type=str,
|
|
443
|
+
shape=[],
|
|
444
|
+
description="""
|
|
445
|
+
tinker running environment and control parameters.
|
|
446
|
+
""",
|
|
447
|
+
)
|
|
448
|
+
|
|
449
|
+
x_tinker_inout_control_archive = Quantity(
|
|
450
|
+
type=bool,
|
|
451
|
+
shape=[],
|
|
452
|
+
description="""
|
|
453
|
+
tinker running environment and control parameters.
|
|
454
|
+
""",
|
|
455
|
+
)
|
|
456
|
+
|
|
457
|
+
x_tinker_inout_control_barostat = Quantity(
|
|
458
|
+
type=str,
|
|
459
|
+
shape=[],
|
|
460
|
+
description="""
|
|
461
|
+
tinker running environment and control parameters.
|
|
462
|
+
""",
|
|
463
|
+
)
|
|
464
|
+
|
|
465
|
+
x_tinker_inout_control_aniso_pressure = Quantity(
|
|
466
|
+
type=bool,
|
|
467
|
+
shape=[],
|
|
468
|
+
description="""
|
|
469
|
+
tinker running environment and control parameters.
|
|
470
|
+
""",
|
|
471
|
+
)
|
|
472
|
+
|
|
473
|
+
x_tinker_inout_control_lights = Quantity(
|
|
474
|
+
type=bool,
|
|
475
|
+
shape=[],
|
|
476
|
+
description="""
|
|
477
|
+
tinker running environment and control parameters.
|
|
478
|
+
""",
|
|
479
|
+
)
|
|
480
|
+
|
|
481
|
+
x_tinker_inout_control_randomseed = Quantity(
|
|
482
|
+
type=str,
|
|
483
|
+
shape=[],
|
|
484
|
+
description="""
|
|
485
|
+
tinker running environment and control parameters.
|
|
486
|
+
""",
|
|
487
|
+
)
|
|
488
|
+
|
|
489
|
+
x_tinker_inout_control_saddlepoint = Quantity(
|
|
490
|
+
type=bool,
|
|
491
|
+
shape=[],
|
|
492
|
+
description="""
|
|
493
|
+
tinker running environment and control parameters.
|
|
494
|
+
""",
|
|
495
|
+
)
|
|
496
|
+
|
|
497
|
+
x_tinker_inout_control_vdwtype = Quantity(
|
|
498
|
+
type=str,
|
|
499
|
+
shape=[],
|
|
500
|
+
description="""
|
|
501
|
+
tinker running environment and control parameters.
|
|
502
|
+
""",
|
|
503
|
+
)
|
|
504
|
+
|
|
505
|
+
x_tinker_inout_control_title = Quantity(
|
|
506
|
+
type=str,
|
|
507
|
+
shape=[],
|
|
508
|
+
description="""
|
|
509
|
+
tinker running environment and control parameters.
|
|
510
|
+
""",
|
|
511
|
+
)
|
|
512
|
+
|
|
513
|
+
x_tinker_inout_control_step_t = Quantity(
|
|
514
|
+
type=str,
|
|
515
|
+
shape=[],
|
|
516
|
+
description="""
|
|
517
|
+
tinker running environment and control parameters.
|
|
518
|
+
""",
|
|
519
|
+
)
|
|
520
|
+
|
|
521
|
+
x_tinker_inout_control_step_dt = Quantity(
|
|
522
|
+
type=str,
|
|
523
|
+
shape=[],
|
|
524
|
+
description="""
|
|
525
|
+
tinker running environment and control parameters.
|
|
526
|
+
""",
|
|
527
|
+
)
|
|
528
|
+
|
|
529
|
+
x_tinker_inout_control_random_number_generator_seed = Quantity(
|
|
530
|
+
type=str,
|
|
531
|
+
shape=[],
|
|
532
|
+
description="""
|
|
533
|
+
tinker running environment and control parameters.
|
|
534
|
+
""",
|
|
535
|
+
)
|
|
536
|
+
|
|
537
|
+
x_tinker_inout_control_radiusrule = Quantity(
|
|
538
|
+
type=str,
|
|
539
|
+
shape=[],
|
|
540
|
+
description="""
|
|
541
|
+
tinker running environment and control parameters.
|
|
542
|
+
""",
|
|
543
|
+
)
|
|
544
|
+
|
|
545
|
+
x_tinker_inout_control_radiustype = Quantity(
|
|
546
|
+
type=str,
|
|
547
|
+
shape=[],
|
|
548
|
+
description="""
|
|
549
|
+
tinker running environment and control parameters.
|
|
550
|
+
""",
|
|
551
|
+
)
|
|
552
|
+
|
|
553
|
+
x_tinker_inout_control_radiussize = Quantity(
|
|
554
|
+
type=str,
|
|
555
|
+
shape=[],
|
|
556
|
+
description="""
|
|
557
|
+
tinker running environment and control parameters.
|
|
558
|
+
""",
|
|
559
|
+
)
|
|
560
|
+
|
|
561
|
+
x_tinker_inout_control_epsilonrule = Quantity(
|
|
562
|
+
type=str,
|
|
563
|
+
shape=[],
|
|
564
|
+
description="""
|
|
565
|
+
tinker running environment and control parameters.
|
|
566
|
+
""",
|
|
567
|
+
)
|
|
568
|
+
|
|
569
|
+
x_tinker_inout_control_rattle = Quantity(
|
|
570
|
+
type=str,
|
|
571
|
+
shape=[],
|
|
572
|
+
description="""
|
|
573
|
+
tinker running environment and control parameters.
|
|
574
|
+
""",
|
|
575
|
+
)
|
|
576
|
+
|
|
577
|
+
x_tinker_inout_control_lambda = Quantity(
|
|
578
|
+
type=str,
|
|
579
|
+
shape=[],
|
|
580
|
+
description="""
|
|
581
|
+
tinker running environment and control parameters.
|
|
582
|
+
""",
|
|
583
|
+
)
|
|
584
|
+
|
|
585
|
+
x_tinker_inout_control_mutate = Quantity(
|
|
586
|
+
type=str,
|
|
587
|
+
shape=[],
|
|
588
|
+
description="""
|
|
589
|
+
tinker running environment and control parameters.
|
|
590
|
+
""",
|
|
591
|
+
)
|
|
592
|
+
|
|
593
|
+
x_tinker_inout_control_basin = Quantity(
|
|
594
|
+
type=str,
|
|
595
|
+
shape=[],
|
|
596
|
+
description="""
|
|
597
|
+
tinker running environment and control parameters.
|
|
598
|
+
""",
|
|
599
|
+
)
|
|
600
|
+
|
|
601
|
+
x_tinker_inout_control_pme_grid = Quantity(
|
|
602
|
+
type=str,
|
|
603
|
+
shape=[],
|
|
604
|
+
description="""
|
|
605
|
+
tinker running environment and control parameters.
|
|
606
|
+
""",
|
|
607
|
+
)
|
|
608
|
+
|
|
609
|
+
x_tinker_inout_control_pme_order = Quantity(
|
|
610
|
+
type=str,
|
|
611
|
+
shape=[],
|
|
612
|
+
description="""
|
|
613
|
+
tinker running environment and control parameters.
|
|
614
|
+
""",
|
|
615
|
+
)
|
|
616
|
+
|
|
617
|
+
x_tinker_inout_control_nstep = Quantity(
|
|
618
|
+
type=np.int32,
|
|
619
|
+
shape=[],
|
|
620
|
+
description="""
|
|
621
|
+
tinker running environment and control parameters.
|
|
622
|
+
""",
|
|
623
|
+
)
|
|
624
|
+
|
|
625
|
+
x_tinker_inout_control_initial_configuration_file = Quantity(
|
|
626
|
+
type=str,
|
|
627
|
+
shape=[],
|
|
628
|
+
description="""
|
|
629
|
+
tinker running environment and control parameters.
|
|
630
|
+
""",
|
|
631
|
+
)
|
|
632
|
+
|
|
633
|
+
x_tinker_inout_control_final_configuration_file = Quantity(
|
|
634
|
+
type=str,
|
|
635
|
+
shape=[],
|
|
636
|
+
description="""
|
|
637
|
+
tinker running environment and control parameters.
|
|
638
|
+
""",
|
|
639
|
+
)
|
|
640
|
+
|
|
641
|
+
x_tinker_inout_control_initial_trajectory_file = Quantity(
|
|
642
|
+
type=str,
|
|
643
|
+
shape=[],
|
|
644
|
+
description="""
|
|
645
|
+
tinker running environment and control parameters.
|
|
646
|
+
""",
|
|
647
|
+
)
|
|
648
|
+
|
|
649
|
+
x_tinker_inout_control_restart_file = Quantity(
|
|
650
|
+
type=str,
|
|
651
|
+
shape=[],
|
|
652
|
+
description="""
|
|
653
|
+
tinker running environment and control parameters.
|
|
654
|
+
""",
|
|
655
|
+
)
|
|
656
|
+
|
|
657
|
+
x_tinker_inout_control_archive_file = Quantity(
|
|
658
|
+
type=str,
|
|
659
|
+
shape=[],
|
|
660
|
+
description="""
|
|
661
|
+
tinker running environment and control parameters.
|
|
662
|
+
""",
|
|
663
|
+
)
|
|
664
|
+
|
|
665
|
+
x_tinker_inout_control_force_field_file = Quantity(
|
|
666
|
+
type=str,
|
|
667
|
+
shape=[],
|
|
668
|
+
description="""
|
|
669
|
+
tinker running environment and control parameters.
|
|
670
|
+
""",
|
|
671
|
+
)
|
|
672
|
+
|
|
673
|
+
x_tinker_inout_control_key_file = Quantity(
|
|
674
|
+
type=str,
|
|
675
|
+
shape=[],
|
|
676
|
+
description="""
|
|
677
|
+
tinker running environment and control parameters.
|
|
678
|
+
""",
|
|
679
|
+
)
|
|
680
|
+
|
|
681
|
+
x_tinker_inout_control_coordinate_file_list = Quantity(
|
|
682
|
+
type=str,
|
|
683
|
+
shape=[],
|
|
684
|
+
description="""
|
|
685
|
+
tinker running environment and control parameters.
|
|
686
|
+
""",
|
|
687
|
+
)
|
|
688
|
+
|
|
689
|
+
x_tinker_inout_control_structure_file = Quantity(
|
|
690
|
+
type=str,
|
|
691
|
+
shape=[],
|
|
692
|
+
description="""
|
|
693
|
+
tinker running environment and control parameters.
|
|
694
|
+
""",
|
|
695
|
+
)
|
|
696
|
+
|
|
697
|
+
x_tinker_inout_control_parameter_file = Quantity(
|
|
698
|
+
type=str,
|
|
699
|
+
shape=[],
|
|
700
|
+
description="""
|
|
701
|
+
tinker running environment and control parameters.
|
|
702
|
+
""",
|
|
703
|
+
)
|
|
704
|
+
|
|
705
|
+
x_tinker_inout_control_input_file = Quantity(
|
|
706
|
+
type=str,
|
|
707
|
+
shape=[],
|
|
708
|
+
description="""
|
|
709
|
+
tinker running environment and control parameters.
|
|
710
|
+
""",
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
x_tinker_inout_control_topology_file = Quantity(
|
|
714
|
+
type=str,
|
|
715
|
+
shape=[],
|
|
716
|
+
description="""
|
|
717
|
+
tinker running environment and control parameters.
|
|
718
|
+
""",
|
|
719
|
+
)
|
|
720
|
+
|
|
721
|
+
x_tinker_inout_control_configuration_file = Quantity(
|
|
722
|
+
type=str,
|
|
723
|
+
shape=[],
|
|
724
|
+
description="""
|
|
725
|
+
tinker running environment and control parameters.
|
|
726
|
+
""",
|
|
727
|
+
)
|
|
728
|
+
|
|
729
|
+
x_tinker_inout_control_number_of_parameter_files = Quantity(
|
|
730
|
+
type=np.int32,
|
|
731
|
+
shape=[],
|
|
732
|
+
description="""
|
|
733
|
+
tinker running environment and control parameters.
|
|
734
|
+
""",
|
|
735
|
+
)
|
|
736
|
+
|
|
737
|
+
x_tinker_inout_control_parameter_files = Quantity(
|
|
738
|
+
type=str,
|
|
739
|
+
shape=['x_tinker_inout_control_number_of_parameter_files'],
|
|
740
|
+
description="""
|
|
741
|
+
tinker running environment and control parameters.
|
|
742
|
+
""",
|
|
743
|
+
)
|
|
744
|
+
|
|
745
|
+
x_tinker_section_input_output_files = SubSection(
|
|
746
|
+
sub_section=SectionProxy('x_tinker_section_input_output_files'), repeats=True
|
|
747
|
+
)
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
class x_tinker_section_atom_to_atom_type_ref(MSection):
|
|
751
|
+
"""
|
|
752
|
+
Section to store atom label to atom type definition list
|
|
753
|
+
"""
|
|
754
|
+
|
|
755
|
+
m_def = Section(validate=False)
|
|
756
|
+
|
|
757
|
+
x_tinker_atom_to_atom_type_ref = Quantity(
|
|
758
|
+
type=np.int64,
|
|
759
|
+
shape=['number_of_atoms_per_type'],
|
|
760
|
+
description="""
|
|
761
|
+
Reference to the atoms of each atom type.
|
|
762
|
+
""",
|
|
763
|
+
)
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
class x_tinker_section_single_configuration_calculation(MSection):
|
|
767
|
+
"""
|
|
768
|
+
section for gathering values for MD steps
|
|
769
|
+
"""
|
|
770
|
+
|
|
771
|
+
m_def = Section(validate=False)
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
class System(runschema.system.System):
|
|
775
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
776
|
+
|
|
777
|
+
x_tinker_atom_positions_image_index = Quantity(
|
|
778
|
+
type=np.int32,
|
|
779
|
+
shape=['number_of_atoms', 3],
|
|
780
|
+
unit='dimensionless',
|
|
781
|
+
description="""
|
|
782
|
+
PBC image flag index.
|
|
783
|
+
""",
|
|
784
|
+
)
|
|
785
|
+
|
|
786
|
+
x_tinker_atom_positions_scaled = Quantity(
|
|
787
|
+
type=np.float64,
|
|
788
|
+
shape=['number_of_atoms', 3],
|
|
789
|
+
unit='dimensionless',
|
|
790
|
+
description="""
|
|
791
|
+
Position of the atoms in a scaled format [0, 1].
|
|
792
|
+
""",
|
|
793
|
+
)
|
|
794
|
+
|
|
795
|
+
x_tinker_atom_positions_wrapped = Quantity(
|
|
796
|
+
type=np.float64,
|
|
797
|
+
shape=['number_of_atoms', 3],
|
|
798
|
+
unit='meter',
|
|
799
|
+
description="""
|
|
800
|
+
Position of the atoms wrapped back to the periodic box.
|
|
801
|
+
""",
|
|
802
|
+
)
|
|
803
|
+
|
|
804
|
+
x_tinker_lattice_lengths = Quantity(
|
|
805
|
+
type=np.float64,
|
|
806
|
+
shape=[3],
|
|
807
|
+
description="""
|
|
808
|
+
Lattice dimensions in a vector. Vector includes [a, b, c] lengths.
|
|
809
|
+
""",
|
|
810
|
+
)
|
|
811
|
+
|
|
812
|
+
x_tinker_lattice_angles = Quantity(
|
|
813
|
+
type=np.float64,
|
|
814
|
+
shape=[3],
|
|
815
|
+
description="""
|
|
816
|
+
Angles of lattice vectors. Vector includes [alpha, beta, gamma] in degrees.
|
|
817
|
+
""",
|
|
818
|
+
)
|
|
819
|
+
|
|
820
|
+
x_tinker_dummy = Quantity(
|
|
821
|
+
type=str,
|
|
822
|
+
shape=[],
|
|
823
|
+
description="""
|
|
824
|
+
dummy
|
|
825
|
+
""",
|
|
826
|
+
)
|
|
827
|
+
|
|
828
|
+
x_tinker_mdin_finline = Quantity(
|
|
829
|
+
type=str,
|
|
830
|
+
shape=[],
|
|
831
|
+
description="""
|
|
832
|
+
finline in mdin
|
|
833
|
+
""",
|
|
834
|
+
)
|
|
835
|
+
|
|
836
|
+
x_tinker_traj_timestep_store = Quantity(
|
|
837
|
+
type=str,
|
|
838
|
+
shape=[],
|
|
839
|
+
description="""
|
|
840
|
+
tmp
|
|
841
|
+
""",
|
|
842
|
+
)
|
|
843
|
+
|
|
844
|
+
x_tinker_traj_number_of_atoms_store = Quantity(
|
|
845
|
+
type=str,
|
|
846
|
+
shape=[],
|
|
847
|
+
description="""
|
|
848
|
+
tmp
|
|
849
|
+
""",
|
|
850
|
+
)
|
|
851
|
+
|
|
852
|
+
x_tinker_traj_box_bound_store = Quantity(
|
|
853
|
+
type=str,
|
|
854
|
+
shape=[],
|
|
855
|
+
description="""
|
|
856
|
+
tmp
|
|
857
|
+
""",
|
|
858
|
+
)
|
|
859
|
+
|
|
860
|
+
x_tinker_traj_box_bounds_store = Quantity(
|
|
861
|
+
type=str,
|
|
862
|
+
shape=[],
|
|
863
|
+
description="""
|
|
864
|
+
tmp
|
|
865
|
+
""",
|
|
866
|
+
)
|
|
867
|
+
|
|
868
|
+
x_tinker_traj_variables_store = Quantity(
|
|
869
|
+
type=str,
|
|
870
|
+
shape=[],
|
|
871
|
+
description="""
|
|
872
|
+
tmp
|
|
873
|
+
""",
|
|
874
|
+
)
|
|
875
|
+
|
|
876
|
+
x_tinker_traj_atoms_store = Quantity(
|
|
877
|
+
type=str,
|
|
878
|
+
shape=[],
|
|
879
|
+
description="""
|
|
880
|
+
tmp
|
|
881
|
+
""",
|
|
882
|
+
)
|
|
883
|
+
|
|
884
|
+
|
|
885
|
+
class MolecularDynamics(simulationworkflowschema.MolecularDynamics):
|
|
886
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
887
|
+
|
|
888
|
+
x_tinker_barostat_target_pressure = Quantity(
|
|
889
|
+
type=np.float64,
|
|
890
|
+
shape=[],
|
|
891
|
+
unit='pascal',
|
|
892
|
+
description="""
|
|
893
|
+
MD barostat target pressure.
|
|
894
|
+
""",
|
|
895
|
+
)
|
|
896
|
+
|
|
897
|
+
x_tinker_barostat_tau = Quantity(
|
|
898
|
+
type=np.float64,
|
|
899
|
+
shape=[],
|
|
900
|
+
description="""
|
|
901
|
+
MD barostat relaxation time.
|
|
902
|
+
""",
|
|
903
|
+
)
|
|
904
|
+
|
|
905
|
+
x_tinker_barostat_type = Quantity(
|
|
906
|
+
type=str,
|
|
907
|
+
shape=[],
|
|
908
|
+
description="""
|
|
909
|
+
MD barostat type, valid values are defined in the barostat_type wiki page.
|
|
910
|
+
""",
|
|
911
|
+
)
|
|
912
|
+
|
|
913
|
+
x_tinker_integrator_dt = Quantity(
|
|
914
|
+
type=np.float64,
|
|
915
|
+
shape=[],
|
|
916
|
+
unit='second',
|
|
917
|
+
description="""
|
|
918
|
+
MD integration time step.
|
|
919
|
+
""",
|
|
920
|
+
)
|
|
921
|
+
|
|
922
|
+
x_tinker_integrator_type = Quantity(
|
|
923
|
+
type=str,
|
|
924
|
+
shape=[],
|
|
925
|
+
description="""
|
|
926
|
+
MD integrator type, valid values are defined in the integrator_type wiki page.
|
|
927
|
+
""",
|
|
928
|
+
)
|
|
929
|
+
|
|
930
|
+
x_tinker_periodicity_type = Quantity(
|
|
931
|
+
type=str,
|
|
932
|
+
shape=[],
|
|
933
|
+
description="""
|
|
934
|
+
Periodic boundary condition type in the sampling (non-PBC or PBC).
|
|
935
|
+
""",
|
|
936
|
+
)
|
|
937
|
+
|
|
938
|
+
x_tinker_langevin_gamma = Quantity(
|
|
939
|
+
type=np.float64,
|
|
940
|
+
shape=[],
|
|
941
|
+
unit='second',
|
|
942
|
+
description="""
|
|
943
|
+
Langevin thermostat damping factor.
|
|
944
|
+
""",
|
|
945
|
+
)
|
|
946
|
+
|
|
947
|
+
x_tinker_number_of_steps_requested = Quantity(
|
|
948
|
+
type=np.float64,
|
|
949
|
+
shape=[],
|
|
950
|
+
description="""
|
|
951
|
+
Number of requested MD integration time steps.
|
|
952
|
+
""",
|
|
953
|
+
)
|
|
954
|
+
|
|
955
|
+
x_tinker_thermostat_level = Quantity(
|
|
956
|
+
type=str,
|
|
957
|
+
shape=[],
|
|
958
|
+
description="""
|
|
959
|
+
MD thermostat level (see wiki: single, multiple, regional).
|
|
960
|
+
""",
|
|
961
|
+
)
|
|
962
|
+
|
|
963
|
+
x_tinker_thermostat_target_temperature = Quantity(
|
|
964
|
+
type=np.float64,
|
|
965
|
+
shape=[],
|
|
966
|
+
unit='kelvin',
|
|
967
|
+
description="""
|
|
968
|
+
MD thermostat target temperature.
|
|
969
|
+
""",
|
|
970
|
+
)
|
|
971
|
+
|
|
972
|
+
x_tinker_thermostat_tau = Quantity(
|
|
973
|
+
type=np.float64,
|
|
974
|
+
shape=[],
|
|
975
|
+
unit='second',
|
|
976
|
+
description="""
|
|
977
|
+
MD thermostat relaxation time.
|
|
978
|
+
""",
|
|
979
|
+
)
|
|
980
|
+
|
|
981
|
+
x_tinker_thermostat_type = Quantity(
|
|
982
|
+
type=str,
|
|
983
|
+
shape=[],
|
|
984
|
+
description="""
|
|
985
|
+
MD thermostat type, valid values are defined in the thermostat_type wiki page.
|
|
986
|
+
""",
|
|
987
|
+
)
|
|
988
|
+
|
|
989
|
+
|
|
990
|
+
class GeometryOptimization(simulationworkflowschema.GeometryOptimization):
|
|
991
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
992
|
+
|
|
993
|
+
x_tiner_final_function_value = Quantity(
|
|
994
|
+
type=np.float64,
|
|
995
|
+
shape=[],
|
|
996
|
+
unit='newton',
|
|
997
|
+
description="""
|
|
998
|
+
Final value of the energy.
|
|
999
|
+
""",
|
|
1000
|
+
)
|
|
1001
|
+
|
|
1002
|
+
x_tinker_final_rms_gradient = Quantity(
|
|
1003
|
+
type=np.float64,
|
|
1004
|
+
shape=[],
|
|
1005
|
+
unit='newton',
|
|
1006
|
+
description="""
|
|
1007
|
+
Tolerance value of the RMS gradient for structure minimization.
|
|
1008
|
+
""",
|
|
1009
|
+
)
|
|
1010
|
+
|
|
1011
|
+
x_tinker_final_gradient_norm = Quantity(
|
|
1012
|
+
type=np.float64,
|
|
1013
|
+
shape=[],
|
|
1014
|
+
unit='newton',
|
|
1015
|
+
description="""
|
|
1016
|
+
Tolerance value of the RMS gradient for structure minimization.
|
|
1017
|
+
""",
|
|
1018
|
+
)
|
|
1019
|
+
|
|
1020
|
+
x_tinker_final_gradient_norm = Quantity(
|
|
1021
|
+
type=np.float64,
|
|
1022
|
+
shape=[],
|
|
1023
|
+
unit='newton',
|
|
1024
|
+
description="""
|
|
1025
|
+
Tolerance value of the RMS gradient for structure minimization.
|
|
1026
|
+
""",
|
|
1027
|
+
)
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
class AtomParameters(runschema.method.AtomParameters):
|
|
1031
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
1032
|
+
|
|
1033
|
+
x_tinker_atom_name = Quantity(
|
|
1034
|
+
type=str,
|
|
1035
|
+
shape=[],
|
|
1036
|
+
description="""
|
|
1037
|
+
Atom name of an atom in topology definition.
|
|
1038
|
+
""",
|
|
1039
|
+
)
|
|
1040
|
+
|
|
1041
|
+
x_tinker_atom_type = Quantity(
|
|
1042
|
+
type=str,
|
|
1043
|
+
shape=[],
|
|
1044
|
+
description="""
|
|
1045
|
+
Atom type of an atom in topology definition.
|
|
1046
|
+
""",
|
|
1047
|
+
)
|
|
1048
|
+
|
|
1049
|
+
x_tinker_atom_resid = Quantity(
|
|
1050
|
+
type=np.int32,
|
|
1051
|
+
shape=[],
|
|
1052
|
+
description="""
|
|
1053
|
+
""",
|
|
1054
|
+
)
|
|
1055
|
+
|
|
1056
|
+
x_tinker_atom_element = Quantity(
|
|
1057
|
+
type=str,
|
|
1058
|
+
shape=[],
|
|
1059
|
+
description="""
|
|
1060
|
+
Atom type of an atom in topology definition.
|
|
1061
|
+
""",
|
|
1062
|
+
)
|
|
1063
|
+
|
|
1064
|
+
x_tinker_atom_type_element = Quantity(
|
|
1065
|
+
type=str,
|
|
1066
|
+
shape=[],
|
|
1067
|
+
description="""
|
|
1068
|
+
Element symbol of an atom type.
|
|
1069
|
+
""",
|
|
1070
|
+
)
|
|
1071
|
+
|
|
1072
|
+
x_tinker_atom_type_radius = Quantity(
|
|
1073
|
+
type=np.float64,
|
|
1074
|
+
shape=[],
|
|
1075
|
+
description="""
|
|
1076
|
+
van der Waals radius of an atom type.
|
|
1077
|
+
""",
|
|
1078
|
+
)
|
|
1079
|
+
|
|
1080
|
+
number_of_atoms_per_type = Quantity(
|
|
1081
|
+
type=int,
|
|
1082
|
+
shape=[],
|
|
1083
|
+
description="""
|
|
1084
|
+
Number of atoms involved in this type.
|
|
1085
|
+
""",
|
|
1086
|
+
)
|
|
1087
|
+
|
|
1088
|
+
|
|
1089
|
+
class Interaction(runschema.method.Interaction):
|
|
1090
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
1091
|
+
|
|
1092
|
+
x_tinker_interaction_atom_to_atom_type_ref = Quantity(
|
|
1093
|
+
type=runschema.method.AtomParameters,
|
|
1094
|
+
shape=['number_of_atoms_per_interaction'],
|
|
1095
|
+
description="""
|
|
1096
|
+
Reference to the atom type of each interaction atoms.
|
|
1097
|
+
""",
|
|
1098
|
+
)
|
|
1099
|
+
|
|
1100
|
+
x_tinker_number_of_defined_pair_interactions = Quantity(
|
|
1101
|
+
type=np.int32,
|
|
1102
|
+
shape=[],
|
|
1103
|
+
description="""
|
|
1104
|
+
Number of defined pair interactions (L-J pairs).
|
|
1105
|
+
""",
|
|
1106
|
+
)
|
|
1107
|
+
|
|
1108
|
+
x_tinker_pair_interaction_atom_type_ref = Quantity(
|
|
1109
|
+
type=runschema.method.AtomParameters,
|
|
1110
|
+
shape=[
|
|
1111
|
+
'x_tinker_number_of_defined_pair_interactions',
|
|
1112
|
+
'number_of_atoms_per_interaction',
|
|
1113
|
+
],
|
|
1114
|
+
description="""
|
|
1115
|
+
Reference to the atom type for pair interactions.
|
|
1116
|
+
""",
|
|
1117
|
+
)
|
|
1118
|
+
|
|
1119
|
+
x_tinker_pair_interaction_parameters = Quantity(
|
|
1120
|
+
type=np.float64,
|
|
1121
|
+
shape=['x_tinker_number_of_defined_pair_interactions', 2],
|
|
1122
|
+
description="""
|
|
1123
|
+
Pair interactions parameters.
|
|
1124
|
+
""",
|
|
1125
|
+
)
|
|
1126
|
+
|
|
1127
|
+
x_tinker_molecule_interaction_atom_to_atom_type_ref = Quantity(
|
|
1128
|
+
type=runschema.method.AtomParameters,
|
|
1129
|
+
shape=['number_of_atoms_per_interaction'],
|
|
1130
|
+
description="""
|
|
1131
|
+
Reference to the atom type of each molecule interaction atoms.
|
|
1132
|
+
""",
|
|
1133
|
+
)
|
|
1134
|
+
|
|
1135
|
+
x_tinker_number_of_defined_molecule_pair_interactions = Quantity(
|
|
1136
|
+
type=np.int32,
|
|
1137
|
+
shape=[],
|
|
1138
|
+
description="""
|
|
1139
|
+
Number of defined pair interactions within a molecule (L-J pairs).
|
|
1140
|
+
""",
|
|
1141
|
+
)
|
|
1142
|
+
|
|
1143
|
+
x_tinker_pair_molecule_interaction_parameters = Quantity(
|
|
1144
|
+
type=np.float64,
|
|
1145
|
+
shape=['number_of_defined_molecule_pair_interactions', 2],
|
|
1146
|
+
description="""
|
|
1147
|
+
Molecule pair interactions parameters.
|
|
1148
|
+
""",
|
|
1149
|
+
)
|
|
1150
|
+
|
|
1151
|
+
x_tinker_pair_molecule_interaction_to_atom_type_ref = Quantity(
|
|
1152
|
+
type=runschema.method.AtomParameters,
|
|
1153
|
+
shape=[
|
|
1154
|
+
'x_tinker_number_of_defined_pair_interactions',
|
|
1155
|
+
'number_of_atoms_per_interaction',
|
|
1156
|
+
],
|
|
1157
|
+
description="""
|
|
1158
|
+
Reference to the atom type for pair interactions within a molecule.
|
|
1159
|
+
""",
|
|
1160
|
+
)
|
|
1161
|
+
|
|
1162
|
+
|
|
1163
|
+
class Run(runschema.run.Run):
|
|
1164
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
1165
|
+
|
|
1166
|
+
x_tinker_program_version_date = Quantity(
|
|
1167
|
+
type=str,
|
|
1168
|
+
shape=[],
|
|
1169
|
+
description="""
|
|
1170
|
+
Program version date.
|
|
1171
|
+
""",
|
|
1172
|
+
)
|
|
1173
|
+
|
|
1174
|
+
x_tinker_parallel_task_nr = Quantity(
|
|
1175
|
+
type=np.float64,
|
|
1176
|
+
shape=[],
|
|
1177
|
+
description="""
|
|
1178
|
+
Program task no.
|
|
1179
|
+
""",
|
|
1180
|
+
)
|
|
1181
|
+
|
|
1182
|
+
x_tinker_build_osarch = Quantity(
|
|
1183
|
+
type=str,
|
|
1184
|
+
shape=[],
|
|
1185
|
+
description="""
|
|
1186
|
+
Program Build OS/ARCH
|
|
1187
|
+
""",
|
|
1188
|
+
)
|
|
1189
|
+
|
|
1190
|
+
x_tinker_output_created_by_user = Quantity(
|
|
1191
|
+
type=str,
|
|
1192
|
+
shape=[],
|
|
1193
|
+
description="""
|
|
1194
|
+
Output file creator
|
|
1195
|
+
""",
|
|
1196
|
+
)
|
|
1197
|
+
|
|
1198
|
+
x_tinker_most_severe_warning_level = Quantity(
|
|
1199
|
+
type=str,
|
|
1200
|
+
shape=[],
|
|
1201
|
+
description="""
|
|
1202
|
+
Highest tinker warning level in the run.
|
|
1203
|
+
""",
|
|
1204
|
+
)
|
|
1205
|
+
|
|
1206
|
+
x_tinker_program_build_date = Quantity(
|
|
1207
|
+
type=str,
|
|
1208
|
+
shape=[],
|
|
1209
|
+
description="""
|
|
1210
|
+
Program Build date
|
|
1211
|
+
""",
|
|
1212
|
+
)
|
|
1213
|
+
|
|
1214
|
+
x_tinker_program_citation = Quantity(
|
|
1215
|
+
type=str,
|
|
1216
|
+
shape=[],
|
|
1217
|
+
description="""
|
|
1218
|
+
Program citations
|
|
1219
|
+
""",
|
|
1220
|
+
)
|
|
1221
|
+
|
|
1222
|
+
x_tinker_program_copyright = Quantity(
|
|
1223
|
+
type=str,
|
|
1224
|
+
shape=[],
|
|
1225
|
+
description="""
|
|
1226
|
+
Program copyright
|
|
1227
|
+
""",
|
|
1228
|
+
)
|
|
1229
|
+
|
|
1230
|
+
x_tinker_number_of_tasks = Quantity(
|
|
1231
|
+
type=np.float64,
|
|
1232
|
+
shape=[],
|
|
1233
|
+
description="""
|
|
1234
|
+
Number of tasks in parallel program (MPI).
|
|
1235
|
+
""",
|
|
1236
|
+
)
|
|
1237
|
+
|
|
1238
|
+
x_tinker_program_module_version = Quantity(
|
|
1239
|
+
type=str,
|
|
1240
|
+
shape=[],
|
|
1241
|
+
description="""
|
|
1242
|
+
tinker program module version.
|
|
1243
|
+
""",
|
|
1244
|
+
)
|
|
1245
|
+
|
|
1246
|
+
x_tinker_program_license = Quantity(
|
|
1247
|
+
type=str,
|
|
1248
|
+
shape=[],
|
|
1249
|
+
description="""
|
|
1250
|
+
tinker program license.
|
|
1251
|
+
""",
|
|
1252
|
+
)
|
|
1253
|
+
|
|
1254
|
+
x_tinker_xlo_xhi = Quantity(
|
|
1255
|
+
type=str,
|
|
1256
|
+
shape=[],
|
|
1257
|
+
description="""
|
|
1258
|
+
test
|
|
1259
|
+
""",
|
|
1260
|
+
)
|
|
1261
|
+
|
|
1262
|
+
x_tinker_data_file_store = Quantity(
|
|
1263
|
+
type=str,
|
|
1264
|
+
shape=[],
|
|
1265
|
+
description="""
|
|
1266
|
+
Filename of data file
|
|
1267
|
+
""",
|
|
1268
|
+
)
|
|
1269
|
+
|
|
1270
|
+
x_tinker_program_working_path = Quantity(
|
|
1271
|
+
type=str,
|
|
1272
|
+
shape=[],
|
|
1273
|
+
description="""
|
|
1274
|
+
tmp
|
|
1275
|
+
""",
|
|
1276
|
+
)
|
|
1277
|
+
|
|
1278
|
+
x_tinker_program_execution_host = Quantity(
|
|
1279
|
+
type=str,
|
|
1280
|
+
shape=[],
|
|
1281
|
+
description="""
|
|
1282
|
+
tmp
|
|
1283
|
+
""",
|
|
1284
|
+
)
|
|
1285
|
+
|
|
1286
|
+
x_tinker_program_execution_path = Quantity(
|
|
1287
|
+
type=str,
|
|
1288
|
+
shape=[],
|
|
1289
|
+
description="""
|
|
1290
|
+
tmp
|
|
1291
|
+
""",
|
|
1292
|
+
)
|
|
1293
|
+
|
|
1294
|
+
x_tinker_program_module = Quantity(
|
|
1295
|
+
type=str,
|
|
1296
|
+
shape=[],
|
|
1297
|
+
description="""
|
|
1298
|
+
tmp
|
|
1299
|
+
""",
|
|
1300
|
+
)
|
|
1301
|
+
|
|
1302
|
+
x_tinker_program_execution_date = Quantity(
|
|
1303
|
+
type=str,
|
|
1304
|
+
shape=[],
|
|
1305
|
+
description="""
|
|
1306
|
+
tmp
|
|
1307
|
+
""",
|
|
1308
|
+
)
|
|
1309
|
+
|
|
1310
|
+
x_tinker_program_execution_time = Quantity(
|
|
1311
|
+
type=str,
|
|
1312
|
+
shape=[],
|
|
1313
|
+
description="""
|
|
1314
|
+
tmp
|
|
1315
|
+
""",
|
|
1316
|
+
)
|
|
1317
|
+
|
|
1318
|
+
x_tinker_mdin_header = Quantity(
|
|
1319
|
+
type=str,
|
|
1320
|
+
shape=[],
|
|
1321
|
+
description="""
|
|
1322
|
+
tmp
|
|
1323
|
+
""",
|
|
1324
|
+
)
|
|
1325
|
+
|
|
1326
|
+
x_tinker_mdin_wt = Quantity(
|
|
1327
|
+
type=str,
|
|
1328
|
+
shape=[],
|
|
1329
|
+
description="""
|
|
1330
|
+
tmp
|
|
1331
|
+
""",
|
|
1332
|
+
)
|
|
1333
|
+
|
|
1334
|
+
x_tinker_section_control_parameters = SubSection(
|
|
1335
|
+
sub_section=SectionProxy('x_tinker_section_control_parameters'), repeats=True
|
|
1336
|
+
)
|
|
1337
|
+
|
|
1338
|
+
x_tinker_control_parameters = Quantity(
|
|
1339
|
+
type=JSON,
|
|
1340
|
+
shape=[],
|
|
1341
|
+
description="""
|
|
1342
|
+
Parameters read from key file""",
|
|
1343
|
+
)
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
class Calculation(runschema.calculation.Calculation):
|
|
1347
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
1348
|
+
|
|
1349
|
+
x_tinker_section_single_configuration_calculation = SubSection(
|
|
1350
|
+
sub_section=SectionProxy('x_tinker_section_single_configuration_calculation'),
|
|
1351
|
+
repeats=True,
|
|
1352
|
+
)
|
|
1353
|
+
|
|
1354
|
+
|
|
1355
|
+
class VibrationalFrequencies(runschema.calculation.VibrationalFrequencies):
|
|
1356
|
+
m_def = Section(validate=False, extends_base_section=True)
|
|
1357
|
+
|
|
1358
|
+
x_tinker_eigenvalues = Quantity(
|
|
1359
|
+
type=np.float64,
|
|
1360
|
+
shape=['n_frequencies'],
|
|
1361
|
+
description="""
|
|
1362
|
+
""",
|
|
1363
|
+
)
|