Skip to content

Commit

Permalink
updated outputs list
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudz committed Jun 27, 2024
1 parent bf7da80 commit 44b93a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
8 changes: 7 additions & 1 deletion src/nomad_simulations/schema_packages/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@
Permittivity,
XASSpectrum,
TotalEnergy,
KineticEnergy,
PotentialEnergy,
TotalForce,
Temperature,
Temperature
)


Expand Down Expand Up @@ -119,6 +121,10 @@ class Outputs(ArchiveSection):

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

kinetic_energy = SubSection(sub_section=KineticEnergy.m_def, repeats=True)

potential_energy = SubSection(sub_section=PotentialEnergy.m_def, repeats=True)

total_force = SubSection(sub_section=TotalForce.m_def, repeats=True)

temperature = SubSection(sub_section=Temperature.m_def, repeats=True)
Expand Down
9 changes: 5 additions & 4 deletions src/nomad_simulations/schema_packages/properties/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@
from .band_structure import ElectronicBandStructure, ElectronicEigenvalues
from .energies import (
FermiLevel,
BaseEnergy,
EnergyContribution,
TotalEnergy,
Energy,
ClassicalEnergy,
QuantumEnergy,
KineticEnergy,
PotentialEnergy
)
from .forces import TotalForce, Force
from .forces import BaseForce, ForceContribution, TotalForce
from .thermodynamics import Temperature, ChemicalPotential
from .fermi_surface import FermiSurface
from .hopping_matrix import CrystalFieldSplitting, HoppingMatrix
Expand Down

0 comments on commit 44b93a1

Please sign in to comment.