:class:`DielectricLayer` ======================== .. py:class:: pyedb.libraries.common.DielectricLayer(pedb, name, thickness=1e-06, material: str = 'FR4') Bases: :py:obj:`Layer` Convenience wrapper for dielectric layers. Automatically creates a ``Dielectric`` material. :Parameters: **pedb** : :obj:`ansys.edb.core.database.Database` Active EDB session. **name** : :class:`python:str` Layer name. **thickness** : :class:`python:float`, :obj:`optional` Thickness in meters. Default is 1 µm. **material** : :class:`python:str`, :obj:`optional` Name of the dielectric material. Default is ``"FR4"``. .. rubric:: Examples >>> core = DielectricLayer(edb, "Core", thickness=100e-6, material="FR4") >>> core.material.permittivity 4.4 .. !! processed by numpydoc !! .. py:currentmodule:: DielectricLayer Overview -------- .. tab-set:: .. tab-item:: Attributes .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~material` - Material assigned to this layer. Import detail ------------- .. code-block:: python from pyedb.libraries.common import DielectricLayer Attribute detail ---------------- .. py:attribute:: material Material assigned to this layer. .. !! processed by numpydoc !!