nomad-parser-plugins-workflow 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.
Files changed (58) hide show
  1. nomad_parser_plugins_workflow-1.0.dist-info/LICENSE +202 -0
  2. nomad_parser_plugins_workflow-1.0.dist-info/METADATA +319 -0
  3. nomad_parser_plugins_workflow-1.0.dist-info/RECORD +58 -0
  4. nomad_parser_plugins_workflow-1.0.dist-info/WHEEL +5 -0
  5. nomad_parser_plugins_workflow-1.0.dist-info/entry_points.txt +11 -0
  6. nomad_parser_plugins_workflow-1.0.dist-info/top_level.txt +1 -0
  7. workflowparsers/__init__.py +314 -0
  8. workflowparsers/aflow/__init__.py +19 -0
  9. workflowparsers/aflow/__main__.py +31 -0
  10. workflowparsers/aflow/metainfo/__init__.py +19 -0
  11. workflowparsers/aflow/metainfo/aflow.py +1240 -0
  12. workflowparsers/aflow/parser.py +741 -0
  13. workflowparsers/asr/__init__.py +19 -0
  14. workflowparsers/asr/__main__.py +31 -0
  15. workflowparsers/asr/metainfo/__init__.py +19 -0
  16. workflowparsers/asr/metainfo/asr.py +306 -0
  17. workflowparsers/asr/parser.py +266 -0
  18. workflowparsers/atomate/__init__.py +19 -0
  19. workflowparsers/atomate/__main__.py +31 -0
  20. workflowparsers/atomate/metainfo/__init__.py +19 -0
  21. workflowparsers/atomate/metainfo/atomate.py +395 -0
  22. workflowparsers/atomate/parser.py +357 -0
  23. workflowparsers/elastic/__init__.py +19 -0
  24. workflowparsers/elastic/__main__.py +31 -0
  25. workflowparsers/elastic/metainfo/__init__.py +19 -0
  26. workflowparsers/elastic/metainfo/elastic.py +364 -0
  27. workflowparsers/elastic/parser.py +798 -0
  28. workflowparsers/fhivibes/__init__.py +19 -0
  29. workflowparsers/fhivibes/__main__.py +31 -0
  30. workflowparsers/fhivibes/metainfo/__init__.py +19 -0
  31. workflowparsers/fhivibes/metainfo/fhi_vibes.py +898 -0
  32. workflowparsers/fhivibes/parser.py +566 -0
  33. workflowparsers/lobster/__init__.py +19 -0
  34. workflowparsers/lobster/__main__.py +31 -0
  35. workflowparsers/lobster/metainfo/__init__.py +19 -0
  36. workflowparsers/lobster/metainfo/lobster.py +446 -0
  37. workflowparsers/lobster/parser.py +618 -0
  38. workflowparsers/phonopy/__init__.py +19 -0
  39. workflowparsers/phonopy/__main__.py +31 -0
  40. workflowparsers/phonopy/calculator.py +260 -0
  41. workflowparsers/phonopy/metainfo/__init__.py +19 -0
  42. workflowparsers/phonopy/metainfo/phonopy.py +83 -0
  43. workflowparsers/phonopy/parser.py +583 -0
  44. workflowparsers/quantum_espresso_epw/__init__.py +19 -0
  45. workflowparsers/quantum_espresso_epw/__main__.py +31 -0
  46. workflowparsers/quantum_espresso_epw/metainfo/__init__.py +19 -0
  47. workflowparsers/quantum_espresso_epw/metainfo/quantum_espresso_epw.py +579 -0
  48. workflowparsers/quantum_espresso_epw/parser.py +583 -0
  49. workflowparsers/quantum_espresso_phonon/__init__.py +19 -0
  50. workflowparsers/quantum_espresso_phonon/__main__.py +31 -0
  51. workflowparsers/quantum_espresso_phonon/metainfo/__init__.py +19 -0
  52. workflowparsers/quantum_espresso_phonon/metainfo/quantum_espresso_phonon.py +389 -0
  53. workflowparsers/quantum_espresso_phonon/parser.py +483 -0
  54. workflowparsers/quantum_espresso_xspectra/__init__.py +19 -0
  55. workflowparsers/quantum_espresso_xspectra/__main__.py +31 -0
  56. workflowparsers/quantum_espresso_xspectra/metainfo/__init__.py +19 -0
  57. workflowparsers/quantum_espresso_xspectra/metainfo/quantum_espresso_xspectra.py +290 -0
  58. workflowparsers/quantum_espresso_xspectra/parser.py +586 -0
@@ -0,0 +1,389 @@
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
+
21
+ from nomad.metainfo import ( # pylint: disable=unused-import
22
+ MSection,
23
+ MCategory,
24
+ Category,
25
+ Package,
26
+ Quantity,
27
+ Section,
28
+ SubSection,
29
+ SectionProxy,
30
+ Reference,
31
+ JSON,
32
+ )
33
+ import runschema.run # pylint: disable=unused-import
34
+ import runschema.calculation # pylint: disable=unused-import
35
+ import runschema.method # pylint: disable=unused-import
36
+ import runschema.system # pylint: disable=unused-import
37
+
38
+
39
+ m_package = Package()
40
+
41
+
42
+ class x_qe_phonon_n_parallel(MSection):
43
+ m_def = Section(validate=False)
44
+
45
+ x_qe_phonon_n_parallel_min = Quantity(
46
+ type=np.float64,
47
+ shape=[3],
48
+ description="""
49
+ """,
50
+ )
51
+
52
+ x_qe_phonon_n_parallel_max = Quantity(
53
+ type=np.float64,
54
+ shape=[3],
55
+ description="""
56
+ """,
57
+ )
58
+
59
+ x_qe_phonon_n_parallel_sum = Quantity(
60
+ type=np.float64,
61
+ shape=[3],
62
+ description="""
63
+ """,
64
+ )
65
+
66
+
67
+ class Method(runschema.method.Method):
68
+ m_def = Section(validate=False, extends_base_section=True)
69
+
70
+ x_qe_phonon_kinetic_energy_cutoff = Quantity(
71
+ type=np.float64,
72
+ shape=[],
73
+ unit='joule',
74
+ description="""
75
+ """,
76
+ )
77
+
78
+ x_qe_phonon_charge_density_cutoff = Quantity(
79
+ type=np.float64,
80
+ shape=[],
81
+ unit='joule',
82
+ description="""
83
+ """,
84
+ )
85
+
86
+ x_qe_phonon_convergence_threshold = Quantity(
87
+ type=np.float64,
88
+ shape=[],
89
+ description="""
90
+ """,
91
+ )
92
+
93
+ x_qe_phonon_beta = Quantity(
94
+ type=np.float64,
95
+ shape=[],
96
+ description="""
97
+ """,
98
+ )
99
+
100
+ x_qe_phonon_exchange_correlation = Quantity(
101
+ type=str,
102
+ shape=[],
103
+ description="""
104
+ """,
105
+ )
106
+
107
+ x_qe_phonon_n_kohn_sham_states = Quantity(
108
+ type=np.int32,
109
+ shape=[],
110
+ description="""
111
+ """,
112
+ )
113
+
114
+ x_qe_phonon_parameters = Quantity(
115
+ type=JSON,
116
+ shape=[],
117
+ description="""
118
+ """,
119
+ )
120
+
121
+ x_qe_phonon_fft_g_cutoff = Quantity(
122
+ type=np.float64,
123
+ shape=[],
124
+ description="""
125
+ """,
126
+ )
127
+
128
+ x_qe_phonon_fft_g_vectors = Quantity(
129
+ type=np.int32,
130
+ shape=[],
131
+ description="""
132
+ """,
133
+ )
134
+
135
+ x_qe_phonon_fft_grid = Quantity(
136
+ type=np.int32,
137
+ shape=[3],
138
+ description="""
139
+ """,
140
+ )
141
+
142
+ x_qe_phonon_smooth_g_cutoff = Quantity(
143
+ type=np.float64,
144
+ shape=[],
145
+ description="""
146
+ """,
147
+ )
148
+
149
+ x_qe_phonon_smooth_g_vectors = Quantity(
150
+ type=np.int32,
151
+ shape=[],
152
+ description="""
153
+ """,
154
+ )
155
+
156
+ x_qe_phonon_smooth_grid = Quantity(
157
+ type=np.int32,
158
+ shape=[3],
159
+ description="""
160
+ """,
161
+ )
162
+
163
+ x_qe_phonon_n_kpoints = Quantity(
164
+ type=np.int32,
165
+ shape=[],
166
+ description="""
167
+ """,
168
+ )
169
+
170
+ x_qe_phonon_alpha_ewald = Quantity(
171
+ type=np.float64,
172
+ shape=[],
173
+ description="""
174
+ """,
175
+ )
176
+
177
+ x_qe_phonon_negative_rho = Quantity(
178
+ type=np.float64,
179
+ shape=[2],
180
+ description="""
181
+ """,
182
+ )
183
+
184
+ x_qe_phonon_n_parallel_sticks = SubSection(sub_section=x_qe_phonon_n_parallel.m_def)
185
+
186
+ x_qe_phonon_n_parallel_g_vectors = SubSection(
187
+ sub_section=x_qe_phonon_n_parallel.m_def
188
+ )
189
+
190
+
191
+ class System(runschema.system.System):
192
+ m_def = Section(validate=False, extends_base_section=True)
193
+
194
+ x_qe_phonon_bravais_lattice_index = Quantity(
195
+ type=np.int32,
196
+ shape=[],
197
+ description="""
198
+ """,
199
+ )
200
+
201
+ x_qe_phonon_lattice_parameter = Quantity(
202
+ type=np.float64,
203
+ shape=[],
204
+ unit='m',
205
+ description="""
206
+ """,
207
+ )
208
+
209
+ x_qe_phonon_unit_cell_volume = Quantity(
210
+ type=np.float64,
211
+ shape=[],
212
+ unit='m ** 3',
213
+ description="""
214
+ """,
215
+ )
216
+
217
+ x_qe_phonon_n_atoms_cell = Quantity(
218
+ type=np.int32,
219
+ shape=[],
220
+ description="""
221
+ """,
222
+ )
223
+
224
+ x_qe_phonon_n_atomic_sites = Quantity(
225
+ type=np.int32,
226
+ shape=[],
227
+ description="""
228
+ """,
229
+ )
230
+
231
+ x_qe_phonon_point_group = Quantity(
232
+ type=str,
233
+ shape=[],
234
+ description="""
235
+ """,
236
+ )
237
+
238
+
239
+ class x_qe_phonon_scf_iteration(MSection):
240
+ m_def = Section(validate=False)
241
+
242
+ x_qe_phonon_fermi_energy_shift = Quantity(
243
+ type=np.float64,
244
+ shape=['*', '*'],
245
+ unit='joule',
246
+ description="""
247
+ """,
248
+ )
249
+
250
+ x_qe_phonon_iter = Quantity(
251
+ type=np.int32,
252
+ shape=[],
253
+ description="""
254
+ """,
255
+ )
256
+
257
+ x_qe_phonon_time = Quantity(
258
+ type=np.float64,
259
+ shape=[],
260
+ unit='s',
261
+ description="""
262
+ """,
263
+ )
264
+
265
+ x_qe_phonon_total_cpu_time = Quantity(
266
+ type=np.float64,
267
+ shape=[],
268
+ unit='s',
269
+ description="""
270
+ """,
271
+ )
272
+
273
+ x_qe_phonon_threshold = Quantity(
274
+ type=np.float64,
275
+ shape=[],
276
+ description="""
277
+ """,
278
+ )
279
+
280
+ x_qe_phonon_alpha_mix = Quantity(
281
+ type=np.float64,
282
+ shape=[],
283
+ description="""
284
+ """,
285
+ )
286
+
287
+ x_qe_phonon_ddv_scf_2 = Quantity(
288
+ type=np.float64,
289
+ shape=[],
290
+ description="""
291
+ """,
292
+ )
293
+
294
+
295
+ class x_qe_phonon_representation(MSection):
296
+ m_def = Section(validate=False)
297
+
298
+ x_qe_phonon_number = Quantity(
299
+ type=np.int32,
300
+ shape=[],
301
+ description="""
302
+ """,
303
+ )
304
+
305
+ x_qe_phonon_converged = Quantity(
306
+ type=bool,
307
+ shape=[],
308
+ description="""
309
+ """,
310
+ )
311
+
312
+ x_qe_phonon_modes = Quantity(
313
+ type=np.int32,
314
+ shape=['*'],
315
+ description="""
316
+ """,
317
+ )
318
+
319
+ x_qe_phonon_scf_iteration = SubSection(
320
+ sub_section=x_qe_phonon_scf_iteration.m_def, repeats=True
321
+ )
322
+
323
+
324
+ class Calculation(runschema.calculation.Calculation):
325
+ m_def = Section(validate=False, extends_base_section=True)
326
+
327
+ x_qe_phonon_representation = SubSection(
328
+ sub_section=x_qe_phonon_representation.m_def
329
+ )
330
+
331
+
332
+ class AtomParameters(runschema.method.AtomParameters):
333
+ m_def = Section(validate=False, extends_base_section=True)
334
+
335
+ x_qe_phonon_file = Quantity(
336
+ type=str,
337
+ shape=[],
338
+ description="""
339
+ """,
340
+ )
341
+
342
+ x_qe_phonon_md5_check_sum = Quantity(
343
+ type=str,
344
+ shape=[],
345
+ description="""
346
+ """,
347
+ )
348
+
349
+ x_qe_phonon_type = Quantity(
350
+ type=str,
351
+ shape=[],
352
+ description="""
353
+ """,
354
+ )
355
+
356
+ x_qe_phonon_n_radial_grid_points = Quantity(
357
+ type=np.int32,
358
+ shape=[],
359
+ description="""
360
+ """,
361
+ )
362
+
363
+ x_qe_phonon_n_beta_functions = Quantity(
364
+ type=np.int32,
365
+ shape=[],
366
+ description="""
367
+ """,
368
+ )
369
+
370
+ x_qe_phonon_l = Quantity(
371
+ type=np.int32,
372
+ shape=['x_qe_phonon_n_beta_functions'],
373
+ description="""
374
+ """,
375
+ )
376
+
377
+ x_qe_phonon_n_q_coefficients = Quantity(
378
+ type=np.int32,
379
+ shape=[],
380
+ description="""
381
+ """,
382
+ )
383
+
384
+ x_qe_phonon_l = Quantity(
385
+ type=np.float64,
386
+ shape=['x_qe_phonon_n_q_coefficients'],
387
+ description="""
388
+ """,
389
+ )