tidy3d.components.lumped_element.LumpedElement#
- class LumpedElement[source]#
- Bases: - Tidy3dBaseModel,- ABC- Base class describing the interface all lumped elements obey. - 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().
- name (ConstrainedStrValue) β Unique name for the lumped element. 
- num_grid_cells (Optional[PositiveInt] = 3) β Number of mesh grid cells associated with the lumped element along each direction. Used in generating the suggested list of - MeshOverrideStructureobjects. A value of- Nonewill turn off mesh refinement suggestions.
 
 - Attributes - Default parameters for plotting a - LumpedElementobject.- Methods - Converts the - LumpedElementobject to a- Geometry.- Creates a suggested - MeshOverrideStructurelist that could be added to the- Simulation- to_structure([grid])- Converts the network portion of the - LumpedElementobject to a- Structure.- to_structures([grid])- Converts the - LumpedElementobject to a list of- Structurewhich are ready to be added to the- Simulation- Inherited Common Usage - name#
 - num_grid_cells#
 - property plot_params#
- Default parameters for plotting a - LumpedElementobject.
 - abstract to_mesh_overrides()[source]#
- Creates a suggested - MeshOverrideStructurelist that could be added to the- Simulation
 - abstract to_geometry()[source]#
- Converts the - LumpedElementobject to a- Geometry.
 - abstract to_structure(grid=None)[source]#
- Converts the network portion of the - LumpedElementobject to a- Structure.
 - to_structures(grid=None)[source]#
- Converts the - LumpedElementobject to a list of- Structurewhich are ready to be added to the- Simulation
 - __hash__()#
- Hash method.