Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sphinx_parser/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def _sphinx__PAWHamiltonian(
nExcessElectrons: Optional[int] = None,
spinPolarized: Optional[bool] = None,
dipoleCorrection: Optional[bool] = None,
zField: Optional[float] = None,
zField: u(Optional[float], units="hartree/bohr") = None,
vExt: Optional[dict] = None,
xcMesh: Optional[dict] = None,
vdwCorrection: Optional[dict] = None,
Expand All @@ -416,8 +416,8 @@ def _sphinx__PAWHamiltonian(
nEmptyStates (int): The number of empty states to include in the calculation. (Optional)
nExcessElectrons (int): The number of excess electrons to include in the calculation. (Optional)
spinPolarized (bool): Whether to perform a spin-polarized calculation. (Optional)
dipoleCorrection (bool): Use the dipole correction for slab systems. The in-plane lattice must be perpendicular to the z- axis, and the third basis vector must be aligned with the z-axis. For charged calculation, this requests the generalized dipole correction, which may need some care for initializing the charge (see charged in the initialGuess group). (Optional)
zField (float): Use an additional electric field along z when using the dipole correction (eV/bohr). (Optional)
dipoleCorrection (bool): Use the dipole correction for slab systems. The in-plane lattice must be perpendicular to the z-axis, and the third basis vector must be aligned with the z-axis. For charged calculation, this requests the generalized dipole correction, which may need some care for initializing the charge (see charged in the initialGuess group). (Optional)
zField (float): Use an additional electric field along z when using the dipole correction. Units: hartree/bohr. (Optional)
vExt (dict): External potential. (Optional)
xcMesh (dict): Mesh for the exchange-correlation potential. (Optional)
vdwCorrection (dict): Van der Waals correction. (Optional)
Expand Down
5 changes: 3 additions & 2 deletions sphinx_parser/src/input_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,12 @@ sphinx:
dipoleCorrection:
data_type: bool
required: false
description: Use the dipole correction for slab systems. The in-plane lattice must be perpendicular to the z- axis, and the third basis vector must be aligned with the z-axis. For charged calculation, this requests the generalized dipole correction, which may need some care for initializing the charge (see charged in the initialGuess group).
description: Use the dipole correction for slab systems. The in-plane lattice must be perpendicular to the z-axis, and the third basis vector must be aligned with the z-axis. For charged calculation, this requests the generalized dipole correction, which may need some care for initializing the charge (see charged in the initialGuess group).
zField:
data_type: float
units: hartree/bohr
required: false
description: Use an additional electric field along z when using the dipole correction (eV/bohr)
description: Use an additional electric field along z when using the dipole correction
vExt:
description: External potential
file:
Expand Down
Loading