Skip to content

Commit 9bdc61b

Browse files
author
jrudz
committed
added TotalEnergy
1 parent 77cfeec commit 9bdc61b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/nomad_simulations/outputs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
AbsorptionSpectrum,
4141
XASSpectrum,
4242
Permittivity,
43+
TotalEnergy
4344
)
4445

4546

@@ -110,6 +111,8 @@ class Outputs(ArchiveSection):
110111

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

114+
total_energy = SubSection(SubSection=TotalEnergy.m_def, repeats=True)
115+
113116
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
114117
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
115118

src/nomad_simulations/properties/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# See the License for the specific language governing permissions and
1717
# limitations under the License.
1818

19-
from .energies import FermiLevel, ChemicalPotential
19+
from .energies import FermiLevel, ChemicalPotential, TotalEnergy
2020
from .band_gap import ElectronicBandGap
2121
from .spectral_profile import (
2222
SpectralProfile,

0 commit comments

Comments
 (0)