You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
These fields are a subset of the `emmet.core.summary.SummaryDoc`
15
+
model fields, with a few extra fields to include
16
+
robocrystallographer autogenerated descriptions and similarity scores.
17
+
"""
18
+
19
+
nsites: int|None=Field(
20
+
None,
21
+
description="The number of sites in the structure as found on the Materials Project.",
22
+
)
23
+
24
+
nelements: int|None=Field(
25
+
None, description="The number of unique elements in this structure."
26
+
)
27
+
formula_pretty: str|None=Field(
28
+
None, description="The chemical formula of this material."
29
+
)
30
+
formula_anonymous: str|None=Field(
31
+
None,
32
+
description="The chemical formula of this material's prototype, i.e., without sp.",
33
+
)
34
+
chemsys: str|None=Field(
35
+
None,
36
+
description="A dash-delimited string separating the unique elements in this material.",
37
+
)
38
+
volume: float|None=Field(
39
+
None,
40
+
description="The volume of the structure associated with this material in cubic Angstrom (ų).",
41
+
)
42
+
density: float|None=Field(
43
+
None,
44
+
description="The volume of the structure associated with this material in grams per cubic centimeter (g/cm³).",
45
+
)
46
+
density_atomic: float|None=Field(
47
+
None,
48
+
description="The volume per atom of the structure associated with this material in ų/atom.",
49
+
)
50
+
51
+
space_group_number: int|None=Field(
52
+
None,
53
+
description="The international space group number of this material (Reference: https://en.wikipedia.org/wiki/Space_group#Table_of_space_groups_in_3_dimensions).",
54
+
)
55
+
56
+
space_group_symbol: str|None=Field(
57
+
None,
58
+
description="The international space group symbol of this material (Reference: https://en.wikipedia.org/wiki/Space_group#Table_of_space_groups_in_3_dimensions).",
59
+
)
60
+
61
+
crystal_system: str|None=Field(
62
+
None,
63
+
description="The crystal system of this material (Reference: https://en.wikipedia.org/wiki/Crystal_system)",
64
+
)
65
+
66
+
point_group: str|None=Field(None, description="The point group of the lattice.")
67
+
68
+
material_id: str|None=Field(
69
+
None,
70
+
description="The Materials Project ID of this material, generally of the form `mp-1`, `mp-2`, etc.",
71
+
)
72
+
73
+
deprecated: bool=Field(
74
+
True,
75
+
description=(
76
+
"If True, the Materials Project considers this material to be deprecated / untrustworthy. "
77
+
"If False, the data contained herein should be considered robust."
78
+
),
79
+
)
80
+
81
+
formation_energy_per_atom: float|None=Field(
82
+
None,
83
+
description="The DFT-computed enthalpy of formation at zero kelvin (0K) with corrections, in eV/atom.",
84
+
)
85
+
86
+
energy_above_hull: float|None=Field(
87
+
None,
88
+
description=(
89
+
"The energy above the thermodynamic hull for this material, in eV/atom. "
90
+
"This quantity is non-negative. Zero indicates a stable material. "
91
+
"Small values indicate slightly unstable materials, which may stabilize at "
92
+
"higher temperatures. Large values indicate highly unstable materials."
93
+
),
94
+
)
95
+
96
+
is_stable: bool|None=Field(
97
+
None,
98
+
description="Whether this material lies on the hull, i.e., its `energy_above_hull` is almost zero.",
0 commit comments