tidy3d.components.data.monitor_data.MonitorData#
- class MonitorData[source]#
Bases:
AbstractMonitorData
,ABC
Abstract base class of objects that store data pertaining to a single
monitor
.- 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()
.monitor (Union[FieldMonitor, FieldTimeMonitor, PermittivityMonitor, FluxMonitor, FluxTimeMonitor, ModeMonitor, ModeSolverMonitor, FieldProjectionAngleMonitor, FieldProjectionCartesianMonitor, FieldProjectionKSpaceMonitor, DiffractionMonitor]) โ Monitor associated with the data.
Attributes
Return self with symmetry applied.
Methods
flip_direction
(direction)Flip the direction of a string
('+', '-') -> ('-', '+')
.Get the complex amplitude out of some data.
make_adjoint_sources
(dataset_names,ย fwidth)Generate adjoint sources for this
MonitorData
instance.normalize
(source_spectrum_fn)Return copy of self after normalization is applied using source spectrum function.
Inherited Common Usage
- monitor#
- property symmetry_expanded#
Return self with symmetry applied.
- normalize(source_spectrum_fn)[source]#
Return copy of self after normalization is applied using source spectrum function.
- make_adjoint_sources(dataset_names, fwidth)[source]#
Generate adjoint sources for this
MonitorData
instance.
- __hash__()#
Hash method.