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,1240 @@
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
+ import typing # pylint: disable=unused-import
21
+ from nomad.metainfo import ( # pylint: disable=unused-import
22
+ Datetime,
23
+ MSection,
24
+ MCategory,
25
+ Category,
26
+ Package,
27
+ Quantity,
28
+ Section,
29
+ SubSection,
30
+ SectionProxy,
31
+ Reference,
32
+ )
33
+
34
+ import runschema.run # pylint: disable=unused-import
35
+ import runschema.calculation # pylint: disable=unused-import
36
+ import runschema.method # pylint: disable=unused-import
37
+ import runschema.system # pylint: disable=unused-import
38
+
39
+
40
+ m_package = Package()
41
+
42
+
43
+ class Run(runschema.run.Run):
44
+ m_def = Section(validate=False, extends_base_section=True)
45
+
46
+ x_aflow_aurl = Quantity(
47
+ type=str,
48
+ shape=[],
49
+ description="""
50
+ """,
51
+ )
52
+
53
+ x_aflow_auid = Quantity(
54
+ type=str,
55
+ shape=[],
56
+ description="""
57
+ """,
58
+ )
59
+
60
+ x_aflow_data_api = Quantity(
61
+ type=str,
62
+ shape=[],
63
+ description="""
64
+ """,
65
+ )
66
+
67
+ x_aflow_data_source = Quantity(
68
+ type=str,
69
+ shape=[],
70
+ description="""
71
+ """,
72
+ )
73
+
74
+ x_aflow_n_loop = Quantity(
75
+ type=np.int32,
76
+ shape=[],
77
+ description="""
78
+ """,
79
+ )
80
+
81
+ x_aflow_loop = Quantity(
82
+ type=str,
83
+ shape=['x_aflow_n_loop'],
84
+ description="""
85
+ """,
86
+ )
87
+
88
+
89
+ class Method(runschema.method.Method):
90
+ m_def = Section(validate=False, extends_base_section=True)
91
+
92
+ x_aflow_code = Quantity(
93
+ type=str,
94
+ shape=[],
95
+ description="""
96
+ """,
97
+ )
98
+
99
+ x_aflow_species_pp = Quantity(
100
+ type=str,
101
+ shape=['x_aflow_nspecies'],
102
+ description="""
103
+ """,
104
+ )
105
+
106
+ x_aflow_n_dft_type = Quantity(
107
+ type=np.int32,
108
+ shape=[],
109
+ description="""
110
+ """,
111
+ )
112
+
113
+ x_aflow_dft_type = Quantity(
114
+ type=str,
115
+ shape=['x_aflow_n_dft_type'],
116
+ description="""
117
+ """,
118
+ )
119
+
120
+ x_aflow_dft_type = Quantity(
121
+ type=str,
122
+ shape=['x_aflow_n_dft_type'],
123
+ description="""
124
+ """,
125
+ )
126
+
127
+ x_aflow_species_pp_version = Quantity(
128
+ type=str,
129
+ shape=['x_aflow_nspecies'],
130
+ description="""
131
+ """,
132
+ )
133
+
134
+ x_aflow_species_pp_ZVAL = Quantity(
135
+ type=np.int32,
136
+ shape=['x_aflow_nspecies'],
137
+ description="""
138
+ """,
139
+ )
140
+
141
+ x_aflow_species_pp_AUID = Quantity(
142
+ type=str,
143
+ shape=['x_aflow_nspecies'],
144
+ description="""
145
+ """,
146
+ )
147
+
148
+ x_aflow_ldau_type = Quantity(
149
+ type=np.int32,
150
+ shape=[],
151
+ description="""
152
+ """,
153
+ )
154
+
155
+ x_aflow_ldau_l = Quantity(
156
+ type=np.int32,
157
+ shape=['x_aflow_nspecies'],
158
+ description="""
159
+ """,
160
+ )
161
+
162
+ x_aflow_ldau_u = Quantity(
163
+ type=np.float64,
164
+ shape=['x_aflow_nspecies'],
165
+ description="""
166
+ """,
167
+ )
168
+
169
+ x_aflow_ldau_j = Quantity(
170
+ type=np.int32,
171
+ shape=['x_aflow_nspecies'],
172
+ description="""
173
+ """,
174
+ )
175
+
176
+ x_aflow_valence_cell_iupac = Quantity(
177
+ type=np.int32,
178
+ shape=[],
179
+ description="""
180
+ """,
181
+ )
182
+
183
+ x_aflow_valence_cell_std = Quantity(
184
+ type=np.int32,
185
+ shape=[],
186
+ description="""
187
+ """,
188
+ )
189
+
190
+ x_aflow_energy_cutoff = Quantity(
191
+ type=np.int32,
192
+ shape=[],
193
+ description="""
194
+ """,
195
+ )
196
+
197
+ x_aflow_delta_electronic_energy_convergence = Quantity(
198
+ type=np.float64,
199
+ shape=[],
200
+ description="""
201
+ """,
202
+ )
203
+
204
+ x_aflow_delta_electronic_energy_threshold = Quantity(
205
+ type=np.float64,
206
+ shape=[],
207
+ description="""
208
+ """,
209
+ )
210
+
211
+ x_aflow_kpoints_relax = Quantity(
212
+ type=np.int32,
213
+ shape=[3],
214
+ description="""
215
+ """,
216
+ )
217
+
218
+ x_aflow_kpoints_static = Quantity(
219
+ type=np.int32,
220
+ shape=[3],
221
+ description="""
222
+ """,
223
+ )
224
+
225
+ x_aflow_n_kpoints_bands_path = Quantity(
226
+ type=np.int32,
227
+ shape=[],
228
+ description="""
229
+ """,
230
+ )
231
+
232
+ x_aflow_kpoints_bands_path = Quantity(
233
+ type=str,
234
+ shape=['x_aflow_n_kpoints_bands_path'],
235
+ description="""
236
+ """,
237
+ )
238
+
239
+ x_aflow_kpoints_bands_nkpts = Quantity(
240
+ type=np.int32,
241
+ shape=[],
242
+ description="""
243
+ """,
244
+ )
245
+
246
+
247
+ class System(runschema.system.System):
248
+ m_def = Section(validate=False, extends_base_section=True)
249
+
250
+ x_aflow_compound = Quantity(
251
+ type=str,
252
+ shape=[],
253
+ description="""
254
+ """,
255
+ )
256
+
257
+ x_aflow_prototype = Quantity(
258
+ type=str,
259
+ shape=[],
260
+ description="""
261
+ """,
262
+ )
263
+
264
+ x_aflow_nspecies = Quantity(
265
+ type=np.int32,
266
+ shape=[],
267
+ description="""
268
+ """,
269
+ )
270
+
271
+ x_aflow_natoms = Quantity(
272
+ type=np.int32,
273
+ shape=[],
274
+ description="""
275
+ """,
276
+ )
277
+
278
+ x_aflow_natoms_orig = Quantity(
279
+ type=np.int32,
280
+ shape=[],
281
+ description="""
282
+ """,
283
+ )
284
+
285
+ x_aflow_composition = Quantity(
286
+ type=np.int32,
287
+ shape=['x_aflow_nspecies'],
288
+ description="""
289
+ """,
290
+ )
291
+
292
+ x_aflow_density = Quantity(
293
+ type=np.float64,
294
+ shape=[],
295
+ description="""
296
+ """,
297
+ )
298
+
299
+ x_aflow_density_orig = Quantity(
300
+ type=np.float64,
301
+ shape=[],
302
+ description="""
303
+ """,
304
+ )
305
+
306
+ x_aflow_scintillation_attenuation_length = Quantity(
307
+ type=np.float64,
308
+ shape=[],
309
+ description="""
310
+ """,
311
+ )
312
+
313
+ x_aflow_stoichiometry = Quantity(
314
+ type=np.float64,
315
+ shape=['x_aflow_nspecies'],
316
+ description="""
317
+ """,
318
+ )
319
+
320
+ x_aflow_species = Quantity(
321
+ type=str,
322
+ shape=['x_aflow_nspecies'],
323
+ description="""
324
+ """,
325
+ )
326
+
327
+ x_aflow_geometry = Quantity(
328
+ type=np.float64,
329
+ shape=[6],
330
+ description="""
331
+ """,
332
+ )
333
+
334
+ x_aflow_geometry_orig = Quantity(
335
+ type=np.float64,
336
+ shape=[6],
337
+ description="""
338
+ """,
339
+ )
340
+
341
+ x_aflow_volume_cell = Quantity(
342
+ type=np.float64,
343
+ shape=[],
344
+ description="""
345
+ """,
346
+ )
347
+
348
+ x_aflow_volume_atom = Quantity(
349
+ type=np.float64,
350
+ shape=[],
351
+ description="""
352
+ """,
353
+ )
354
+
355
+ x_aflow_volume_cell_orig = Quantity(
356
+ type=np.float64,
357
+ shape=[],
358
+ description="""
359
+ """,
360
+ )
361
+
362
+ x_aflow_volume_atom_orig = Quantity(
363
+ type=np.float64,
364
+ shape=[],
365
+ description="""
366
+ """,
367
+ )
368
+
369
+ x_aflow_n_sg = Quantity(
370
+ type=np.int32,
371
+ shape=[],
372
+ description="""
373
+ """,
374
+ )
375
+
376
+ x_aflow_sg = Quantity(
377
+ type=str,
378
+ shape=['x_aflow_n_sg'],
379
+ description="""
380
+ """,
381
+ )
382
+
383
+ x_aflow_sg2 = Quantity(
384
+ type=str,
385
+ shape=['x_aflow_n_sg'],
386
+ description="""
387
+ """,
388
+ )
389
+
390
+ x_aflow_spacegroup_orig = Quantity(
391
+ type=np.int32,
392
+ shape=[],
393
+ description="""
394
+ """,
395
+ )
396
+
397
+ x_aflow_spacegroup_relax = Quantity(
398
+ type=np.int32,
399
+ shape=[],
400
+ description="""
401
+ """,
402
+ )
403
+
404
+ x_aflow_Bravais_lattice_orig = Quantity(
405
+ type=str,
406
+ shape=[],
407
+ description="""
408
+ """,
409
+ )
410
+
411
+ x_aflow_lattice_variation_orig = Quantity(
412
+ type=str,
413
+ shape=[],
414
+ description="""
415
+ """,
416
+ )
417
+
418
+ x_aflow_lattice_system_orig = Quantity(
419
+ type=str,
420
+ shape=[],
421
+ description="""
422
+ """,
423
+ )
424
+
425
+ x_aflow_Pearson_symbol_orig = Quantity(
426
+ type=str,
427
+ shape=[],
428
+ description="""
429
+ """,
430
+ )
431
+
432
+ x_aflow_Bravais_lattice_relax = Quantity(
433
+ type=str,
434
+ shape=[],
435
+ description="""
436
+ """,
437
+ )
438
+
439
+ x_aflow_lattice_variation_relax = Quantity(
440
+ type=str,
441
+ shape=[],
442
+ description="""
443
+ """,
444
+ )
445
+
446
+ x_aflow_lattice_system_relax = Quantity(
447
+ type=str,
448
+ shape=[],
449
+ description="""
450
+ """,
451
+ )
452
+
453
+ x_aflow_Pearson_symbol_relax = Quantity(
454
+ type=str,
455
+ shape=[],
456
+ description="""
457
+ """,
458
+ )
459
+
460
+ x_aflow_crystal_family_orig = Quantity(
461
+ type=str,
462
+ shape=[],
463
+ description="""
464
+ """,
465
+ )
466
+
467
+ x_aflow_crystal_system_orig = Quantity(
468
+ type=str,
469
+ shape=[],
470
+ description="""
471
+ """,
472
+ )
473
+
474
+ x_aflow_crystal_class_orig = Quantity(
475
+ type=str,
476
+ shape=[],
477
+ description="""
478
+ """,
479
+ )
480
+
481
+ x_aflow_point_group_Hermann_Mauguin_orig = Quantity(
482
+ type=str,
483
+ shape=[],
484
+ description="""
485
+ """,
486
+ )
487
+
488
+ x_aflow_point_group_Schoenflies_orig = Quantity(
489
+ type=str,
490
+ shape=[],
491
+ description="""
492
+ """,
493
+ )
494
+
495
+ x_aflow_point_group_orbifold_orig = Quantity(
496
+ type=str,
497
+ shape=[],
498
+ description="""
499
+ """,
500
+ )
501
+
502
+ x_aflow_point_group_type_orig = Quantity(
503
+ type=str,
504
+ shape=[],
505
+ description="""
506
+ """,
507
+ )
508
+
509
+ x_aflow_point_group_order_orig = Quantity(
510
+ type=np.int32,
511
+ shape=[],
512
+ description="""
513
+ """,
514
+ )
515
+
516
+ x_aflow_point_group_structure_orig = Quantity(
517
+ type=str,
518
+ shape=[],
519
+ description="""
520
+ """,
521
+ )
522
+
523
+ x_aflow_Bravais_lattice_lattice_type_orig = Quantity(
524
+ type=str,
525
+ shape=[],
526
+ description="""
527
+ """,
528
+ )
529
+
530
+ x_aflow_Bravais_lattice_lattice_variation_type_orig = Quantity(
531
+ type=str,
532
+ shape=[],
533
+ description="""
534
+ """,
535
+ )
536
+
537
+ x_aflow_Bravais_lattice_lattice_system_orig = Quantity(
538
+ type=str,
539
+ shape=[],
540
+ description="""
541
+ """,
542
+ )
543
+
544
+ x_aflow_Bravais_superlattice_lattice_type_orig = Quantity(
545
+ type=str,
546
+ shape=[],
547
+ description="""
548
+ """,
549
+ )
550
+
551
+ x_aflow_Bravais_superlattice_lattice_variation_type_orig = Quantity(
552
+ type=str,
553
+ shape=[],
554
+ description="""
555
+ """,
556
+ )
557
+
558
+ x_aflow_Bravais_superlattice_lattice_system_orig = Quantity(
559
+ type=str,
560
+ shape=[],
561
+ description="""
562
+ """,
563
+ )
564
+
565
+ x_aflow_Pearson_symbol_superlattice_orig = Quantity(
566
+ type=str,
567
+ shape=[],
568
+ description="""
569
+ """,
570
+ )
571
+
572
+ x_aflow_reciprocal_geometry_orig = Quantity(
573
+ type=np.float64,
574
+ shape=[6],
575
+ description="""
576
+ """,
577
+ )
578
+
579
+ x_aflow_reciprocal_volume_cell_orig = Quantity(
580
+ type=np.float64,
581
+ shape=[],
582
+ description="""
583
+ """,
584
+ )
585
+
586
+ x_aflow_reciprocal_lattice_type_orig = Quantity(
587
+ type=str,
588
+ shape=[],
589
+ description="""
590
+ """,
591
+ )
592
+
593
+ x_aflow_reciprocal_lattice_variation_type_orig = Quantity(
594
+ type=str,
595
+ shape=[],
596
+ description="""
597
+ """,
598
+ )
599
+
600
+ x_aflow_n_symmetries = Quantity(
601
+ type=np.int32,
602
+ shape=[],
603
+ description="""
604
+ """,
605
+ )
606
+
607
+ x_aflow_Wyckoff_letters_orig = Quantity(
608
+ type=np.str_,
609
+ shape=['x_aflow_nspecies', 'x_aflow_n_symmetries'],
610
+ description="""
611
+ """,
612
+ )
613
+
614
+ x_aflow_Wyckoff_multiplicities_orig = Quantity(
615
+ type=np.int32,
616
+ shape=['x_aflow_nspecies', 'x_aflow_n_symmetries'],
617
+ description="""
618
+ """,
619
+ )
620
+
621
+ x_aflow_Wyckoff_site_symmetries_orig = Quantity(
622
+ type=np.str_,
623
+ shape=['x_aflow_nspecies', 'x_aflow_n_symmetries'],
624
+ description="""
625
+ """,
626
+ )
627
+
628
+ x_aflow_crystal_family = Quantity(
629
+ type=str,
630
+ shape=[],
631
+ description="""
632
+ """,
633
+ )
634
+
635
+ x_aflow_crystal_system = Quantity(
636
+ type=str,
637
+ shape=[],
638
+ description="""
639
+ """,
640
+ )
641
+
642
+ x_aflow_crystal_class = Quantity(
643
+ type=str,
644
+ shape=[],
645
+ description="""
646
+ """,
647
+ )
648
+
649
+ x_aflow_point_group_Hermann_Mauguin = Quantity(
650
+ type=str,
651
+ shape=[],
652
+ description="""
653
+ """,
654
+ )
655
+
656
+ x_aflow_point_group_Schoenflies = Quantity(
657
+ type=str,
658
+ shape=[],
659
+ description="""
660
+ """,
661
+ )
662
+
663
+ x_aflow_point_group_orbifold = Quantity(
664
+ type=str,
665
+ shape=[],
666
+ description="""
667
+ """,
668
+ )
669
+
670
+ x_aflow_point_group_type = Quantity(
671
+ type=str,
672
+ shape=[],
673
+ description="""
674
+ """,
675
+ )
676
+
677
+ x_aflow_point_group_order = Quantity(
678
+ type=np.int32,
679
+ shape=[],
680
+ description="""
681
+ """,
682
+ )
683
+
684
+ x_aflow_point_group_structure = Quantity(
685
+ type=str,
686
+ shape=[],
687
+ description="""
688
+ """,
689
+ )
690
+
691
+ x_aflow_Bravais_lattice_lattice_type = Quantity(
692
+ type=str,
693
+ shape=[],
694
+ description="""
695
+ """,
696
+ )
697
+
698
+ x_aflow_Bravais_lattice_lattice_variation_type = Quantity(
699
+ type=str,
700
+ shape=[],
701
+ description="""
702
+ """,
703
+ )
704
+
705
+ x_aflow_Bravais_lattice_lattice_system = Quantity(
706
+ type=str,
707
+ shape=[],
708
+ description="""
709
+ """,
710
+ )
711
+
712
+ x_aflow_Bravais_superlattice_lattice_type = Quantity(
713
+ type=str,
714
+ shape=[],
715
+ description="""
716
+ """,
717
+ )
718
+
719
+ x_aflow_Bravais_superlattice_lattice_variation_type = Quantity(
720
+ type=str,
721
+ shape=[],
722
+ description="""
723
+ """,
724
+ )
725
+
726
+ x_aflow_Bravais_superlattice_lattice_system = Quantity(
727
+ type=str,
728
+ shape=[],
729
+ description="""
730
+ """,
731
+ )
732
+
733
+ x_aflow_Pearson_symbol_superlattice = Quantity(
734
+ type=str,
735
+ shape=[],
736
+ description="""
737
+ """,
738
+ )
739
+
740
+ x_aflow_reciprocal_geometry = Quantity(
741
+ type=np.float64,
742
+ shape=[6],
743
+ description="""
744
+ """,
745
+ )
746
+
747
+ x_aflow_reciprocal_volume_cell = Quantity(
748
+ type=np.float64,
749
+ shape=[],
750
+ description="""
751
+ """,
752
+ )
753
+
754
+ x_aflow_reciprocal_lattice_type = Quantity(
755
+ type=str,
756
+ shape=[],
757
+ description="""
758
+ """,
759
+ )
760
+
761
+ x_aflow_reciprocal_lattice_variation_type = Quantity(
762
+ type=str,
763
+ shape=[],
764
+ description="""
765
+ """,
766
+ )
767
+
768
+ x_aflow_Wyckoff_letters = Quantity(
769
+ type=np.str_,
770
+ shape=['x_aflow_nspecies', 1],
771
+ description="""
772
+ """,
773
+ )
774
+
775
+ x_aflow_Wyckoff_multiplicities = Quantity(
776
+ type=np.int32,
777
+ shape=['x_aflow_nspecies', 1],
778
+ description="""
779
+ """,
780
+ )
781
+
782
+ x_aflow_Wyckoff_site_symmetries = Quantity(
783
+ type=np.str_,
784
+ shape=['x_aflow_nspecies', 1],
785
+ description="""
786
+ """,
787
+ )
788
+
789
+ x_aflow_prototype_label_orig = Quantity(
790
+ type=str,
791
+ shape=[],
792
+ description="""
793
+ """,
794
+ )
795
+
796
+ x_aflow_prototype_params_list_orig = Quantity(
797
+ type=str,
798
+ shape=[3],
799
+ description="""
800
+ """,
801
+ )
802
+
803
+ x_aflow_prototype_params_values_orig = Quantity(
804
+ type=np.float64,
805
+ shape=[3],
806
+ description="""
807
+ """,
808
+ )
809
+
810
+ x_aflow_prototype_label_relax = Quantity(
811
+ type=str,
812
+ shape=[],
813
+ description="""
814
+ """,
815
+ )
816
+
817
+ x_aflow_prototype_params_list_relax = Quantity(
818
+ type=str,
819
+ shape=[3],
820
+ description="""
821
+ """,
822
+ )
823
+
824
+ x_aflow_prototype_params_values_relax = Quantity(
825
+ type=np.float64,
826
+ shape=[3],
827
+ description="""
828
+ """,
829
+ )
830
+
831
+
832
+ class Calculation(runschema.calculation.Calculation):
833
+ m_def = Section(validate=False, extends_base_section=True)
834
+
835
+ x_aflow_stress_tensor = Quantity(
836
+ type=np.float64,
837
+ shape=[9],
838
+ description="""
839
+ """,
840
+ )
841
+
842
+ x_aflow_pressure_residual = Quantity(
843
+ type=np.float64,
844
+ shape=[],
845
+ description="""
846
+ """,
847
+ )
848
+
849
+ x_aflow_Pulay_stress = Quantity(
850
+ type=np.float64,
851
+ shape=[],
852
+ description="""
853
+ """,
854
+ )
855
+
856
+ x_aflow_Egap = Quantity(
857
+ type=np.float64,
858
+ shape=[],
859
+ description="""
860
+ """,
861
+ )
862
+
863
+ x_aflow_Egap_fit = Quantity(
864
+ type=np.float64,
865
+ shape=[],
866
+ description="""
867
+ """,
868
+ )
869
+
870
+ x_aflow_Egap_type = Quantity(
871
+ type=str,
872
+ shape=[],
873
+ description="""
874
+ """,
875
+ )
876
+
877
+ x_aflow_enthalpy_formation_cell = Quantity(
878
+ type=np.float64,
879
+ shape=[],
880
+ unit='joule',
881
+ description="""
882
+ """,
883
+ )
884
+
885
+ x_aflow_entropic_temperature = Quantity(
886
+ type=np.float64,
887
+ shape=[],
888
+ description="""
889
+ """,
890
+ )
891
+
892
+ x_aflow_PV = Quantity(
893
+ type=np.float64,
894
+ shape=[],
895
+ description="""
896
+ """,
897
+ )
898
+
899
+ x_aflow_spin_cell = Quantity(
900
+ type=np.float64,
901
+ shape=[],
902
+ description="""
903
+ """,
904
+ )
905
+
906
+ x_aflow_spinD = Quantity(
907
+ type=np.float64,
908
+ shape=['x_aflow_natoms'],
909
+ description="""
910
+ """,
911
+ )
912
+
913
+ x_aflow_spinF = Quantity(
914
+ type=np.float64,
915
+ shape=[],
916
+ description="""
917
+ """,
918
+ )
919
+
920
+ x_aflow_calculation_memory = Quantity(
921
+ type=np.float64,
922
+ shape=[],
923
+ description="""
924
+ """,
925
+ )
926
+
927
+ x_aflow_calculation_cores = Quantity(
928
+ type=np.float64,
929
+ shape=[],
930
+ description="""
931
+ """,
932
+ )
933
+
934
+ x_aflow_nbondxx = Quantity(
935
+ type=np.float64,
936
+ shape=[6],
937
+ description="""
938
+ """,
939
+ )
940
+
941
+ x_aflow_agl_thermal_conductivity_300K = Quantity(
942
+ type=np.float64,
943
+ shape=[],
944
+ description="""
945
+ """,
946
+ )
947
+
948
+ x_aflow_agl_debye = Quantity(
949
+ type=np.float64,
950
+ shape=[],
951
+ description="""
952
+ """,
953
+ )
954
+
955
+ x_aflow_agl_acoustic_debye = Quantity(
956
+ type=np.float64,
957
+ shape=[],
958
+ description="""
959
+ """,
960
+ )
961
+
962
+ x_aflow_agl_gruneisen = Quantity(
963
+ type=np.float64,
964
+ shape=[],
965
+ description="""
966
+ """,
967
+ )
968
+
969
+ x_aflow_agl_heat_capacity_Cv_300K = Quantity(
970
+ type=np.float64,
971
+ shape=[],
972
+ description="""
973
+ """,
974
+ )
975
+
976
+ x_aflow_agl_heat_capacity_Cp_300K = Quantity(
977
+ type=np.float64,
978
+ shape=[],
979
+ description="""
980
+ """,
981
+ )
982
+
983
+ x_aflow_agl_thermal_expansion_300K = Quantity(
984
+ type=np.float64,
985
+ shape=[],
986
+ description="""
987
+ """,
988
+ )
989
+
990
+ x_aflow_agl_bulk_modulus_static_300K = Quantity(
991
+ type=np.float64,
992
+ shape=[],
993
+ description="""
994
+ """,
995
+ )
996
+
997
+ x_aflow_agl_bulk_modulus_isothermal_300K = Quantity(
998
+ type=np.float64,
999
+ shape=[],
1000
+ description="""
1001
+ """,
1002
+ )
1003
+
1004
+ x_aflow_agl_poisson_ratio_source = Quantity(
1005
+ type=str,
1006
+ shape=[],
1007
+ description="""
1008
+ """,
1009
+ )
1010
+
1011
+ x_aflow_agl_vibrational_free_energy_300K_cell = Quantity(
1012
+ type=np.float64,
1013
+ shape=[],
1014
+ description="""
1015
+ """,
1016
+ )
1017
+
1018
+ x_aflow_agl_vibrational_free_energy_300K_atom = Quantity(
1019
+ type=np.float64,
1020
+ shape=[],
1021
+ description="""
1022
+ """,
1023
+ )
1024
+
1025
+ x_aflow_agl_vibrational_entropy_300K_cell = Quantity(
1026
+ type=np.float64,
1027
+ shape=[],
1028
+ description="""
1029
+ """,
1030
+ )
1031
+
1032
+ x_aflow_agl_vibrational_entropy_300K_atom = Quantity(
1033
+ type=np.float64,
1034
+ shape=[],
1035
+ description="""
1036
+ """,
1037
+ )
1038
+
1039
+ x_aflow_ael_poisson_ratio = Quantity(
1040
+ type=np.float64,
1041
+ shape=[],
1042
+ description="""
1043
+ """,
1044
+ )
1045
+
1046
+ x_aflow_ael_bulk_modulus_voigt = Quantity(
1047
+ type=np.float64,
1048
+ shape=[],
1049
+ description="""
1050
+ """,
1051
+ )
1052
+
1053
+ x_aflow_ael_bulk_modulus_reuss = Quantity(
1054
+ type=np.float64,
1055
+ shape=[],
1056
+ description="""
1057
+ """,
1058
+ )
1059
+
1060
+ x_aflow_ael_shear_modulus_voigt = Quantity(
1061
+ type=np.float64,
1062
+ shape=[],
1063
+ description="""
1064
+ """,
1065
+ )
1066
+
1067
+ x_aflow_ael_shear_modulus_reuss = Quantity(
1068
+ type=np.float64,
1069
+ shape=[],
1070
+ description="""
1071
+ """,
1072
+ )
1073
+
1074
+ x_aflow_ael_bulk_modulus_vrh = Quantity(
1075
+ type=np.float64,
1076
+ shape=[],
1077
+ description="""
1078
+ """,
1079
+ )
1080
+
1081
+ x_aflow_ael_shear_modulus_vrh = Quantity(
1082
+ type=np.float64,
1083
+ shape=[],
1084
+ description="""
1085
+ """,
1086
+ )
1087
+
1088
+ x_aflow_ael_elastic_anisotropy = Quantity(
1089
+ type=np.float64,
1090
+ shape=[],
1091
+ description="""
1092
+ """,
1093
+ )
1094
+
1095
+ x_aflow_ael_youngs_modulus_vrh = Quantity(
1096
+ type=np.float64,
1097
+ shape=[],
1098
+ description="""
1099
+ """,
1100
+ )
1101
+
1102
+ x_aflow_ael_speed_sound_transverse = Quantity(
1103
+ type=np.float64,
1104
+ shape=[],
1105
+ description="""
1106
+ """,
1107
+ )
1108
+
1109
+ x_aflow_ael_speed_sound_longitudinal = Quantity(
1110
+ type=np.float64,
1111
+ shape=[],
1112
+ description="""
1113
+ """,
1114
+ )
1115
+
1116
+ x_aflow_ael_speed_sound_average = Quantity(
1117
+ type=np.float64,
1118
+ shape=[],
1119
+ description="""
1120
+ """,
1121
+ )
1122
+
1123
+ x_aflow_ael_pughs_modulus_ratio = Quantity(
1124
+ type=np.float64,
1125
+ shape=[],
1126
+ description="""
1127
+ """,
1128
+ )
1129
+
1130
+ x_aflow_ael_debye_temperature = Quantity(
1131
+ type=np.float64,
1132
+ shape=[],
1133
+ description="""
1134
+ """,
1135
+ )
1136
+
1137
+ x_aflow_ael_applied_pressure = Quantity(
1138
+ type=np.float64,
1139
+ shape=[],
1140
+ description="""
1141
+ """,
1142
+ )
1143
+
1144
+ x_aflow_ael_average_external_pressure = Quantity(
1145
+ type=np.float64,
1146
+ shape=[],
1147
+ description="""
1148
+ """,
1149
+ )
1150
+
1151
+ x_aflow_ael_stiffness_tensor = Quantity(
1152
+ type=np.float64,
1153
+ shape=[6, 6],
1154
+ description="""
1155
+ """,
1156
+ )
1157
+
1158
+ x_aflow_ael_compliance_tensor = Quantity(
1159
+ type=np.float64,
1160
+ shape=[6, 6],
1161
+ description="""
1162
+ """,
1163
+ )
1164
+
1165
+ x_aflow_bader_net_charges = Quantity(
1166
+ type=np.float64,
1167
+ shape=['x_aflow_natoms'],
1168
+ description="""
1169
+ """,
1170
+ )
1171
+
1172
+ x_aflow_bader_atomic_volumes = Quantity(
1173
+ type=np.float64,
1174
+ shape=['x_aflow_natoms'],
1175
+ description="""
1176
+ """,
1177
+ )
1178
+
1179
+ x_aflow_n_files = Quantity(
1180
+ type=np.int32,
1181
+ shape=[],
1182
+ description="""
1183
+ """,
1184
+ )
1185
+
1186
+ x_aflow_files = Quantity(
1187
+ type=str,
1188
+ shape=['x_aflow_n_files'],
1189
+ description="""
1190
+ """,
1191
+ )
1192
+
1193
+ x_aflow_node_CPU_Model = Quantity(
1194
+ type=str,
1195
+ shape=[],
1196
+ description="""
1197
+ """,
1198
+ )
1199
+
1200
+ x_aflow_node_CPU_Cores = Quantity(
1201
+ type=np.int32,
1202
+ shape=[],
1203
+ description="""
1204
+ """,
1205
+ )
1206
+
1207
+ x_aflow_node_CPU_MHz = Quantity(
1208
+ type=np.int32,
1209
+ shape=[],
1210
+ description="""
1211
+ """,
1212
+ )
1213
+
1214
+ x_aflow_node_RAM_GB = Quantity(
1215
+ type=np.int32,
1216
+ shape=[],
1217
+ description="""
1218
+ """,
1219
+ )
1220
+
1221
+ x_aflow_catalog = Quantity(
1222
+ type=str,
1223
+ shape=[],
1224
+ description="""
1225
+ """,
1226
+ )
1227
+
1228
+ x_aflow_aflowlib_version = Quantity(
1229
+ type=str,
1230
+ shape=[],
1231
+ description="""
1232
+ """,
1233
+ )
1234
+
1235
+ x_aflow_aflowlib_date = Quantity(
1236
+ type=str,
1237
+ shape=['x_aflow_nspecies'],
1238
+ description="""
1239
+ """,
1240
+ )