Skip to content

Commit

Permalink
add BANDGAP_TOL: float = 1e-4 to Atomate2Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Oct 14, 2023
1 parent 88e85e0 commit ead2dbc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/atomate2/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ class Atomate2Settings(BaseSettings):
SYMPREC: float = Field(
0.1, description="Symmetry precision for spglib symmetry finding."
)
BANDGAP_TOL: float = Field(
1e-4,
description="Tolerance for determining if a material is a semiconductor or "
"metal",
)
CUSTODIAN_SCRATCH_DIR: Optional[str] = Field(
None, description="Path to scratch directory used by custodian."
)
Expand Down

0 comments on commit ead2dbc

Please sign in to comment.