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,579 @@
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_epw_irreducible_q_point(MSection):
43
+ m_def = Section(validate=False)
44
+
45
+ x_qe_epw_n_symmetries = Quantity(
46
+ type=np.int32,
47
+ shape=[],
48
+ description="""
49
+ """,
50
+ )
51
+
52
+ x_qe_epw_n_q_star = Quantity(
53
+ type=np.int32,
54
+ shape=[],
55
+ description="""
56
+ """,
57
+ )
58
+
59
+ x_qe_epw_q_star = Quantity(
60
+ type=np.float64,
61
+ shape=['x_qe_epw_n_q_star', 3],
62
+ description="""
63
+ """,
64
+ )
65
+
66
+
67
+ class System(runschema.system.System):
68
+ m_def = Section(validate=False, extends_base_section=True)
69
+
70
+ x_qe_epw_bravais_lattice_index = Quantity(
71
+ type=np.int32,
72
+ shape=[],
73
+ description="""
74
+ """,
75
+ )
76
+
77
+ x_qe_epw_lattice_parameter = Quantity(
78
+ type=np.float64,
79
+ shape=[],
80
+ unit='m',
81
+ description="""
82
+ """,
83
+ )
84
+
85
+ x_qe_epw_unit_cell_volume = Quantity(
86
+ type=np.float64,
87
+ shape=[],
88
+ unit='m ** 3',
89
+ description="""
90
+ """,
91
+ )
92
+
93
+ x_qe_epw_n_atoms_cell = Quantity(
94
+ type=np.int32,
95
+ shape=[],
96
+ description="""
97
+ """,
98
+ )
99
+
100
+ x_qe_epw_n_atomic_types = Quantity(
101
+ type=np.int32,
102
+ shape=[],
103
+ description="""
104
+ """,
105
+ )
106
+
107
+ x_qe_epw_irreducible_q_point = SubSection(
108
+ sub_section=x_qe_epw_irreducible_q_point.m_def, repeats=True
109
+ )
110
+
111
+
112
+ class Method(runschema.method.Method):
113
+ m_def = Section(validate=False, extends_base_section=True)
114
+
115
+ x_qe_epw_n_ws_vectors_electrons = Quantity(
116
+ type=np.int32,
117
+ shape=[],
118
+ description="""
119
+ """,
120
+ )
121
+
122
+ x_qe_epw_n_ws_vectors_phonons = Quantity(
123
+ type=np.int32,
124
+ shape=[],
125
+ description="""
126
+ """,
127
+ )
128
+
129
+ x_qe_epw_n_ws_vectors_electron_phonon = Quantity(
130
+ type=np.int32,
131
+ shape=[],
132
+ description="""
133
+ """,
134
+ )
135
+
136
+ x_qe_epw_n_max_cores = Quantity(
137
+ type=np.int32,
138
+ shape=[],
139
+ description="""
140
+ """,
141
+ )
142
+
143
+ x_qe_epw_use_ws = Quantity(
144
+ type=bool,
145
+ shape=[],
146
+ description="""
147
+ """,
148
+ )
149
+
150
+ x_qe_epw_q_mesh = Quantity(
151
+ type=np.int32,
152
+ shape=[3],
153
+ description="""
154
+ """,
155
+ )
156
+
157
+ x_qe_epw_n_q_mesh = Quantity(
158
+ type=np.int32,
159
+ shape=[],
160
+ description="""
161
+ """,
162
+ )
163
+
164
+ x_qe_epw_k_mesh = Quantity(
165
+ type=np.int32,
166
+ shape=[3],
167
+ description="""
168
+ """,
169
+ )
170
+
171
+ x_qe_epw_n_k_mesh = Quantity(
172
+ type=np.int32,
173
+ shape=[],
174
+ description="""
175
+ """,
176
+ )
177
+
178
+ x_qe_epw_n_max_kpoints_per_pool = Quantity(
179
+ type=np.int32,
180
+ shape=[],
181
+ description="""
182
+ """,
183
+ )
184
+
185
+ x_qe_epw_kinetic_energy_cutoff = Quantity(
186
+ type=np.float64,
187
+ shape=[],
188
+ unit='joule',
189
+ description="""
190
+ """,
191
+ )
192
+
193
+ x_qe_epw_charge_density_cutoff = Quantity(
194
+ type=np.float64,
195
+ shape=[],
196
+ unit='joule',
197
+ description="""
198
+ """,
199
+ )
200
+
201
+ x_qe_epw_convergence_threshold = Quantity(
202
+ type=np.float64,
203
+ shape=[],
204
+ description="""
205
+ """,
206
+ )
207
+
208
+ x_qe_epw_exchange_correlation = Quantity(
209
+ type=str,
210
+ shape=[],
211
+ description="""
212
+ """,
213
+ )
214
+
215
+ x_qe_epw_fft_g_cutoff = Quantity(
216
+ type=np.float64,
217
+ shape=[],
218
+ description="""
219
+ """,
220
+ )
221
+
222
+ x_qe_epw_fft_g_vectors = Quantity(
223
+ type=np.int32,
224
+ shape=[],
225
+ description="""
226
+ """,
227
+ )
228
+
229
+ x_qe_epw_fft_grid = Quantity(
230
+ type=np.int32,
231
+ shape=[3],
232
+ description="""
233
+ """,
234
+ )
235
+
236
+ x_qe_epw_smooth_g_cutoff = Quantity(
237
+ type=np.float64,
238
+ shape=[],
239
+ description="""
240
+ """,
241
+ )
242
+
243
+ x_qe_epw_smooth_g_vectors = Quantity(
244
+ type=np.int32,
245
+ shape=[],
246
+ description="""
247
+ """,
248
+ )
249
+
250
+ x_qe_epw_smooth_grid = Quantity(
251
+ type=np.int32,
252
+ shape=[3],
253
+ description="""
254
+ """,
255
+ )
256
+
257
+ x_qe_epw_n_kpoints = Quantity(
258
+ type=np.int32,
259
+ shape=[],
260
+ description="""
261
+ """,
262
+ )
263
+
264
+ x_qe_epw_gaussian_broadening = Quantity(
265
+ type=np.float64,
266
+ shape=[],
267
+ unit='rydberg',
268
+ description="""
269
+ """,
270
+ )
271
+
272
+ x_qe_epw_n_gauss = Quantity(
273
+ type=np.int32,
274
+ shape=[],
275
+ description="""
276
+ """,
277
+ )
278
+
279
+
280
+ class AtomParameters(runschema.method.AtomParameters):
281
+ m_def = Section(validate=False, extends_base_section=True)
282
+
283
+ x_qe_epw_file = Quantity(
284
+ type=str,
285
+ shape=[],
286
+ description="""
287
+ """,
288
+ )
289
+
290
+ x_qe_epw_md5_check_sum = Quantity(
291
+ type=str,
292
+ shape=[],
293
+ description="""
294
+ """,
295
+ )
296
+
297
+ x_qe_epw_type = Quantity(
298
+ type=str,
299
+ shape=[],
300
+ description="""
301
+ """,
302
+ )
303
+
304
+ x_qe_epw_n_radial_grid_points = Quantity(
305
+ type=np.int32,
306
+ shape=[],
307
+ description="""
308
+ """,
309
+ )
310
+
311
+ x_qe_epw_n_beta_functions = Quantity(
312
+ type=np.int32,
313
+ shape=[],
314
+ description="""
315
+ """,
316
+ )
317
+
318
+ x_qe_epw_l = Quantity(
319
+ type=np.int32,
320
+ shape=['x_qe_epw_n_beta_functions'],
321
+ description="""
322
+ """,
323
+ )
324
+
325
+ x_qe_epw_n_q_coefficients = Quantity(
326
+ type=np.int32,
327
+ shape=[],
328
+ description="""
329
+ """,
330
+ )
331
+
332
+ x_qe_epw_l = Quantity(
333
+ type=np.float64,
334
+ shape=['x_qe_epw_n_q_coefficients'],
335
+ description="""
336
+ """,
337
+ )
338
+
339
+
340
+ class x_qe_epw_self_energy(MSection):
341
+ m_def = Section(validate=False)
342
+
343
+ x_qe_epw_ismear = Quantity(
344
+ type=np.int32,
345
+ shape=[],
346
+ description="""
347
+ """,
348
+ )
349
+
350
+ x_qe_epw_iq = Quantity(
351
+ type=np.int32,
352
+ shape=[],
353
+ description="""
354
+ """,
355
+ )
356
+
357
+ x_qe_epw_coord = Quantity(
358
+ type=np.float64,
359
+ shape=[3],
360
+ description="""
361
+ """,
362
+ )
363
+
364
+ x_qe_epw_wt = Quantity(
365
+ type=np.float64,
366
+ shape=[],
367
+ description="""
368
+ """,
369
+ )
370
+
371
+ x_qe_epw_temp = Quantity(
372
+ type=np.float64,
373
+ shape=[],
374
+ unit='kelvin',
375
+ description="""
376
+ """,
377
+ )
378
+
379
+ x_qe_epw_n_lambda = Quantity(
380
+ type=np.float64,
381
+ shape=[],
382
+ description="""
383
+ """,
384
+ )
385
+
386
+ x_qe_epw_lambda = Quantity(
387
+ type=np.float64,
388
+ shape=['x_qe_epw_n_lambda'],
389
+ description="""
390
+ """,
391
+ )
392
+
393
+ x_qe_epw_gamma = Quantity(
394
+ type=np.float64,
395
+ shape=['x_qe_epw_n_lambda'],
396
+ description="""
397
+ """,
398
+ )
399
+
400
+ x_qe_epw_omega = Quantity(
401
+ type=np.float64,
402
+ shape=['x_qe_epw_n_lambda'],
403
+ description="""
404
+ """,
405
+ )
406
+
407
+ x_qe_epw_lambda_tr = Quantity(
408
+ type=np.float64,
409
+ shape=['x_qe_epw_n_lambda'],
410
+ description="""
411
+ """,
412
+ )
413
+
414
+ x_qe_epw_gamma_tr = Quantity(
415
+ type=np.float64,
416
+ shape=['x_qe_epw_n_lambda'],
417
+ description="""
418
+ """,
419
+ )
420
+
421
+ x_qe_epw_omega_tr = Quantity(
422
+ type=np.float64,
423
+ shape=['x_qe_epw_n_lambda'],
424
+ description="""
425
+ """,
426
+ )
427
+
428
+ x_qe_epw_lambda_tot = Quantity(
429
+ type=np.float64,
430
+ shape=[],
431
+ description="""
432
+ """,
433
+ )
434
+
435
+ x_qe_epw_lambda_tot_tr = Quantity(
436
+ type=np.float64,
437
+ shape=[],
438
+ description="""
439
+ """,
440
+ )
441
+
442
+
443
+ class x_qe_epw_self_energy_migdal(MSection):
444
+ m_def = Section(validate=False)
445
+
446
+ x_qe_epw_fermi_surface_thickness = Quantity(
447
+ type=np.float64,
448
+ shape=[],
449
+ unit='electron_volt',
450
+ description="""
451
+ """,
452
+ )
453
+
454
+ x_qe_epw_golden_rule_t = Quantity(
455
+ type=np.float64,
456
+ shape=[],
457
+ unit='electron_volt',
458
+ description="""
459
+ """,
460
+ )
461
+
462
+ x_qe_epw_gaussian_broadening = Quantity(
463
+ type=np.float64,
464
+ shape=[],
465
+ unit='electron_volt',
466
+ description="""
467
+ """,
468
+ )
469
+
470
+ x_qe_epw_n_gauss = Quantity(
471
+ type=np.int32,
472
+ shape=[],
473
+ description="""
474
+ """,
475
+ )
476
+
477
+ x_qe_epw_dos_ef = Quantity(
478
+ type=np.float64,
479
+ shape=[],
480
+ description="""
481
+ """,
482
+ )
483
+
484
+ x_qe_epw_self_energy = SubSection(
485
+ sub_section=x_qe_epw_self_energy.m_def, repeats=True
486
+ )
487
+
488
+
489
+ class x_qe_epw_timimg(MSection):
490
+ m_def = Section(validate=False)
491
+
492
+ x_qe_epw_task = Quantity(
493
+ type=str,
494
+ shape=[],
495
+ description="""
496
+ """,
497
+ )
498
+
499
+ x_qe_epw_cpu_time = Quantity(
500
+ type=np.float64,
501
+ shape=[],
502
+ description="""
503
+ """,
504
+ )
505
+
506
+ x_qe_epw_wall_time = Quantity(
507
+ type=np.float64,
508
+ shape=[],
509
+ description="""
510
+ """,
511
+ )
512
+
513
+ x_qe_epw_n_calls = Quantity(
514
+ type=np.float64,
515
+ shape=[],
516
+ description="""
517
+ """,
518
+ )
519
+
520
+
521
+ class x_qe_epw_eliashberg_spectral_function_migdal_approximation(MSection):
522
+ m_def = Section(validate=False)
523
+
524
+ x_qe_epw_lambda = Quantity(
525
+ type=np.float64,
526
+ shape=[],
527
+ description="""
528
+ """,
529
+ )
530
+
531
+ x_qe_epw_lambda_tr = Quantity(
532
+ type=np.float64,
533
+ shape=[],
534
+ description="""
535
+ """,
536
+ )
537
+
538
+ x_qe_epw_logavg = Quantity(
539
+ type=np.float64,
540
+ shape=[],
541
+ description="""
542
+ """,
543
+ )
544
+
545
+ x_qe_epw_l_a2f = Quantity(
546
+ type=np.float64,
547
+ shape=[],
548
+ description="""
549
+ """,
550
+ )
551
+
552
+ x_qe_epw_mu_tc = Quantity(
553
+ type=np.float64,
554
+ shape=['*', '*'],
555
+ description="""
556
+ """,
557
+ )
558
+
559
+ x_qe_epw_timimg = SubSection(sub_section=x_qe_epw_timimg.m_def, repeats=True)
560
+
561
+
562
+ class Calculation(runschema.calculation.Calculation):
563
+ m_def = Section(validate=False, extends_base_section=True)
564
+
565
+ x_qe_epw_e_fermi_coarse_grid = Quantity(
566
+ type=np.float64,
567
+ shape=[],
568
+ unit='electron_volt',
569
+ description="""
570
+ """,
571
+ )
572
+
573
+ x_qe_epw_self_energy_migdal = SubSection(
574
+ sub_section=x_qe_epw_self_energy_migdal.m_def
575
+ )
576
+
577
+ x_qe_epw_eliashberg_spectral_function_migdal_approximation = SubSection(
578
+ sub_section=x_qe_epw_eliashberg_spectral_function_migdal_approximation.m_def
579
+ )