tidy3d.VarshniEnergyBandGap#
- class VarshniEnergyBandGap[source]#
Bases:
Tidy3dBaseModelModels the temperature dependence of the energy band gap (Eg) using the Varshni formula.
- 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,
attrsare mutable. For example, the following is allowed for setting anattrobj.attrs['foo'] = bar. Also note that Tidy3D will raise aTypeErrorifattrscontain objects that can not be serialized. One can check ifattrsare serializable by callingobj.json().eg_0 (PositiveFloat) β [units = eV]. Energy band gap at absolute zero (0 Kelvin).
alpha (PositiveFloat) β [units = eV/K]. Empirical Varshni coefficient (Ξ±).
beta (PositiveFloat) β [units = K]. Empirical Varshni coefficient (Ξ²), related to the Debye temperature.
Notes
The model implements the following formula:
\[E_g(T) = E_g(0) - \frac{\alpha T^2}{T + \beta}\]Example
>>> # Parameters for Silicon (Si) >>> si_model = VarshniEnergyBandGap( ... eg_0=1.17, ... alpha=4.73e-4, ... beta=636.0, ... )
References
Varshni, Y. P. (1967). Temperature dependence of the energy gap in semiconductors. Physica, 34(1), 149-154.
Attributes
Methods
Inherited Common Usage
- eg_0#
- alpha#
- beta#
- __hash__()#
Hash method.