Skip to content

Commit

Permalink
update ComputedEntry
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Sep 29, 2020
1 parent 295ab37 commit 01667df
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions emmet-core/emmet/stubs/misc.py
Expand Up @@ -18,11 +18,14 @@ class ComputedEntry(BaseModel):
composition: Composition = Field(
None, description="Full composition for this entry"
)
energy_per_atom: float = Field(
None, description="DFT total energy per atom in eV/atom"
)
energy: float = Field(None, description="DFT total energy in eV")
correction: float = Field(None, description="Energy correction in eV")
energy_adjustments: List = Field(
None,
description="An optional list of EnergyAdjustment to be applied to the energy."
" This is used to modify the energy for certain analyses."
" Defaults to None.",
)
parameters: Dict = Field(
None,
description="Dictionary of extra parameters for the underlying calculation",
Expand Down

0 comments on commit 01667df

Please sign in to comment.