Skip to content

Commit

Permalink
added carrier density deviation quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
aalbino2 committed Aug 22, 2024
1 parent e383792 commit 0b7b2a0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/nomad_material_processing/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,14 +524,25 @@ class ElectronicProperties(ArchiveSection):
),
)
carrier_density = Quantity(
type=np.dtype(float),
type=float,
unit='1 / cm**3',
a_eln=ELNAnnotation(
component=ELNComponentEnum.NumberEditQuantity,
),
description="""Concentration of free charge carriers, electrons in the
conduction band and holes in the valence band.""",
)
carrier_density_deviation = Quantity(
type=float,
unit='1 / m**3',
a_eln=ELNAnnotation(
component=ELNComponentEnum.NumberEditQuantity,
defaultDisplayUnit='1 / cm**3',
label='± Carrier Density Deviation',
),
description="""Deviation in the 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'],
Expand Down

0 comments on commit 0b7b2a0

Please sign in to comment.