tidy3d.CaugheyThomasMobility#

class CaugheyThomasMobility[source]#

Bases: Tidy3dBaseModel

The Caughey-Thomas temperature-dependent carrier mobility 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 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().

  • mu_n_min (PositiveFloat) – Minimum electron mobility at reference temperature (300K) in cm^2/V-s.

  • mu_n (PositiveFloat) – Reference electron mobility at reference temperature (300K) in cm^2/V-s

  • mu_p_min (PositiveFloat) – Minimum hole mobility at reference temperature (300K) in cm^2/V-s.

  • mu_p (PositiveFloat) – Reference hole mobility at reference temperature (300K) in cm^2/V-s

  • exp_t_mu (float) – exp_d_n : PositiveFloat Exponent for doping dependence of electron mobility at reference temperature (300K).

  • exp_d_p (PositiveFloat) – Exponent for doping dependence of hole mobility at reference temperature (300K).

  • ref_N (PositiveFloat) – Reference doping at reference temperature (300K) in #/cm^3.

  • exp_t_mu_min (float) – Exponent of thermal dependence of minimum mobility.

  • exp_t_d (float) – Exponent of thermal dependence of reference doping.

  • exp_t_d_exp (float) – Exponent of thermal dependence of the doping exponent effect.

Notes

The general form of the Caughey-Thomas mobility model [1] is of the form:

μ0=μmaxμmin1+(N/Nref)z+μmin

where μ0 represents the low-field mobility and N is the total doping (acceptors + donors). μmax, μmin, z, and Nref are temperature dependent, the dependence being of the form

ϕ=ϕref(TTref)α

and Tref is taken to be 300K.

The complete form (with temperature effects) for the low-field mobility can be written as

μ0=μmax(TTref)α2μmin(TTref)α11+(N/Nref(TTref)α3)αn,p(TTref)α4+μmin(TTref)α1

The following table maps the symbols used in the equations above with the names used in the code:

Symbol

Parameter Name

Description

μmin

mu_n_min, mu_p_min

Minimum low-field mobility for n and p

μmax

mu_n, mu_p

Maximum low-field mobility for n and p

α1

exp_t_mu_min

Exponent for temperature dependence of the minimum mobility coefficient

α2

exp_t_mu

Exponent for temperature dependence of the maximum mobility coefficient

αn,p

exp_d_p, exp_d_n

Exponent for doping dependence of hole mobility.

α4

exp_t_d_exp

Exponent for the temperature dependence of the exponent αn and αp

Nref

ref_N

Reference doping parameter

Example

>>> import tidy3d as td
>>> default_Si = 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,
... )

Warning

There are some current limitations of this model:

  • High electric field effects not yet supported.

Attributes

Methods

Inherited Common Usage

mu_n_min#
mu_n#
mu_p_min#
mu_p#
exp_t_mu#
exp_d_n#
exp_d_p#
ref_N#
exp_t_mu_min#
exp_t_d#
exp_t_d_exp#
__hash__()#

Hash method.