Skip to content

Commit

Permalink
added TotalEnergy
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudz committed Jun 13, 2024
1 parent 77cfeec commit 9bdc61b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/nomad_simulations/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
AbsorptionSpectrum,
XASSpectrum,
Permittivity,
TotalEnergy
)


Expand Down Expand Up @@ -110,6 +111,8 @@ class Outputs(ArchiveSection):

xas_spectra = SubSection(sub_section=XASSpectrum.m_def, repeats=True)

total_energy = SubSection(SubSection=TotalEnergy.m_def, repeats=True)

# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #

Expand Down
2 changes: 1 addition & 1 deletion src/nomad_simulations/properties/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from .energies import FermiLevel, ChemicalPotential
from .energies import FermiLevel, ChemicalPotential, TotalEnergy
from .band_gap import ElectronicBandGap
from .spectral_profile import (
SpectralProfile,
Expand Down

0 comments on commit 9bdc61b

Please sign in to comment.