tidy3d.TwoPhotonAbsorption#
- class TwoPhotonAbsorption[source]#
Bases:
NonlinearModel
Model for two-photon absorption (TPA) nonlinearity which gives an intensity-dependent absorption of the form
. Also includes free-carrier absorption (FCA) and free-carrier plasma dispersion (FCPD) effects. The expression for the nonlinear polarization is given below.- Parameters:
beta (Union[float, tidycomplex, ComplexNumber] = 0) – [units = um / W]. Coefficient for two-photon absorption (TPA).
tau (NonNegativeFloat = 0) – [units = sec]. Lifetime for the free carriers created by two-photon absorption (TPA).
sigma (NonNegativeFloat = 0) – [units = um^2]. Total cross section for free-carrier absorption (FCA). Contains contributions from electrons and from holes.
e_e (NonNegativeFloat = 1) – Exponent for the free electron refractive index shift in the free-carrier plasma dispersion (FCPD).
e_h (NonNegativeFloat = 1) – Exponent for the free hole refractive index shift in the free-carrier plasma dispersion (FCPD).
c_e (float = 0) – [units = um^(3 e_e)]. Coefficient for the free electron refractive index shift in the free-carrier plasma dispersion (FCPD).
c_h (float = 0) – [units = um^(3 e_h)]. Coefficient for the free hole refractive index shift in the free-carrier plasma dispersion (FCPD).
n0 (Union[tidycomplex, ComplexNumber, NoneType] = None) – Complex linear refractive index of the medium, computed for instance using ‘medium.nk_model’. If not provided, it is calculated automatically using the central frequencies of the simulation sources (as long as these are all equal).
freq0 (Optional[PositiveFloat] = None) – Central frequency, used to calculate the energy of the free-carriers excited by two-photon absorption. If not provided, it is obtained automatically from the simulation sources (as long as these are all equal).
Note
Note
This frequency-domain equation is implemented in the time domain using complex-valued fields.
Note
Different field components do not interact nonlinearly. For example, when calculating
, we approximate . This approximation is valid when the E field is predominantly polarized along one of the x, y, or z axes.Note
The implementation is described in:
N. Suzuki, "FDTD Analysis of Two-Photon Absorption and Free-Carrier Absorption in Si High-Index-Contrast Waveguides," J. Light. Technol. 25, 9 (2007).
Example
>>> tpa_model = TwoPhotonAbsorption(beta=1)
Attributes
Whether the model uses complex fields.
Methods
- beta#
- tau#
- sigma#
- e_e#
- e_h#
- c_e#
- c_h#
- n0#
- freq0#
- property complex_fields#
Whether the model uses complex fields.
- __hash__()#
Hash method.