tidy3d.plugins.invdes.InverseDesignMulti#
- class InverseDesignMulti[source]#
Bases:
AbstractInverseDesignInverseDesignwith multiple simulations and corresponding postprocess functions.- 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 anattrobj.attrs['foo'] = bar. Also note that Tidy3D` will raise aTypeErrorifattrscontain objects that can not be serialized. One can check ifattrsare serializable by callingobj.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 fromwebfunctions.simulations (Tuple[Simulation, ...]) β Set of simulation without the design regions or monitors used in the objective fn.
post_process_fn (Callable[[tidy3d.plugins.adjoint.components.data.sim_data.JaxSimulationData], float]) β
listofJaxSimulationDatainstances corresponding to eachSimulationin.simulations. Should return afloatcontribution to the objective function.output_monitor_names (Optional[Tuple[Union[Tuple[str, ...], NoneType], ...]] = 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 toJaxSimulation.output_monitors. While this will work, there may be warnings if the monitors are not compatible with theadjointplugin, for example if there areFieldMonitorinstances with.colocate != False.
Attributes
List of individual
InverseDesignobjects corresponding to this instance.construct the objective function for this
InverseDesignobject.Methods
to_simulation(params)Convert the
InverseDesignto a corresponding list of ``td.Simulation``s given params.to_simulation_data(params,Β task_name,Β **kwargs)Convert the
InverseDesignMultito a set of ``td.Simulation``s and run async.Inherited Common Usage
- simulations#
- post_process_fn#
- output_monitor_names#
- property designs#
List of individual
InverseDesignobjects corresponding to this instance.
- property objective_fn#
construct the objective function for this
InverseDesignobject.
- to_simulation(params)[source]#
Convert the
InverseDesignto a corresponding list of ``td.Simulation``s given params.
- to_simulation_data(params, task_name, **kwargs)[source]#
Convert the
InverseDesignMultito a set of ``td.Simulation``s and run async.
- __hash__()#
Hash method.