tidy3d.FieldProjectionAngleData#
- class FieldProjectionAngleData[source]#
- Bases: - AbstractFieldProjectionData- Data associated with a - FieldProjectionAngleMonitor: components of projected fields.- Parameters:
- monitor (FieldProjectionAngleMonitor) β Field projection monitor with an angle-based projection grid. 
- Er (FieldProjectionAngleDataArray) β Spatial distribution of r-component of the electric field. 
- Etheta (FieldProjectionAngleDataArray) β Spatial distribution of the theta-component of the electric field. 
- Ephi (FieldProjectionAngleDataArray) β Spatial distribution of phi-component of the electric field. 
- Hr (FieldProjectionAngleDataArray) β Spatial distribution of r-component of the magnetic field. 
- Htheta (FieldProjectionAngleDataArray) β Spatial distribution of theta-component of the magnetic field. 
- Hphi (FieldProjectionAngleDataArray) β Spatial distribution of phi-component of the magnetic field. 
- medium (Union[Medium, AnisotropicMedium, PECMedium, PoleResidue, Sellmeier, Lorentz, Debye, Drude, FullyAnisotropicMedium, CustomMedium, CustomPoleResidue, CustomSellmeier, CustomLorentz, CustomDebye, CustomDrude, CustomAnisotropicMedium, PerturbationMedium, PerturbationPoleResidue, Medium2D] = Medium(name=None, frequency_range=None, allow_gain=False, nonlinear_spec=None, modulation_spec=None, heat_spec=None, type='Medium', permittivity=1.0, conductivity=0.0)) β Background medium through which to project fields. 
- projection_surfaces (Tuple[FieldProjectionSurface, ...]) β Surfaces of the monitor where near fields were recorded for projection 
 
 - Example - >>> from tidy3d import FieldProjectionAngleDataArray >>> f = np.linspace(1e14, 2e14, 10) >>> r = np.atleast_1d(5) >>> theta = np.linspace(0, np.pi, 10) >>> phi = np.linspace(0, 2*np.pi, 20) >>> coords = dict(r=r, theta=theta, phi=phi, f=f) >>> values = (1+1j) * np.random.random((len(r), len(theta), len(phi), len(f))) >>> scalar_field = FieldProjectionAngleDataArray(values, coords=coords) >>> monitor = FieldProjectionAngleMonitor( ... center=(1,2,3), size=(2,2,2), freqs=f, name='n2f_monitor', phi=phi, theta=theta ... ) >>> data = FieldProjectionAngleData( ... monitor=monitor, Er=scalar_field, Etheta=scalar_field, Ephi=scalar_field, ... Hr=scalar_field, Htheta=scalar_field, Hphi=scalar_field, ... projection_surfaces=monitor.projection_surfaces, ... ) - Attributes - Azimuthal angles. - Radial distance. - Polar angles. - Methods - renormalize_fields(proj_distance)- Return a - FieldProjectionAngleDatawith fields re-normalized to a new projection distance, by applying a phase factor based on- proj_distance.- monitor#
 - projection_surfaces#
 - Er#
 - Etheta#
 - Ephi#
 - Hr#
 - Htheta#
 - Hphi#
 - property r#
- Radial distance. 
 - property theta#
- Polar angles. 
 - property phi#
- Azimuthal angles. 
 - renormalize_fields(proj_distance)[source]#
- Return a - FieldProjectionAngleDatawith fields re-normalized to a new projection distance, by applying a phase factor based on- proj_distance.- Parameters:
- proj_distance (float = None) β (micron) new radial distance relative to the monitorβs local origin. 
- Returns:
- Copy of this - FieldProjectionAngleDatawith fields re-projected to- proj_distance.
- Return type:
 
 - __hash__()#
- Hash method.