MetalLayer#

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

Bases: Layer

Convenience wrapper for metallic layers.

Automatically creates a Conductor 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 conductor material. Default is "Copper".

Examples

>>> top = MetalLayer(edb, "TOP", thickness=18e-6, material="Gold")
>>> top.material.conductivity
58000000.0

Overview#

material

Material assigned to this layer.

Import detail#

from pyedb.libraries.common import MetalLayer

Attribute detail#

MetalLayer.material#

Material assigned to this layer.