tidy3d.ShockleyReedHallRecombination#
- class ShockleyReedHallRecombination[source]#
Bases:
Tidy3dBaseModel
Defines the parameters for the Shockley-Reed-Hall (SRH) recombination model.
- 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()
.tau_n (PositiveFloat) – Electron lifetime in seconds. TODOMARCCHECK
tau_p (PositiveFloat) – Hole lifetime in seconds. TODOMARCCHECK.
Notes
The recombination rate parameter from this model is defined from [1] as follows:
Note that the electron and holes densities are defined within the
SemiconductorMedium
. The electron lifetime and hole lifetimes need to be defined.Example
>>> import tidy3d as td >>> default_Si = td.ShockleyReedHallRecombination( ... tau_n=3.3e-6, ... tau_p=4e-6, ... )
Note
Important considerations when using this model:
Currently, lifetimes are considered constant (not dependent on temperature or doping).
This model represents mid-gap traps Shockley-Reed-Hall recombination.
Attributes
Methods
Inherited Common Usage
- tau_n#
- tau_p#
- __hash__()#
Hash method.