tidy3d.SteadyCapacitanceMonitor#
- class SteadyCapacitanceMonitor[source]#
Bases:
HeatChargeMonitor
Capacitance monitor associated with a charge simulation.
- 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,
attrs
are mutable. For example, the following is allowed for setting anattr
obj.attrs['foo'] = bar
. Also note that Tidy3D` will raise aTypeError
ifattrs
contain objects that can not be serialized. One can check ifattrs
are serializable by callingobj.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.
name (ConstrainedStrValue) β Unique name for monitor.
unstructured (Literal[True] = True) β Return data on the original unstructured grid.
conformal (bool = False) β If
True
the simulation mesh will conform to the monitorβs geometry. While this can be set for both Cartesian and unstructured monitors, it bears higher significance for the latter ones. Effectively, settingconformal = True
for unstructured monitors (unstructured = True
) ensures that returned values will not be obtained by interpolation during postprocessing but rather directly transferred from the computational grid.
Example
>>> import tidy3d as td >>> capacitance_global_mnt = td.SteadyCapacitanceMonitor( ... center=(0, 0.14, 0), size=(td.inf, td.inf, 0), name="capacitance_global_mnt", ... )
Attributes
Methods
Inherited Common Usage
- unstructured#
- __hash__()#
Hash method.