tidy3d.plugins.invdes.InverseDesign#
- class InverseDesign[source]#
- Bases: - AbstractInverseDesign- Container for an inverse design problem. - 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 an- attr- obj.attrs['foo'] = bar. Also note that Tidy3D` will raise a- TypeErrorif- attrscontain objects that can not be serialized. One can check if- attrsare serializable by calling- obj.json().
- design_region (TopologyDesignRegion) β Region within which we will optimize the simulation. 
- task_name (str) β Task name to use in the objective function when running the - JaxSimulation.
- verbose (bool = False) β If - True, will print the regular output from- webfunctions.
- simulation (Simulation) β Simulation without the design regions or monitors used in the objective fn. 
- output_monitor_names (Optional[Tuple[str, ...]] = None) β Optional names of monitors whose data the differentiable output depends on.If this field is left - None, the plugin will try to add all compatible monitors to- JaxSimulation.output_monitors. While this will work, there may be warnings if the monitors are not compatible with the- adjointplugin, for example if there are- FieldMonitorinstances with- .colocate != False.
 
 - Attributes - Methods - is_output_monitor(monitor)- Whether a monitor is added to the - JaxSimulationas an- output_monitor.- separate_output_monitors(monitors)- Separate monitors into output_monitors and regular monitors. - to_simulation(params)- Convert the - InverseDesignto a corresponding- td.Simulationwith traced fields.- to_simulation_data(params,Β **kwargs)- Convert the - InverseDesignto a- td.Simulationand run it.- Inherited Common Usage - simulation#
 - output_monitor_names#
 - is_output_monitor(monitor)[source]#
- Whether a monitor is added to the - JaxSimulationas an- output_monitor.
 - separate_output_monitors(monitors)[source]#
- Separate monitors into output_monitors and regular monitors. 
 - to_simulation(params)[source]#
- Convert the - InverseDesignto a corresponding- td.Simulationwith traced fields.
 - to_simulation_data(params, **kwargs)[source]#
- Convert the - InverseDesignto a- td.Simulationand run it.
 - __hash__()#
- Hash method.