tidy3d.plugins.microwave.Custom2DCurrentIntegral#
- class Custom2DCurrentIntegral[source]#
Bases:
Custom2DPathIntegral,Custom2DCurrentIntegralSpecClass for computing conduction current via AmpΓ¨reβs circuital law on a custom path. To compute the current flowing in the positive
axisdirection, the vertices should be ordered in a counterclockwise direction.- 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().axis (Literal[0, 1, 2]) β Specifies dimension of the planar axis (0,1,2) -> (x,y,z).
position (float) β Position of the plane along the
axis.vertices (ArrayLike[dtype=float, ndim=2]) β [units = um]. List of (d1, d2) defining the 2 dimensional positions of the path. The index of dimension should be in the ascending order, which means if the axis corresponds with
y, the coordinates of the vertices should be (x, z). If you wish to indicate a closed contour, the final vertex should be made equal to the first vertex, i.e.,vertices[-1] == vertices[0]
Example
>>> import numpy as np >>> vertices = np.array([[0, 0], [2, 0], [2, 1], [0, 1], [0, 0]]) >>> current = Custom2DCurrentIntegral( ... axis=2, ... position=0.0, ... vertices=vertices, ... )
Attributes
Methods
compute_current(em_field)Compute current flowing in a custom loop.
Inherited Common Usage
- compute_current(em_field)[source]#
Compute current flowing in a custom loop.
- Parameters:
em_field (
IntegrableMonitorDataType) β The electromagnetic field data that will be used for integrating.- Returns:
Result of current computation over remaining dimensions (frequency, time, mode indices).
- Return type:
CurrentIntegralResultType
- __hash__()#
Hash method.