tidy3d.SemiconductorMedium#
- class SemiconductorMedium[source]#
Bases:
AbstractChargeMedium
This class is used to define semiconductors.
- 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()
.name (Optional[str] = None) – Optional unique name for medium.
frequency_range (Optional[Tuple[float, float]] = None) – [units = (Hz, Hz)]. Optional range of validity for the medium.
allow_gain (bool = False) – Allow the medium to be active. Caution: simulations with a gain medium are unstable, and are likely to diverge.Simulations where ‘allow_gain’ is set to ‘True’ will still be charged even if diverged. Monitor data up to the divergence point will still be returned and can be useful in some cases.
nonlinear_spec (Union[NonlinearSpec, NonlinearSusceptibility] = None) – Nonlinear spec applied on top of the base medium properties.
modulation_spec (Optional[ModulationSpec] = None) – Modulation spec applied on top of the base medium properties.
viz_spec (Optional[VisualizationSpec] = None) – Plotting specification for visualizing medium.
heat_spec (Union[FluidSpec, SolidSpec, SolidMedium, FluidMedium, NoneType] = None) – DEPRECATED: Use td.MultiPhysicsMedium. Specification of the medium heat properties. They are used for solving the heat equation via the
HeatSimulation
interface. Such simulations can beused for investigating the influence of heat propagation on the properties of optical systems. Once the temperature distribution in the system is found usingHeatSimulation
object,Simulation.perturbed_mediums_copy()
can be used to convert mediums with perturbation models defined into spatially dependent custom mediums. Otherwise, theheat_spec
does not directly affect the running of an opticalSimulation
.permittivity (ConstrainedFloatValue = 1.0) – [units = None (relative permittivity)]. Relative permittivity.
N_c (PositiveFloat) – [units = cm^(-3)].
Effective density of states in the conduction band.N_v (PositiveFloat) – [units = cm^(-3)].
Effective density of states in the valence band.E_g (PositiveFloat) – [units = eV]. Band-gap energy
mobility (Union[CaugheyThomasMobility, ConstantMobilityModel]) – Mobility model
R (Tuple[Union[AugerRecombination, RadiativeRecombination, ShockleyReedHallRecombination], ...]) – Array containing the R models to be applied to the material.
delta_E_g (SlotboomBandGapNarrowing) – Bandgap narrowing model.
N_a (Union[NonNegativeFloat, SpatialDataArray, Tuple[Union[tidy3d.components.tcad.doping.ConstantDoping, tidy3d.components.tcad.doping.GaussianDoping], ...]] = 0) – [units = 1/cm^3]. Units of 1/cm^3
N_d (Union[NonNegativeFloat, SpatialDataArray, Tuple[Union[tidy3d.components.tcad.doping.ConstantDoping, tidy3d.components.tcad.doping.GaussianDoping], ...]] = 0) – [units = 1/cm^3]. Units of 1/cm^3
Notes
Semiconductors are associated with
Charge
simulations. During these simulations the Drift-Diffusion (DD) equations will be solved in semiconductors. In what follows, a description of the assumptions taken and its limitations is put forward.The iso-thermal DD equations are summarized here
As well as iso-thermal, the system is considered to be at
. This restriction will be removed in future releases.The above system requires the definition of the flux functions (free carrier current density),
and . We consider the usual formwhere we simplify the effective field defined in [1] to
i.e., we are not considering the effect of band-gab narrowing and degeneracy on the effective electric field
. This is a good approximation for non-degenerate semiconductors.Let’s explore how material properties are defined as class parameters or other classes.
Symbol
Parameter Name
Description
N_a
Ionized acceptors density
N_d
Ionized donors density
N_c
Effective density of states in the conduction band.
N_v
Effective density of states in valence band.
R
Generation-Recombination term.
E_g
Bandgap Energy.
delta_E_g
Bandgap Narrowing.
conductivity
Electrical conductivity.
permittivity
Relative permittivity.
tidy3d.constants.Q_e
Fundamental electron charge.
Example
>>> import tidy3d as td >>> default_Si = td.SemiconductorMedium( ... N_c=2.86e19, ... N_v=3.1e19, ... E_g=1.11, ... mobility=td.CaugheyThomasMobility( ... mu_n_min=52.2, ... mu_n=1471.0, ... mu_p_min=44.9, ... mu_p=470.5, ... exp_t_mu=-2.33, ... exp_d_n=0.68, ... exp_d_p=0.719, ... ref_N=2.23e17, ... exp_t_mu_min=-0.57, ... exp_t_d=2.4, ... exp_t_d_exp=-0.146, ... ), ... R=([ ... td.ShockleyReedHallRecombination( ... tau_n=3.3e-6, ... tau_p=4e-6 ... ), ... td.RadiativeRecombination( ... r_const=1.6e-14 ... ), ... td.AugerRecombination( ... c_n=2.8e-31, ... c_p=9.9e-32 ... ), ... ]), ... delta_E_g=td.SlotboomBandGapNarrowing( ... v1=6.92 * 1e-3, ... n2=1.3e17, ... c2=0.5, ... ), ... N_a=0, ... N_d=0 ... )
Warning
Current limitations of the formulation include:
Boltzmann statistics are supported
Iso-thermal equations with
Steady state only
Dopants are considered to be fully ionized
Note
Both
and can be either a positive number or anxarray.DataArray
.Default values for parameters and models are those appropriate for Silicon.
The current implementation is a good approximation for non-degenerate semiconductors.
Attributes
Methods
Inherited Common Usage
- N_c#
- N_v#
- E_g#
- mobility#
- R#
- delta_E_g#
- N_a#
- N_d#
- __hash__()#
Hash method.