tidy3d.SlotboomBandGapNarrowing#
- class SlotboomBandGapNarrowing[source]#
Bases:
Tidy3dBaseModel
Parameters for the Slotboom model for band-gap narrowing.
- Parameters:
attrs (dict = {}) – Dictionary storing arbitrary metadata for a Tidy3D object. This dictionary can be freely used by the user for storing data without affecting the operation of Tidy3D as it is not used internally. Note that, unlike regular Tidy3D fields,
attrs
are mutable. For example, the following is allowed for setting anattr
obj.attrs['foo'] = bar
. Also note that Tidy3D` will raise aTypeError
ifattrs
contain objects that can not be serialized. One can check ifattrs
are serializable by callingobj.json()
.v1 (PositiveFloat) – [units = V].
parametern2 (PositiveFloat) – [units = 1/cm^3].
parameterc2 (float) –
parametermin_N (NonNegativeFloat) – [units = 1/cm^3]. Bandgap narrowing is applied at location where total doping is higher than ‘min_N’.
Notes
The Slotboom band-gap narrowing
model is discussed in [1] as follows:Note that
is the total doping as defined within aSemiconductorMedium
.Example#
>>> import tidy3d as td >>> default_Si = td.SlotboomBandGapNarrowing( ... v1=6.92 * 1e-3, ... n2=1.3e17, ... c2=0.5, ... )
Attributes
Methods
Inherited Common Usage
- v1#
- n2#
- c2#
- min_N#
- __hash__()#
Hash method.