From 46c615f181210c3e0958cbf7df00f949c7bd2e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20N=C3=A4sstr=C3=B6m?= Date: Tue, 30 Jul 2024 12:34:37 +0200 Subject: [PATCH] Added electrical resistivity to electronic properties (#50) --- src/nomad_material_processing/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/nomad_material_processing/__init__.py b/src/nomad_material_processing/__init__.py index 87cab4c..9e4f181 100644 --- a/src/nomad_material_processing/__init__.py +++ b/src/nomad_material_processing/__init__.py @@ -537,6 +537,16 @@ class ElectronicProperties(ArchiveSection): ), description='Concentration of free charge carriers, electrons in the conduction band and holes in the valence band.', ) + electrical_resistivity = Quantity( + type=float, + links=['http://fairmat-nfdi.eu/taxonomy/ElectricalResistivity'], + description='Resistance of the charges to move in the presence of an electric current.', + a_eln=ELNAnnotation( + component=ELNComponentEnum.NumberEditQuantity, + defaultDisplayUnit='ohm cm', + ), + unit='ohm m', + ) class Substrate(CompositeSystem):