DielectricLayer#

class pyedb.libraries.common.DielectricLayer(pedb, name, thickness=1e-06, material: str = 'FR4')#

Bases: Layer

Convenience wrapper for dielectric layers.

Automatically creates a Dielectric material.

Parameters:
pedbansys.edb.core.database.Database

Active EDB session.

namestr

Layer name.

thicknessfloat, optional

Thickness in meters. Default is 1 µm.

materialstr, optional

Name of the dielectric material. Default is "FR4".

Examples

>>> core = DielectricLayer(edb, "Core", thickness=100e-6, material="FR4")
>>> core.material.permittivity
4.4

Overview#

material

Material assigned to this layer.

Import detail#

from pyedb.libraries.common import DielectricLayer

Attribute detail#

DielectricLayer.material#

Material assigned to this layer.