tidy3d.plugins.adjoint.JaxMedium#
- class JaxMedium[source]#
Bases:
Medium,AbstractJaxMediumA
Mediumregistered with jax.- 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.permittivity (Attribute:
permittivity) βTypeConstrainedFloatValue
Default= 1.0
UnitsNone (relative permittivity)
DescriptionRelative permittivity.
conductivity (Attribute:
conductivity) βTypefloat
Default= 0.0
UnitsS/um
DescriptionElectric conductivity. Defined such that the imaginary part of the complex permittivity at angular frequency omega is given by conductivity/omega.
permittivity_jax (Attribute:
permittivity_jax) βTypeUnion[float, NumpyArrayType, Array, JVPTracer, object]
Default= 1.0
DescriptionRelative permittivity of the medium. May be a
jaxArray.conductivity_jax (Attribute:
conductivity_jax) βTypeUnion[float, NumpyArrayType, Array, JVPTracer, object]
Default= 0.0
UnitsS/um
DescriptionElectric conductivity. Defined such that the imaginary part of the complex permittivity at angular frequency omega is given by conductivity/omega.
Attributes
Methods
store_vjp(grad_data_fwd,Β grad_data_adj,Β ...)Returns the gradient of the medium parameters given forward and adjoint field data.
- permittivity_jax#
- conductivity_jax#
- store_vjp(grad_data_fwd, grad_data_adj, sim_bounds, wvl_mat, inside_fn)[source]#
Returns the gradient of the medium parameters given forward and adjoint field data.
- __hash__()#
Hash method.