Bondwire#
- class pyedb.dotnet.database.cell.primitive.bondwire.Bondwire(pedb, edb_object=None, **kwargs)#
Bases:
pyedb.dotnet.database.cell.primitive.primitive.PrimitiveClass representing a bondwire object.
Overview#
Get material of the bondwire. |
|
Set the material of a bondwire. |
|
Get definition name of a bondwire object. |
|
Set the definition name of a bondwire. |
|
Get trajectory parameters of a bondwire object. |
|
Set the parameters of the trajectory of a bondwire. |
|
Set the start elevation of a bondwire. |
|
Set the end elevation of a bondwire. |
|
|
|
|
|
|
|
Import detail#
from pyedb.dotnet.database.cell.primitive.bondwire import Bondwire
Property detail#
- property Bondwire.type#
BondwireType: Bondwire-type of a bondwire object.
- property Bondwire.cross_section_type#
BondwireCrossSectionType: Bondwire-cross-section-type of a bondwire object.
- property Bondwire.cross_section_height#
Value: Bondwire-cross-section height of a bondwire object.
- property Bondwire.width#
Value: Width of a bondwire object.
Method detail#
- Bondwire.get_material(evaluated=True)#
Get material of the bondwire.
- Bondwire.set_material(material)#
Set the material of a bondwire.
- Parameters:
- material
str Material name.
- material
- Bondwire.get_definition_name(evaluated=True)#
Get definition name of a bondwire object.
- Bondwire.set_definition_name(definition_name)#
Set the definition name of a bondwire.
- Parameters:
- definition_name
str Bondwire name to be set.
- definition_name
- Bondwire.get_trajectory()#
Get trajectory parameters of a bondwire object.
- Returns:
tuple[Value,Value,Value,Value
- ]
Returns a tuple of the following format:
(x1, y1, x2, y2)
x1 : X value of the start point.
y1 : Y value of the start point.
x1 : X value of the end point.
y1 : Y value of the end point.
- Bondwire.set_trajectory(x1, y1, x2, y2)#
Set the parameters of the trajectory of a bondwire.
- Parameters:
- x1
Value X value of the start point.
- y1
Value Y value of the start point.
- x2
Value X value of the end point.
- y2
Value Y value of the end point.
- x1