Skip to content

Commit

Permalink
add dielectric + optical absorption coeff to CalculationOutput model
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmathis committed Aug 6, 2024
1 parent 578f615 commit 8b23a06
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions emmet-core/emmet/core/vasp/calculation.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,13 @@ class CalculationOutput(BaseModel):
description="The magnetization density, defined as total_mag/volume "
"(units of A^-3)",
)
dielectric: Optional[dict[str, list]] = Field(
None,
description="Energy of incident photons in ev and real and imaginary parts of the dielectric tensor",
)
optical_absorption_coeff: Optional[list] = Field(
None, description="Optical absorption coefficient in cm^-1"
)
epsilon_static: Optional[ListMatrix3D] = Field(
None, description="The high-frequency dielectric constant"
)
Expand Down

0 comments on commit 8b23a06

Please sign in to comment.