-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added energies.py and FermiLevel and ChemicalPotential
Added SpectralProfile, ElectronicDensityOfStates, XASSpectra in spectral_profile.py Check iri assignement in __init__ in PhysicalProperty Fixed ElectronicBandGap
- Loading branch information
1 parent
52558f1
commit b0e93d0
Showing
6 changed files
with
131 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
# | ||
# Copyright The NOMAD Authors. | ||
# | ||
# This file is part of NOMAD. See https://nomad-lab.eu for further info. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
import numpy as np | ||
|
||
from nomad.metainfo import Quantity, Section, Context | ||
|
||
from ..physical_property import PhysicalProperty | ||
|
||
|
||
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' | ||
|
||
value = Quantity( | ||
type=np.float64, | ||
unit='joule', # ! this units need to be fixed when we have dynamical units | ||
description=""" | ||
Value of the Fermi level. | ||
""", | ||
) | ||
|
||
def __init__(self, m_def: Section = None, m_context: Context = None, **kwargs): | ||
super().__init__(m_def, m_context, **kwargs) | ||
self.rank = [] # ? Is this here or in the attrs instantiation better? | ||
|
||
def normalize(self, archive, logger) -> None: | ||
super().normalize(archive, logger) | ||
|
||
|
||
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' | ||
|
||
value = Quantity( | ||
type=np.float64, | ||
unit='joule', # ! this units need to be fixed when we have dynamical units | ||
description=""" | ||
Value of the chemical potential. | ||
""", | ||
) | ||
|
||
def __init__(self, m_def: Section = None, m_context: Context = None, **kwargs): | ||
super().__init__(m_def, m_context, **kwargs) | ||
self.rank = [] # ? Is this here or in the attrs instantiation better? | ||
|
||
def normalize(self, archive, logger) -> None: | ||
super().normalize(archive, logger) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters