tidy3d.components.medium.DispersiveMedium#
- class DispersiveMedium[source]#
Bases:
AbstractMedium,ABCA Medium with dispersion: field propagation characteristics depend on frequency.
- Parameters:
name (Attribute:
name) βTypeOptional[str]
Default= None
DescriptionOptional unique name for medium.
frequency_range (Attribute:
frequency_range) βTypeOptional[Tuple[float, float]]
Default= None
Units(Hz, Hz)
DescriptionOptional range of validity for the medium.
allow_gain (Attribute:
allow_gain) βTypebool
Default= False
DescriptionAllow 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 (Attribute:
nonlinear_spec) βTypeUnion[NonlinearSpec, NonlinearSusceptibility]
Default= None
DescriptionNonlinear spec applied on top of the base medium properties.
modulation_spec (Attribute:
modulation_spec) βTypeOptional[ModulationSpec]
Default= None
DescriptionModulation spec applied on top of the base medium properties.
heat_spec (Attribute:
heat_spec) βTypeUnion[FluidSpec, SolidSpec, NoneType]
Default= None
DescriptionSpecification of the medium heat properties. They are used for solving the heat equation via the
HeatSimulationinterface. Such simulations can be used for investigating the influence of heat propagation on the properties of optical systems. Once the temperature distribution in the system is found usingHeatSimulationobject,Simulation.perturbed_mediums_copy()can be used to convert mediums with perturbation models defined into spatially dependent custom mediums. Otherwise, theheat_specdoes not directly affect the running of an opticalSimulation.
Notes
In dispersive mediums, the displacement field \(D(t)\) depends on the previous electric field \(E( t')\) and time-dependent permittivity \(\epsilon\) changes.
\[D(t) = \int \epsilon(t - t') E(t') \delta t'\]Dispersive mediums can be defined in three ways:
Imported from our material library.
Defined directly by specifying the parameters in the various supplied dispersive models.
Fitted to optical n-k data using the dispersion fitting tool plugin.
It is important to keep in mind that dispersive materials are inevitably slower to simulate than their dispersion-less counterparts, with complexity increasing with the number of poles included in the dispersion model. For simulations with a narrow range of frequencies of interest, it may sometimes be faster to define the material through its real and imaginary refractive index at the center frequency.
See also
CustomPoleResidue:A spatially varying dispersive medium described by the pole-residue pair model.
- Notebooks
- Lectures
Attributes
This property computes the index of refraction related to CFL condition, so that the FDTD with this medium is stable when the time step size that doesn't take material factor into account is multiplied by
n_cfl.Representation of Medium as a pole-residue model.
Methods
complex_to_tuple(value)Convert a complex number to a tuple of real and imaginary parts.
tuple_to_complex(value)Convert a tuple of real and imaginary parts to complex number.
- property pole_residue#
Representation of Medium as a pole-residue model.
- property n_cfl#
This property computes the index of refraction related to CFL condition, so that the FDTD with this medium is stable when the time step size that doesnβt take material factor into account is multiplied by
n_cfl.For PoleResidue model, it equals
sqrt(eps_inf)[https://ieeexplore.ieee.org/document/9082879].
- static tuple_to_complex(value)[source]#
Convert a tuple of real and imaginary parts to complex number.
- static complex_to_tuple(value)[source]#
Convert a complex number to a tuple of real and imaginary parts.
- __hash__()#
Hash method.