From 9ef13ea5aedcc8f70db3bb0e7e20bfc55c887a70 Mon Sep 17 00:00:00 2001 From: EBB2675 Date: Thu, 21 Nov 2024 14:57:41 +0100 Subject: [PATCH] remove contributions --- .../schema_packages/model_method.py | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/src/nomad_simulations/schema_packages/model_method.py b/src/nomad_simulations/schema_packages/model_method.py index 47d78939..c7b143ff 100644 --- a/src/nomad_simulations/schema_packages/model_method.py +++ b/src/nomad_simulations/schema_packages/model_method.py @@ -1221,26 +1221,3 @@ class DMFT(ModelMethodElectronic): def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: super().normalize(archive, logger) - - -class MolecularHamiltonianContributions(BaseModelMethod): - type = Quantity( - type=MEnum( - 'coulomb', - 'exchange', - 'spin_orbit_coupling', - 'scalar_relativistic', - 'ri_approximation', - 'cosx_approximation', - 'density_fitting', - 'local_correlation', - 'explicit_correlation', - ), # TODO: expand this - description=""" - TODO: Name is only a placeholder. - Typical sub-terms of the molecular hamiltonian. - """, - ) - - def normalize(self, archive: 'EntryArchive', logger: 'BoundLogger') -> None: - super().normalize(archive, logger)