tidy3d.SteadyCapacitanceData#
- class SteadyCapacitanceData[source]#
Bases:
HeatChargeMonitorData
Class that stores capacitance data from 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()
.monitor (SteadyCapacitanceMonitor) β Capacitance data associated with a Charge simulation.
symmetry (Tuple[Literal[0, 1], Literal[0, 1], Literal[0, 1]] = (0, 0, 0)) β Symmetry of the original simulation in x, y, and z.
symmetry_center (Tuple[float, float, float] = (0, 0, 0)) β Symmetry center of the original simulation in x, y, and z.
hole_capacitance (Optional[SteadyVoltageDataArray] = None) β Small signal capacitance ($frac{dQ_p}{dV}$) associated to the monitor.
electron_capacitance (Optional[SteadyVoltageDataArray] = None) β Small signal capacitance ($frac{dQn}{dV}$) associated to the monitor.
Notes
- The small signal-capacitance of electrons \(C_n\) and holes \(C_p\) is computed from the charge due to
electrons \(Q_n\) and holes \(Q_p\) at an applied voltage \(V\) at a voltage difference
\(\Delta V\) between two simulations.
\[C_{n,p} = \frac{Q_{n,p}(V + \Delta V) - Q_{n,p}(V)}{\Delta V}\]This is only computed when a voltage source with more than two sources is included within the simulation and determines the \(\Delta V\).
Attributes
Return copy of self with symmetry applied.
Methods
field_name
(val)Gets the name of the fields to be plot.
warn_no_data
(val,Β values)Warn if no data provided.
Inherited Common Usage
- monitor#
- hole_capacitance#
- electron_capacitance#
- property symmetry_expanded_copy#
Return copy of self with symmetry applied.
- __hash__()#
Hash method.