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 an attr obj.attrs['foo'] = bar. Also note that Tidy3D` will raise a TypeError if attrs contain objects that can not be serialized. One can check if attrs are serializable by calling obj.json().

  • v1 (PositiveFloat) – [units = V]. V1,bgn parameter

  • n2 (PositiveFloat) – [units = 1/cm^3]. N2,bgn parameter

  • c2 (float) – C2,bgn parameter

  • min_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 ΔEG model is discussed in [1] as follows:

(1)ΔEG=V1,bgn(ln(NtotN2,bgn)+(ln(NtotN2,bgn))2+C2,bgn)ifNtot1015cm3,ΔEG=0ifNtot<1015cm3.

Note that Ntot is the total doping as defined within a SemiconductorMedium.

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.