tidy3d.ModeSource#
- class ModeSource[source]#
Bases:
DirectionalSource
,PlanarSource
,BroadbandSource
Injects current source to excite modal profile on finite extent plane.
- Parameters:
name (Optional[str] = None) β Optional name for the source.
center (Tuple[float, float, float] = (0.0, 0.0, 0.0)) β [units = um]. Center of object in x, y, and z.
size (Tuple[NonNegativeFloat, NonNegativeFloat, NonNegativeFloat]) β [units = um]. Size in x, y, and z directions.
source_time (Union[GaussianPulse, ContinuousWave, CustomSourceTime]) β Specification of the source time-dependence.
num_freqs (ConstrainedIntValue = 1) β Number of points used to approximate the frequency dependence of injected field. A Chebyshev interpolation is used, thus, only a small number of points, i.e., less than 20, is typically sufficient to obtain converged results.
direction (Literal['+', '-']) β Specifies propagation in the positive or negative direction of the injection axis.
mode_spec (ModeSpec = ModeSpec(num_modes=1, target_neff=None, num_pml=(0,, 0), filter_pol=None, angle_theta=0.0, angle_phi=0.0, precision='single', bend_radius=None, bend_axis=None, track_freq='central', group_index_step=False, type='ModeSpec')) β Parameters to feed to mode solver which determine modes measured by monitor.
mode_index (NonNegativeInt = 0) β Index into the collection of modes returned by mode solver. Specifies which mode to inject using this source. If larger than
mode_spec.num_modes
,num_modes
in the solver will be set tomode_index + 1
.
Notes
Using this mode source, it is possible selectively excite one of the guided modes of a waveguide. This can be computed in our eigenmode solver
tidy3d.plugins.mode.ModeSolver
and implement the mode simulation in FDTD.Mode sources are normalized to inject exactly 1W of power at the central frequency.
The modal source allows you to do directional excitation. Illustrated by the image below, the field is perfectly launched to the right of the source and thereβs zero field to the left of the source. Now you can contrast the behavior of the modal source with that of a dipole source. If you just put a dipole into the waveguide, well, you see quite a bit different in the field distribution. First of all, the dipole source is not directional launching. It launches waves in both directions. The second is that the polarization of the dipole is set to selectively excite a TE mode. But it takes some propagation distance before the mode settles into a perfect TE mode profile. During this process, there is radiation into the substrate.
Example
>>> pulse = GaussianPulse(freq0=200e12, fwidth=20e12) >>> mode_spec = ModeSpec(target_neff=2.) >>> mode_source = ModeSource( ... size=(10,10,0), ... source_time=pulse, ... mode_spec=mode_spec, ... mode_index=1, ... direction='-')
See also
tidy3d.plugins.mode.ModeSolver
:Interface for solving electromagnetic eigenmodes in a 2D plane with translational invariance in the third dimension.
- Notebooks:
- Lectures:
Attributes
Azimuth angle of propagation.
Polar angle of propagation.
Methods
- mode_spec#
- mode_index#
- property angle_theta#
Polar angle of propagation.
- property angle_phi#
Azimuth angle of propagation.
- __hash__()#
Hash method.