Skip to content

Commit

Permalink
Fix after rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
JosePizarro3 committed Apr 16, 2024
1 parent 1079bbe commit f4b2415
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/nomad_simulations/properties/band_gap.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class ElectronicBandGap(PhysicalProperty):

value = Quantity(
type=np.float64,
unit='joule', # ! this units need to be fixed when we have dynamical units
unit='joule',
description="""
The value of the electronic band gap. This value has to be positive, otherwise it will
prop an error and be set to None by the `normalize()` function.
Expand Down
8 changes: 4 additions & 4 deletions src/nomad_simulations/properties/energies.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ class FermiLevel(PhysicalProperty):
Energy required to add or extract a charge from a material at zero temperature. It can be also defined as the chemical potential at zero temperature.
"""

iri = 'https://fairmat-nfdi.github.io/fairmat-taxonomy/FermiLevel'
iri = 'http://fairmat-nfdi.eu/taxonomy/FermiLevel'

value = Quantity(
type=np.float64,
unit='joule', # ! this units need to be fixed when we have dynamical units
unit='joule',
description="""
Value of the Fermi level.
""",
Expand All @@ -51,11 +51,11 @@ class ChemicalPotential(PhysicalProperty):
Free energy cost of adding or extracting a particle from a thermodynamic system.
"""

iri = 'https://fairmat-nfdi.github.io/fairmat-taxonomy/ChemicalPotential'
iri = 'http://fairmat-nfdi.eu/taxonomy/ChemicalPotential'

value = Quantity(
type=np.float64,
unit='joule', # ! this units need to be fixed when we have dynamical units
unit='joule',
description="""
Value of the chemical potential.
""",
Expand Down
2 changes: 1 addition & 1 deletion src/nomad_simulations/properties/spectral_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def normalize(self, archive, logger) -> None:

class ElectronicDensityOfStates(SpectralProfile):
"""
Electronic Density of States (DOS).
Number of electronic states accessible for the charges per energy and per volume.
"""

iri = 'http://fairmat-nfdi.eu/taxonomy/ElectronicDensityOfStates'
Expand Down

0 comments on commit f4b2415

Please sign in to comment.