tidy3d.components.data.monitor_data.MonitorData#
- class MonitorData[source]#
Bases:
AbstractMonitorData,ABCAbstract 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,
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().monitor (Union[FieldMonitor, FieldTimeMonitor, AuxFieldTimeMonitor, PermittivityMonitor, FluxMonitor, FluxTimeMonitor, ModeMonitor, ModeSolverMonitor, FieldProjectionAngleMonitor, FieldProjectionCartesianMonitor, FieldProjectionKSpaceMonitor, DiffractionMonitor, DirectivityMonitor]) – 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.
normalize(source_spectrum_fn)Return copy of self after normalization is applied using source spectrum function.
scale_fields_by_freq_array(freq_array[, method])Scale fields in
MonitorDataby an array of values stored in aFreqDataArray.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.
- scale_fields_by_freq_array(freq_array, method=None)[source]#
Scale fields in
MonitorDataby an array of values stored in aFreqDataArray.- Parameters:
freq_array (FreqDataArray) – Array containing the scaling factors in the frequency domain.
method (str = None) – Interpolation method to use when selecting frequency values. If None, uses default xarray method. Passed to xarray’s sel() method.
- Returns:
A new instance of
MonitorDatawith scaled field values.- Return type:
- __hash__()#
Hash method.