mat3ra-esse 2025.4.17.post0__py3-none-any.whl → 2025.5.13.post0__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.
Potentially problematic release.
This version of mat3ra-esse might be problematic. Click here for more details.
- mat3ra/esse/data/examples.py +1 -1
- mat3ra/esse/data/schemas.py +1 -1
- mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/__init__.py +3 -0
- mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/atoms.py +41 -0
- mat3ra/esse/models/apse/db/nist_jarvis/2024_3.13/db_entry.py +55 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/__init__.py +3 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/__init__.py +3 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_positions.py +51 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/atomic_species.py +34 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/cell.py +111 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/cell_parameters.py +36 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/control.py +169 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/electrons.py +139 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/hubbard.py +194 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/ions.py +422 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/k_points.py +73 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw.x/system.py +841 -0
- mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py +1990 -0
- mat3ra/esse/models/core/abstract/coordinate_2d.py +13 -0
- mat3ra/esse/models/core/abstract/coordinate_3d.py +13 -0
- mat3ra/esse/models/core/abstract/kpoint.py +16 -0
- mat3ra/esse/models/core/abstract/matrix_3x3.py +17 -0
- mat3ra/esse/models/core/abstract/vector_3d.py +13 -0
- mat3ra/esse/models/core/abstract/vector_boolean_3d.py +13 -0
- mat3ra/esse/models/core/primitive/array_of_ids.py +5 -5
- mat3ra/esse/models/core/primitive/object_with_id.py +14 -0
- mat3ra/esse/models/core/primitive/object_with_id_and_value.py +20 -0
- mat3ra/esse/models/core/reusable/atomic_scalars.py +4 -4
- mat3ra/esse/models/core/reusable/atomic_string.py +18 -0
- mat3ra/esse/models/core/reusable/atomic_vector.py +20 -0
- mat3ra/esse/models/core/reusable/atomic_vectors.py +9 -9
- mat3ra/esse/models/core/reusable/band_gap.py +8 -2
- mat3ra/esse/models/core/reusable/energy.py +2 -2
- mat3ra/esse/models/core/reusable/energy_accuracy_levels/__init__.py +3 -0
- mat3ra/esse/models/element.py +6 -6
- mat3ra/esse/models/material/__init__.py +68 -46
- mat3ra/esse/models/material/reusable/__init__.py +3 -0
- mat3ra/esse/models/material/reusable/repetitions.py +25 -0
- mat3ra/esse/models/material/reusable/slab/__init__.py +3 -0
- mat3ra/esse/models/material/reusable/slab/enums.py +13 -0
- mat3ra/esse/models/material/reusable/slab/miller_indices.py +16 -0
- mat3ra/esse/models/material/reusable/slab/number_of_layers.py +16 -0
- mat3ra/esse/models/material/reusable/slab/termination.py +18 -0
- mat3ra/esse/models/material/reusable/slab/thickness.py +16 -0
- mat3ra/esse/models/material/reusable/slab/vacuum.py +16 -0
- mat3ra/esse/models/material/reusable/supercell_matrix_2d.py +25 -0
- mat3ra/esse/models/material/reusable/supercell_matrix_3d.py +27 -0
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/__init__.py +3 -0
- mat3ra/esse/models/materials_category/single_material/two_dimensional/slab/configuration.py +445 -0
- mat3ra/esse/models/methods_directory/physical/psp/file/__init__.py +129 -0
- mat3ra/esse/models/methods_directory/physical/psp/file_data_item/__init__.py +111 -0
- mat3ra/esse/models/properties_directory/derived_properties.py +13 -13
- mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +12 -3
- mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
- mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +1 -1
- mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
- mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/formation_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
- mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
- mat3ra/esse/models/properties_directory/structural/atomic_forces.py +8 -8
- mat3ra/esse/models/properties_directory/structural/basis/__init__.py +38 -16
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraint.py +20 -0
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints.py +11 -14
- mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py +33 -0
- mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinate.py +10 -4
- mat3ra/esse/models/properties_directory/structural/basis/atomic_coordinates.py +16 -27
- mat3ra/esse/models/properties_directory/structural/basis/atomic_element.py +6 -7
- mat3ra/esse/models/properties_directory/structural/basis/atomic_elements.py +27 -0
- mat3ra/esse/models/properties_directory/structural/basis/atomic_label.py +11 -5
- mat3ra/esse/models/properties_directory/structural/basis/atomic_labels.py +27 -0
- mat3ra/esse/models/properties_directory/structural/basis/bonds.py +3 -3
- mat3ra/esse/models/properties_directory/structural/basis/units_enum.py +12 -0
- mat3ra/esse/models/properties_directory/structural/lattice/__init__.py +16 -16
- mat3ra/esse/models/properties_directory/structural/lattice/lattice_vectors.py +10 -11
- mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py +3 -0
- mat3ra/esse/models/properties_directory/structural/lattice/units/angle_enum.py +12 -0
- mat3ra/esse/models/properties_directory/structural/lattice/units/length_enum.py +12 -0
- mat3ra/esse/models/properties_directory/structural/lattice/vectors/__init__.py +26 -0
- mat3ra/esse/models/properties_directory/structural/lattice/vectors/units_enum.py +12 -0
- mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +8 -8
- mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +9 -9
- mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py +3 -3
- mat3ra/esse/models/properties_directory/structural/patterns/ring.py +3 -3
- mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py +3 -3
- mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +2 -2
- {mat3ra_esse-2025.4.17.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/METADATA +1 -1
- {mat3ra_esse-2025.4.17.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/RECORD +101 -49
- {mat3ra_esse-2025.4.17.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/WHEEL +1 -1
- {mat3ra_esse-2025.4.17.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/licenses/LICENSE.md +0 -0
- {mat3ra_esse-2025.4.17.post0.dist-info → mat3ra_esse-2025.5.13.post0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
# generated by datamodel-codegen:
|
|
2
|
+
# filename: methods_directory/physical/psp/file_data_item.json
|
|
3
|
+
# version: 0.25.5
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
from enum import Enum
|
|
8
|
+
from typing import List, Optional
|
|
9
|
+
|
|
10
|
+
from pydantic import BaseModel, ConfigDict, Field, confloat, conint, constr
|
|
11
|
+
|
|
12
|
+
from ..Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e import (
|
|
13
|
+
g,
|
|
14
|
+
)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class Type(Enum):
|
|
18
|
+
us = "us"
|
|
19
|
+
nc = "nc"
|
|
20
|
+
nc_fr = "nc-fr"
|
|
21
|
+
paw = "paw"
|
|
22
|
+
coulomb = "coulomb"
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ExchangeCorrelation(BaseModel):
|
|
26
|
+
approximation: Optional[str] = None
|
|
27
|
+
"""
|
|
28
|
+
DFT approximation
|
|
29
|
+
"""
|
|
30
|
+
functional: Optional[str] = None
|
|
31
|
+
"""
|
|
32
|
+
Exchange correlation functional
|
|
33
|
+
"""
|
|
34
|
+
path: Optional[str] = Field(None, title="category path schema")
|
|
35
|
+
"""
|
|
36
|
+
TODO: Use regex once schema draft version has been updated
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class AtomicOrbitalSchema(BaseModel):
|
|
41
|
+
orbitalName: Optional[constr(pattern=r"^[1-7][sSpPdDfF]$")] = None
|
|
42
|
+
orbitalIndex: Optional[conint(ge=1)] = None
|
|
43
|
+
principalNumber: Optional[conint(ge=1, le=7)] = None
|
|
44
|
+
angularMomentum: Optional[conint(ge=0, le=3)] = None
|
|
45
|
+
occupation: Optional[confloat(ge=0.0, le=14.0)] = None
|
|
46
|
+
"""
|
|
47
|
+
Shell occupation
|
|
48
|
+
"""
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
class Name(Enum):
|
|
52
|
+
pseudopotential = "pseudopotential"
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
class Cutoffs(BaseModel):
|
|
56
|
+
model_config = ConfigDict(
|
|
57
|
+
extra="forbid",
|
|
58
|
+
)
|
|
59
|
+
wavefunction: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
|
|
60
|
+
"""
|
|
61
|
+
Energy cutoff values for wavefunction plane wave expansion.
|
|
62
|
+
"""
|
|
63
|
+
density: Optional[List[g.FieldUsedForSuggestedWavefunctionAndChargeDensityCutoffs]] = None
|
|
64
|
+
"""
|
|
65
|
+
Energy cutoff values for charge density plane wave expansion.
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class FileDataItem(BaseModel):
|
|
70
|
+
element: str
|
|
71
|
+
"""
|
|
72
|
+
chemical element
|
|
73
|
+
"""
|
|
74
|
+
hash: Optional[str] = None
|
|
75
|
+
"""
|
|
76
|
+
MD5 hash of the pseudopotential file
|
|
77
|
+
"""
|
|
78
|
+
type: Type
|
|
79
|
+
source: str
|
|
80
|
+
"""
|
|
81
|
+
explains where this came from
|
|
82
|
+
"""
|
|
83
|
+
version: Optional[str] = None
|
|
84
|
+
"""
|
|
85
|
+
explains the version of where this came from
|
|
86
|
+
"""
|
|
87
|
+
exchangeCorrelation: ExchangeCorrelation
|
|
88
|
+
valenceConfiguration: Optional[List[AtomicOrbitalSchema]] = None
|
|
89
|
+
"""
|
|
90
|
+
contains pseudo orbital information, including orbital names and occupations
|
|
91
|
+
"""
|
|
92
|
+
path: str
|
|
93
|
+
"""
|
|
94
|
+
location of the pseudopotential file on filesystem
|
|
95
|
+
"""
|
|
96
|
+
apps: List[str]
|
|
97
|
+
"""
|
|
98
|
+
The names of the simulation engines that can use this pseudopotential, e.g. espresso
|
|
99
|
+
"""
|
|
100
|
+
filename: Optional[str] = None
|
|
101
|
+
"""
|
|
102
|
+
filename of pseudopotential file on filesystem
|
|
103
|
+
"""
|
|
104
|
+
name: Optional[Name] = None
|
|
105
|
+
"""
|
|
106
|
+
name of the data category
|
|
107
|
+
"""
|
|
108
|
+
cutoffs: Optional[Cutoffs] = None
|
|
109
|
+
"""
|
|
110
|
+
Suggested cutoff values for wave function and charge density.
|
|
111
|
+
"""
|
|
@@ -24,30 +24,30 @@ class VolumeSchema(BaseModel):
|
|
|
24
24
|
value: float
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Name20(Enum):
|
|
28
28
|
density = "density"
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class
|
|
31
|
+
class Units16(Enum):
|
|
32
32
|
g_cm_3 = "g/cm^3"
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
class DensitySchema(BaseModel):
|
|
36
36
|
name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
|
|
37
|
-
units: Optional[
|
|
37
|
+
units: Optional[Units16] = None
|
|
38
38
|
value: float
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
class
|
|
41
|
+
class Units17(Enum):
|
|
42
42
|
angstrom = "angstrom"
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
class ScalarSchema(BaseModel):
|
|
46
|
-
units: Optional[
|
|
46
|
+
units: Optional[Units17] = None
|
|
47
47
|
value: float
|
|
48
48
|
|
|
49
49
|
|
|
50
|
-
class
|
|
50
|
+
class Name21(Enum):
|
|
51
51
|
symmetry = "symmetry"
|
|
52
52
|
|
|
53
53
|
|
|
@@ -67,7 +67,7 @@ class SymmetrySchema(BaseModel):
|
|
|
67
67
|
name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
class
|
|
70
|
+
class Name22(Enum):
|
|
71
71
|
elemental_ratio = "elemental_ratio"
|
|
72
72
|
|
|
73
73
|
|
|
@@ -80,7 +80,7 @@ class ElementalRatio(BaseModel):
|
|
|
80
80
|
"""
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class Name23(Enum):
|
|
84
84
|
p_norm = "p-norm"
|
|
85
85
|
|
|
86
86
|
|
|
@@ -93,7 +93,7 @@ class PNorm(BaseModel):
|
|
|
93
93
|
value: float
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
class
|
|
96
|
+
class Name24(Enum):
|
|
97
97
|
inchi = "inchi"
|
|
98
98
|
|
|
99
99
|
|
|
@@ -102,7 +102,7 @@ class InChIRepresentationSchema(BaseModel):
|
|
|
102
102
|
value: str
|
|
103
103
|
|
|
104
104
|
|
|
105
|
-
class
|
|
105
|
+
class Name25(Enum):
|
|
106
106
|
inchi_key = "inchi_key"
|
|
107
107
|
|
|
108
108
|
|
|
@@ -111,7 +111,7 @@ class InChIKeyRepresentationSchema(BaseModel):
|
|
|
111
111
|
value: str
|
|
112
112
|
|
|
113
113
|
|
|
114
|
-
class
|
|
114
|
+
class DerivedPropertiesSchema(
|
|
115
115
|
RootModel[
|
|
116
116
|
Union[
|
|
117
117
|
VolumeSchema,
|
|
@@ -135,5 +135,5 @@ class DerivedPropertiesSchema1(
|
|
|
135
135
|
] = Field(..., discriminator="name")
|
|
136
136
|
|
|
137
137
|
|
|
138
|
-
class
|
|
139
|
-
root: List[
|
|
138
|
+
class DerivedPropertiesSchema1(RootModel[List[DerivedPropertiesSchema]]):
|
|
139
|
+
root: List[DerivedPropertiesSchema] = Field(..., title="derived properties schema")
|
|
@@ -42,7 +42,7 @@ class Label1(Enum):
|
|
|
42
42
|
energy = "energy"
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
class
|
|
45
|
+
class Units3(Enum):
|
|
46
46
|
kJ_mol = "kJ/mol"
|
|
47
47
|
eV = "eV"
|
|
48
48
|
J_mol = "J/mol"
|
|
@@ -57,7 +57,7 @@ class AxisSchema3(BaseModel):
|
|
|
57
57
|
"""
|
|
58
58
|
label of an axis object
|
|
59
59
|
"""
|
|
60
|
-
units: Optional[
|
|
60
|
+
units: Optional[Units3] = None
|
|
61
61
|
"""
|
|
62
62
|
units for an axis
|
|
63
63
|
"""
|
|
@@ -30,8 +30,14 @@ class Units(Enum):
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class BandGapSchema(BaseModel):
|
|
33
|
-
kpointConduction: Optional[List[float]] = Field(None, max_length=3, min_length=3, title="
|
|
34
|
-
|
|
33
|
+
kpointConduction: Optional[List[float]] = Field(None, max_length=3, min_length=3, title="kpoint schema")
|
|
34
|
+
"""
|
|
35
|
+
A k-point is a point in reciprocal space of a crystal.
|
|
36
|
+
"""
|
|
37
|
+
kpointValence: Optional[List[float]] = Field(None, max_length=3, min_length=3, title="kpoint schema")
|
|
38
|
+
"""
|
|
39
|
+
A k-point is a point in reciprocal space of a crystal.
|
|
40
|
+
"""
|
|
35
41
|
eigenvalueConduction: Optional[float] = None
|
|
36
42
|
"""
|
|
37
43
|
eigenvalue at k-point in conduction band
|
|
@@ -53,7 +59,10 @@ class Eigenvalue1(BaseModel):
|
|
|
53
59
|
|
|
54
60
|
|
|
55
61
|
class Eigenvalue(BaseModel):
|
|
56
|
-
kpoint: Optional[List[float]] = Field(None, max_length=3, min_length=3, title="
|
|
62
|
+
kpoint: Optional[List[float]] = Field(None, max_length=3, min_length=3, title="kpoint schema")
|
|
63
|
+
"""
|
|
64
|
+
A k-point is a point in reciprocal space of a crystal.
|
|
65
|
+
"""
|
|
57
66
|
weight: Optional[float] = None
|
|
58
67
|
eigenvalues: Optional[List[Eigenvalue1]] = None
|
|
59
68
|
|
|
@@ -34,7 +34,7 @@ class Label3(Enum):
|
|
|
34
34
|
energy = "energy"
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
class
|
|
37
|
+
class Units7(Enum):
|
|
38
38
|
kJ_mol = "kJ/mol"
|
|
39
39
|
eV = "eV"
|
|
40
40
|
J_mol = "J/mol"
|
|
@@ -49,7 +49,7 @@ class AxisSchema6(BaseModel):
|
|
|
49
49
|
"""
|
|
50
50
|
label of an axis object
|
|
51
51
|
"""
|
|
52
|
-
units: Optional[
|
|
52
|
+
units: Optional[Units7] = None
|
|
53
53
|
"""
|
|
54
54
|
units for an axis
|
|
55
55
|
"""
|
|
@@ -39,7 +39,7 @@ class Label7(Enum):
|
|
|
39
39
|
density_of_states = "density of states"
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
class
|
|
42
|
+
class Units14(Enum):
|
|
43
43
|
states_unitcell = "states/unitcell"
|
|
44
44
|
|
|
45
45
|
|
|
@@ -48,7 +48,7 @@ class AxisSchema10(BaseModel):
|
|
|
48
48
|
"""
|
|
49
49
|
label of an axis object
|
|
50
50
|
"""
|
|
51
|
-
units: Optional[
|
|
51
|
+
units: Optional[Units14] = None
|
|
52
52
|
"""
|
|
53
53
|
units for an axis
|
|
54
54
|
"""
|
|
@@ -34,7 +34,7 @@ class Label9(Enum):
|
|
|
34
34
|
frequency = "frequency"
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
class
|
|
37
|
+
class Units42(Enum):
|
|
38
38
|
cm_1 = "cm-1"
|
|
39
39
|
THz = "THz"
|
|
40
40
|
meV = "meV"
|
|
@@ -45,7 +45,7 @@ class AxisSchema12(BaseModel):
|
|
|
45
45
|
"""
|
|
46
46
|
label of an axis object
|
|
47
47
|
"""
|
|
48
|
-
units: Optional[
|
|
48
|
+
units: Optional[Units42] = None
|
|
49
49
|
"""
|
|
50
50
|
units for an axis
|
|
51
51
|
"""
|
|
@@ -35,7 +35,7 @@ class Label11(Enum):
|
|
|
35
35
|
Phonon_DOS = "Phonon DOS"
|
|
36
36
|
|
|
37
37
|
|
|
38
|
-
class
|
|
38
|
+
class Units44(Enum):
|
|
39
39
|
states_cm_1 = "states/cm-1"
|
|
40
40
|
states_THz = "states/THz"
|
|
41
41
|
states_meV = "states/meV"
|
|
@@ -46,7 +46,7 @@ class AxisSchema14(BaseModel):
|
|
|
46
46
|
"""
|
|
47
47
|
label of an axis object
|
|
48
48
|
"""
|
|
49
|
-
units: Optional[
|
|
49
|
+
units: Optional[Units44] = None
|
|
50
50
|
"""
|
|
51
51
|
units for an axis
|
|
52
52
|
"""
|
|
@@ -25,7 +25,7 @@ class Units(Enum):
|
|
|
25
25
|
|
|
26
26
|
class StressTensorSchema(BaseModel):
|
|
27
27
|
value: Optional[List[ArrayOf3NumberElementsSchema]] = Field(
|
|
28
|
-
None, max_length=3, min_length=3, title="
|
|
28
|
+
None, max_length=3, min_length=3, title="matrix 3x3 schema"
|
|
29
29
|
)
|
|
30
30
|
name: Optional[Name] = None
|
|
31
31
|
units: Optional[Units] = None
|
|
@@ -19,115 +19,115 @@ class ScalarSchema(BaseModel):
|
|
|
19
19
|
value: float
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
class
|
|
22
|
+
class Name82(Enum):
|
|
23
23
|
harris_foulkes = "harris_foulkes"
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
class
|
|
27
|
-
name: Optional[
|
|
26
|
+
class ScalarSchema7(BaseModel):
|
|
27
|
+
name: Optional[Name82] = None
|
|
28
28
|
value: float
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
class
|
|
31
|
+
class Name83(Enum):
|
|
32
32
|
one_electron = "one_electron"
|
|
33
33
|
|
|
34
34
|
|
|
35
|
-
class
|
|
36
|
-
name: Optional[
|
|
35
|
+
class ScalarSchema8(BaseModel):
|
|
36
|
+
name: Optional[Name83] = None
|
|
37
37
|
value: float
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
class
|
|
40
|
+
class Name84(Enum):
|
|
41
41
|
hartree = "hartree"
|
|
42
42
|
|
|
43
43
|
|
|
44
|
-
class
|
|
45
|
-
name: Optional[
|
|
44
|
+
class ScalarSchema9(BaseModel):
|
|
45
|
+
name: Optional[Name84] = None
|
|
46
46
|
value: float
|
|
47
47
|
|
|
48
48
|
|
|
49
|
-
class
|
|
49
|
+
class Name85(Enum):
|
|
50
50
|
exchange = "exchange"
|
|
51
51
|
|
|
52
52
|
|
|
53
|
-
class
|
|
54
|
-
name: Optional[
|
|
53
|
+
class ScalarSchema10(BaseModel):
|
|
54
|
+
name: Optional[Name85] = None
|
|
55
55
|
value: float
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class
|
|
58
|
+
class Name86(Enum):
|
|
59
59
|
exchange_correlation = "exchange_correlation"
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class
|
|
63
|
-
name: Optional[
|
|
62
|
+
class ScalarSchema11(BaseModel):
|
|
63
|
+
name: Optional[Name86] = None
|
|
64
64
|
value: float
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
class
|
|
67
|
+
class Name87(Enum):
|
|
68
68
|
ewald = "ewald"
|
|
69
69
|
|
|
70
70
|
|
|
71
|
-
class
|
|
72
|
-
name: Optional[
|
|
71
|
+
class ScalarSchema12(BaseModel):
|
|
72
|
+
name: Optional[Name87] = None
|
|
73
73
|
value: float
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
class
|
|
76
|
+
class Name88(Enum):
|
|
77
77
|
alphaZ = "alphaZ"
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
class
|
|
81
|
-
name: Optional[
|
|
80
|
+
class ScalarSchema13(BaseModel):
|
|
81
|
+
name: Optional[Name88] = None
|
|
82
82
|
value: float
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class Name89(Enum):
|
|
86
86
|
atomic_energy = "atomic_energy"
|
|
87
87
|
|
|
88
88
|
|
|
89
|
-
class
|
|
90
|
-
name: Optional[
|
|
89
|
+
class ScalarSchema14(BaseModel):
|
|
90
|
+
name: Optional[Name89] = None
|
|
91
91
|
value: float
|
|
92
92
|
|
|
93
93
|
|
|
94
|
-
class
|
|
94
|
+
class Name90(Enum):
|
|
95
95
|
eigenvalues = "eigenvalues"
|
|
96
96
|
|
|
97
97
|
|
|
98
|
-
class
|
|
99
|
-
name: Optional[
|
|
98
|
+
class ScalarSchema15(BaseModel):
|
|
99
|
+
name: Optional[Name90] = None
|
|
100
100
|
value: float
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
class
|
|
103
|
+
class Name91(Enum):
|
|
104
104
|
PAW_double_counting_correction_2 = "PAW_double-counting_correction_2"
|
|
105
105
|
|
|
106
106
|
|
|
107
|
-
class
|
|
108
|
-
name: Optional[
|
|
107
|
+
class ScalarSchema16(BaseModel):
|
|
108
|
+
name: Optional[Name91] = None
|
|
109
109
|
value: float
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
class
|
|
112
|
+
class Name92(Enum):
|
|
113
113
|
PAW_double_counting_correction_3 = "PAW_double-counting_correction_3"
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
117
|
-
name: Optional[
|
|
116
|
+
class ScalarSchema17(BaseModel):
|
|
117
|
+
name: Optional[Name92] = None
|
|
118
118
|
value: float
|
|
119
119
|
|
|
120
120
|
|
|
121
|
-
class
|
|
121
|
+
class Name93(Enum):
|
|
122
122
|
hartree_fock = "hartree_fock"
|
|
123
123
|
|
|
124
124
|
|
|
125
|
-
class
|
|
126
|
-
name: Optional[
|
|
125
|
+
class ScalarSchema18(BaseModel):
|
|
126
|
+
name: Optional[Name93] = None
|
|
127
127
|
value: float
|
|
128
128
|
|
|
129
129
|
|
|
130
|
-
class
|
|
130
|
+
class Name94(Enum):
|
|
131
131
|
total_energy_contributions = "total_energy_contributions"
|
|
132
132
|
|
|
133
133
|
|
|
@@ -146,53 +146,53 @@ class TotalEnergyContributionsSchema(BaseModel):
|
|
|
146
146
|
"""
|
|
147
147
|
product of temperature and configurational entropy
|
|
148
148
|
"""
|
|
149
|
-
harrisFoulkes: Optional[
|
|
149
|
+
harrisFoulkes: Optional[ScalarSchema7] = Field(None, title="scalar schema")
|
|
150
150
|
"""
|
|
151
151
|
non self-consitent energy based on an input charge density
|
|
152
152
|
"""
|
|
153
|
-
oneElectron: Optional[
|
|
153
|
+
oneElectron: Optional[ScalarSchema8] = Field(None, title="scalar schema")
|
|
154
154
|
"""
|
|
155
155
|
kinetic + pseudopotential energy
|
|
156
156
|
"""
|
|
157
|
-
hartree: Optional[
|
|
157
|
+
hartree: Optional[ScalarSchema9] = Field(None, title="scalar schema")
|
|
158
158
|
"""
|
|
159
159
|
energy due to coulomb potential
|
|
160
160
|
"""
|
|
161
|
-
exchange: Optional[
|
|
161
|
+
exchange: Optional[ScalarSchema10] = Field(None, title="scalar schema")
|
|
162
162
|
"""
|
|
163
163
|
exchange energy
|
|
164
164
|
"""
|
|
165
|
-
exchangeCorrelation: Optional[
|
|
165
|
+
exchangeCorrelation: Optional[ScalarSchema11] = Field(None, title="scalar schema")
|
|
166
166
|
"""
|
|
167
167
|
exchange and correlation energy per particle
|
|
168
168
|
"""
|
|
169
|
-
ewald: Optional[
|
|
169
|
+
ewald: Optional[ScalarSchema12] = Field(None, title="scalar schema")
|
|
170
170
|
"""
|
|
171
171
|
summation of interaction energies at long length scales due to coloumbic interactions
|
|
172
172
|
"""
|
|
173
|
-
alphaZ: Optional[
|
|
173
|
+
alphaZ: Optional[ScalarSchema13] = Field(None, title="scalar schema")
|
|
174
174
|
"""
|
|
175
175
|
divergent electrostatic ion interaction in compensating electron gas
|
|
176
176
|
"""
|
|
177
|
-
atomicEnergy: Optional[
|
|
177
|
+
atomicEnergy: Optional[ScalarSchema14] = Field(None, title="scalar schema")
|
|
178
178
|
"""
|
|
179
179
|
kinetic energy of wavefunctions in the atomic limit
|
|
180
180
|
"""
|
|
181
|
-
eigenvalues: Optional[
|
|
181
|
+
eigenvalues: Optional[ScalarSchema15] = Field(None, title="scalar schema")
|
|
182
182
|
"""
|
|
183
183
|
sum of one electron energies of kinetic, electrostatic, and exchange correlation
|
|
184
184
|
"""
|
|
185
|
-
PAWDoubleCounting2: Optional[
|
|
185
|
+
PAWDoubleCounting2: Optional[ScalarSchema16] = Field(None, title="scalar schema")
|
|
186
186
|
"""
|
|
187
187
|
double counting correction 2
|
|
188
188
|
"""
|
|
189
|
-
PAWDoubleCounting3: Optional[
|
|
189
|
+
PAWDoubleCounting3: Optional[ScalarSchema17] = Field(None, title="scalar schema")
|
|
190
190
|
"""
|
|
191
191
|
double counting correction 3
|
|
192
192
|
"""
|
|
193
|
-
hartreeFock: Optional[
|
|
193
|
+
hartreeFock: Optional[ScalarSchema18] = Field(None, title="scalar schema")
|
|
194
194
|
"""
|
|
195
195
|
hartree-fock contribution
|
|
196
196
|
"""
|
|
197
|
-
name: Optional[
|
|
197
|
+
name: Optional[Name94] = None
|
|
198
198
|
units: Optional[Units] = None
|
|
@@ -38,7 +38,7 @@ class Label17(Enum):
|
|
|
38
38
|
Absorption_coefficient = "Absorption coefficient"
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
class
|
|
41
|
+
class Units61(Enum):
|
|
42
42
|
field_debye_angstrom__2 = "(debye/angstrom)^2"
|
|
43
43
|
km_mol = "km/mol"
|
|
44
44
|
m_mol = "m/mol"
|
|
@@ -50,7 +50,7 @@ class AxisSchema20(BaseModel):
|
|
|
50
50
|
"""
|
|
51
51
|
label of an axis object
|
|
52
52
|
"""
|
|
53
|
-
units: Optional[
|
|
53
|
+
units: Optional[Units61] = None
|
|
54
54
|
"""
|
|
55
55
|
units for an axis
|
|
56
56
|
"""
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units19(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ElectronAffinitySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units19]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units26(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class FermiEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units26]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units28(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class FormationEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units28]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units36(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class IonizationPotentialSchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units36]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units48(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class ReactionEnergyBarrierSchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units48]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units52(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class SurfaceEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units52]
|
|
34
34
|
value: float
|
|
@@ -24,11 +24,11 @@ class Units(Enum):
|
|
|
24
24
|
eV_atom = "eV/atom"
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
class
|
|
27
|
+
class Units55(Enum):
|
|
28
28
|
eV_A_2 = "eV/A^2"
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class TotalEnergySchema(BaseModel):
|
|
32
32
|
name: Name
|
|
33
|
-
units: Union[Units,
|
|
33
|
+
units: Union[Units, Units55]
|
|
34
34
|
value: float
|