tidy3d.plugins.microwave.VoltageIntegralAxisAligned#
- class VoltageIntegralAxisAligned[source]#
- Bases: - AxisAlignedPathIntegral- Class for computing the voltage between two points defined by an axis-aligned line. - 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 an- attr- obj.attrs['foo'] = bar. Also note that Tidy3D` will raise a- TypeErrorif- attrscontain objects that can not be serialized. One can check if- attrsare serializable by calling- obj.json().
- center (Union[tuple[Union[float, autograd.tracer.Box], Union[float, autograd.tracer.Box], Union[float, autograd.tracer.Box]], Box] = (0.0, 0.0, 0.0)) β [units = um]. Center of object in x, y, and z. 
- size (Union[tuple[Union[pydantic.v1.types.NonNegativeFloat, autograd.tracer.Box], Union[pydantic.v1.types.NonNegativeFloat, autograd.tracer.Box], Union[pydantic.v1.types.NonNegativeFloat, autograd.tracer.Box]], Box]) β [units = um]. Size in x, y, and z directions. 
- extrapolate_to_endpoints (bool = False) β If the endpoints of the path integral terminate at or near a material interface, the field is likely discontinuous. When this field is - True, fields that are outside and on the bounds of the integral are ignored. Should be enabled when computing voltage between two conductors.
- snap_path_to_grid (bool = False) β It might be desireable to integrate exactly along the Yee grid associated with a field. When this field is - True, the integration path will be snapped to the grid.
- sign (Literal['+', '-']) β Positive indicates V=Vb-Va where position b has a larger coordinate along the axis of integration. 
 
 - Attributes - Methods - compute_voltage(em_field)- Compute voltage along path defined by a line. - Inherited Common Usage - sign#
 - __hash__()#
- Hash method.