Skip to content

Commit 63bb98e

Browse files
authored
Merge pull request #409 from ansys/release/0.1.5_dm_0
Publish pyedb-core v0.1.5
2 parents e96adec + c3fd616 commit 63bb98e

File tree

116 files changed

+2043
-2335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+2043
-2335
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Global owners
2-
* @hiro727
2+
* @drewm102

doc/source/api/definition.rst

Lines changed: 39 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,38 @@ Definition
44
Classes
55
-------
66

7-
.. currentmodule:: ansys.edb.core.definition
7+
.. currentmodule:: ansys.edb.core
88

99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
ApdBondwireDef
13-
BondwireDef
14-
ComponentDef
15-
ComponentModel
16-
ComponentPin
17-
DielectricMaterialModel
18-
DynamicLinkComponentModel
19-
DatasetDef
20-
Jedec4BondwireDef
21-
Jedec5BondwireDef
22-
MaterialDef
23-
NPortComponentModel
24-
PackageDef
25-
PadstackDef
26-
PadstackDefData
27-
ThermalModifier
28-
SolderBallProperty
29-
ComponentProperty
30-
ICComponentProperty
31-
IOComponentProperty
32-
RLCComponentProperty
33-
DieProperty
34-
PortProperty
12+
definition.bondwire_def.ApdBondwireDef
13+
definition.bondwire_def.BondwireDef
14+
definition.component_def.ComponentDef
15+
definition.component_model.ComponentModel
16+
definition.component_pin.ComponentPin
17+
definition.dataset_def.DatasetDef
18+
definition.debye_model.DebyeModel
19+
definition.die_property.DieProperty
20+
definition.dielectric_material_model.DielectricMaterialModel
21+
definition.djordjecvic_sarkar_model.DjordjecvicSarkarModel
22+
definition.component_model.DynamicLinkComponentModel
23+
definition.bondwire_def.Jedec4BondwireDef
24+
definition.bondwire_def.Jedec5BondwireDef
25+
definition.material_def.MaterialDef
26+
definition.material_property_thermal_modifier.MaterialPropertyThermalModifier
27+
definition.multipole_debye_model.MultipoleDebyeModel
28+
definition.component_model.NPortComponentModel
29+
definition.package_def.PackageDef
30+
definition.padstack_def.PadstackDef
31+
definition.padstack_def_data.PadstackDefData
32+
definition.material_def.ThermalModifier
33+
definition.solder_ball_property.SolderBallProperty
34+
definition.component_property.ComponentProperty
35+
definition.ic_component_property.ICComponentProperty
36+
definition.io_component_property.IOComponentProperty
37+
definition.rlc_component_property.RLCComponentProperty
38+
definition.port_property.PortProperty
3539

3640

3741
Enums
@@ -40,13 +44,14 @@ Enums
4044
.. autosummary::
4145
:toctree: _autosummary
4246

43-
DefinitionObjType
44-
BondwireDefType
45-
MaterialProperty
46-
PadType
47-
PadGeometryType
48-
PadstackHoleRange
49-
SolderballShape
50-
SolderballPlacement
51-
DieType
52-
DieOrientation
47+
edb_defs.DefinitionObjType
48+
definition.bondwire_def.BondwireDefType
49+
definition.material_def.MaterialProperty
50+
definition.padstack_def_data.PadType
51+
definition.padstack_def_data.PadGeometryType
52+
definition.padstack_def_data.PadstackHoleRange
53+
definition.padstack_def_data.SolderballShape
54+
definition.padstack_def_data.SolderballPlacement
55+
definition.die_property.DieType
56+
definition.die_property.DieOrientation
57+
definition.dielectric_material_model.DielectricMaterialModelType

doc/source/api/geometry.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ Classes
99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
ArcData
13-
RTree
14-
PolygonData
15-
PointData
16-
Point3DData
17-
Triangle3DData
12+
arc_data.ArcData
13+
r_tree.RTree
14+
polygon_data.PolygonData
15+
point_data.PointData
16+
point3d_data.Point3DData
17+
triangle3d_data.Triangle3DData
1818

1919
Enums
2020
-----
2121

2222
.. autosummary::
2323
:toctree: _autosummary
2424

25-
ExtentType
26-
PolygonSenseType
25+
polygon_data.ExtentType
26+
polygon_data.PolygonSenseType

doc/source/api/glossary.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ Glossary
3232
- :obj:`float`
3333
- :obj:`complex`
3434
- :obj:`str` for expressions ('1nm', 'x + 1' etc)
35-
- :class:`Value <ansys.edb.core.utility.Value>`
35+
- :class:`Value <ansys.edb.core.utility.value.Value>`
3636

3737
Point2DLike
3838

3939
Any of the following data types that represents (x, y) point on a 2D coordinate system.
4040

41-
- :class:`PointData <ansys.edb.core.geometry.PointData>`
41+
- :class:`PointData <ansys.edb.core.geometry.point_data.PointData>`
4242
- (:term:`ValueLike`, :term:`ValueLike`) or any other iterable with 2 :term:`ValueLike` inside
4343

4444
Point3DLike
4545

4646
Any of the following data types that represents (x, y, z) point on a 3D coordinate system.
4747

48-
- :class:`Point3DData <ansys.edb.core.geometry.Point3DData>`
48+
- :class:`Point3DData <ansys.edb.core.geometry.point3d_data.Point3DData>`
4949
- (:term:`ValueLike`, :term:`ValueLike`, :term:`ValueLike`) or any other iterable with 3 :term:`ValueLike` inside
5050

5151
Triangle3DLike
@@ -63,7 +63,7 @@ Glossary
6363

6464
HFSS solver properties are represented by a tuple of the form [dc_thickness_type, dc_thickness_value, solve_inside_enabled]
6565

66-
(:class:`DCThicknessType <ansys.edb.core.layer.DCThicknessType>`, :term:`ValueLike`, :obj:`bool`)
66+
(:class:`DCThicknessType <ansys.edb.core.layer.stackup_layer.DCThicknessType>`, :term:`ValueLike`, :obj:`bool`)
6767

6868
HFSSExtents
6969

doc/source/api/hierarchy.rst

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ Object types
1313
.. autosummary::
1414
:toctree: _autosummary
1515

16-
CellInstance
17-
InstArray
18-
ComponentGroup
19-
Group
20-
PinGroup
21-
Model
22-
PinPairModel
23-
NetlistModel
24-
SParameterModel
25-
SPICEModel
26-
Structure3D
27-
ViaGroup
16+
cell_instance.CellInstance
17+
inst_array.InstArray
18+
component_group.ComponentGroup
19+
group.Group
20+
pin_group.PinGroup
21+
model.Model
22+
pin_pair_model.PinPairModel
23+
netlist_model.NetlistModel
24+
sparameter_model.SParameterModel
25+
spice_model.SPICEModel
26+
structure3d.Structure3D
27+
via_group.ViaGroup
2828

2929

3030
Enums
@@ -33,5 +33,5 @@ Enums
3333
.. autosummary::
3434
:toctree: _autosummary
3535

36-
ComponentType
37-
MeshClosure
36+
component_group.ComponentType
37+
structure3d.MeshClosure

doc/source/api/layer.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@ Classes
99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
Layer
13-
StackupLayer
14-
ViaLayer
15-
LayerCollection
12+
layer.Layer
13+
stackup_layer.StackupLayer
14+
via_layer.ViaLayer
15+
layer_collection.LayerCollection
1616

1717
Enums
1818
-----
1919

2020
.. autosummary::
2121
:toctree: _autosummary
2222

23-
LayerType
24-
TopBottomAssociation
25-
DrawOverride
26-
LayerVisibility
27-
DCThicknessType
28-
RoughnessRegion
29-
LayerCollectionMode
30-
LayerTypeSet
31-
DielectricMergingMethod
23+
layer_collection.LayerType
24+
layer.TopBottomAssociation
25+
layer.DrawOverride
26+
layer.LayerVisibility
27+
stackup_layer.DCThicknessType
28+
stackup_layer.RoughnessRegion
29+
layer_collection.LayerCollectionMode
30+
layer_collection.LayerTypeSet
31+
layer_collection.DielectricMergingMethod

doc/source/api/layout.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ Classes
99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
Cell
13-
Layout
14-
McadModel
15-
PowerModule
16-
VoltageRegulator
12+
cell.Cell
13+
layout.Layout
14+
mcad_model.McadModel
15+
voltage_regulator.PowerModule
16+
voltage_regulator.VoltageRegulator
1717

1818
Enums
1919
-----
2020

2121
.. autosummary::
2222
:toctree: _autosummary
2323

24-
CellType
25-
DesignMode
24+
cell.CellType
25+
cell.DesignMode

doc/source/api/layout_instance.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Classes
99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
LayoutInstance
13-
LayoutInstanceContext
14-
LayoutObjInstance
15-
LayoutObjInstance2DGeometry
16-
LayoutObjInstance3DGeometry
12+
layout_instance.LayoutInstance
13+
layout_instance_context.LayoutInstanceContext
14+
layout_obj_instance.LayoutObjInstance
15+
layout_obj_instance.LayoutObjInstance2DGeometry
16+
layout_obj_instance.LayoutObjInstance3DGeometry

doc/source/api/net.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Classes
99
.. autosummary::
1010
:toctree: _autosummary
1111

12-
DifferentialPair
13-
ExtendedNet
14-
Net
15-
NetClass
12+
differential_pair.DifferentialPair
13+
extended_net.ExtendedNet
14+
net.Net
15+
net_class.NetClass

doc/source/api/primitive.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Primitives
44
Classes
55
-------
66

7-
.. currentmodule:: ansys.edb.core.primitive
7+
.. currentmodule:: ansys.edb.core.primitive.primitive
88

99
.. autosummary::
1010
:toctree: _autosummary

0 commit comments

Comments
 (0)