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
kpoints: Kpoints=Field(description="The actual k-points used in the calculation.")
89
88
parameters: dict[str, Any] =Field(description="The default-padded input parameters interpreted by VASP.")
90
89
bandgap: float=Field(description="The bandgap - note that this field is derived from the Vasprun object.")
91
-
potcar_symbols : list[str] |None=Field(None, description="Optional: if a POTCAR is unavailable, this is used to determine the functional used in the calculation.")
90
+
potcar_symbols: list[str] |None=Field(
91
+
None,
92
+
description="Optional: if a POTCAR is unavailable, this is used to determine the functional used in the calculation.",
93
+
)
92
94
93
95
@classmethod
94
96
deffrom_vasprun(cls, vasprun: Vasprun) ->Self:
@@ -105,7 +107,7 @@ class VaspInputSafe(BaseModel):
105
107
structure: Structure=Field(description="The structure associated with the calculation.")
106
108
kpoints: Kpoints|None=Field(None, description="The optional KPOINTS or IBZKPT file used in the calculation.")
107
109
potcar: list[PotcarSummaryStats] |None=Field(None, description="The optional POTCAR used in the calculation.")
0 commit comments