tidy3d.components.medium.CustomDispersiveMedium#
- class CustomDispersiveMedium[source]#
Bases:
AbstractCustomMedium
,DispersiveMedium
,ABC
A spatially varying dispersive medium.
- 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.
heat_spec (Union[FluidSpec, SolidSpec, NoneType] = None) โ Specification of the medium heat properties. They are used for solving the heat equation via the
HeatSimulation
interface. 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 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
.interp_method (Literal['nearest', 'linear'] = nearest) โ Interpolation method to obtain permittivity values that are not supplied at the Yee grids; For grids outside the range of the supplied data, extrapolation will be applied. When the extrapolated value is smaller (greater) than the minimal (maximal) of the supplied data, the extrapolated value will take the minimal (maximal) of the supplied data.
subpixel (bool = False) โ If
True
, apply the subpixel averaging method specified bySimulation
โs fieldsubpixel
for this type of material on the interface of the structure, including exterior boundary and intersection interfaces with other structures.
Attributes
Whether the medium is isotropic.
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
Inherited Common Usage
- 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].
- property is_isotropic#
Whether the medium is isotropic.
- property pole_residue#
Representation of Medium as a pole-residue model.
- __hash__()#
Hash method.