pyedb 0.40.0__py3-none-any.whl → 0.42.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pyedb might be problematic. Click here for more details.
- pyedb/__init__.py +1 -1
- pyedb/configuration/cfg_boundaries.py +12 -3
- pyedb/configuration/cfg_components.py +333 -97
- pyedb/configuration/cfg_general.py +6 -4
- pyedb/configuration/cfg_pin_groups.py +18 -8
- pyedb/configuration/cfg_setup.py +139 -65
- pyedb/configuration/configuration.py +26 -11
- pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py +5 -0
- pyedb/dotnet/database/cell/terminal/point_terminal.py +12 -0
- pyedb/dotnet/database/cell/terminal/terminal.py +0 -14
- pyedb/dotnet/database/dotnet/database.py +2 -0
- pyedb/dotnet/database/edb_data/padstacks_data.py +80 -3
- pyedb/dotnet/database/siwave.py +4 -1
- pyedb/dotnet/database/utilities/simulation_setup.py +8 -3
- pyedb/dotnet/edb.py +20 -5
- pyedb/grpc/database/components.py +1 -2
- pyedb/grpc/database/hierarchy/component.py +9 -1
- pyedb/grpc/database/hierarchy/s_parameter_model.py +2 -2
- pyedb/grpc/database/hierarchy/spice_model.py +4 -0
- pyedb/grpc/database/utility/hfss_extent_info.py +31 -20
- pyedb/grpc/edb.py +18 -0
- {pyedb-0.40.0.dist-info → pyedb-0.42.0.dist-info}/METADATA +1 -1
- {pyedb-0.40.0.dist-info → pyedb-0.42.0.dist-info}/RECORD +25 -25
- {pyedb-0.40.0.dist-info → pyedb-0.42.0.dist-info}/LICENSE +0 -0
- {pyedb-0.40.0.dist-info → pyedb-0.42.0.dist-info}/WHEEL +0 -0
|
@@ -81,12 +81,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
81
81
|
float
|
|
82
82
|
Air box horizontal extent value.
|
|
83
83
|
"""
|
|
84
|
-
return self._hfss_extent_info.
|
|
84
|
+
return self._hfss_extent_info.airbox_horizontal[0]
|
|
85
85
|
|
|
86
86
|
@air_box_horizontal_extent.setter
|
|
87
87
|
def air_box_horizontal_extent(self, value):
|
|
88
88
|
hfss_extent = self._hfss_extent_info
|
|
89
|
-
hfss_extent.
|
|
89
|
+
hfss_extent.airbox_horizontal = (float(value), True)
|
|
90
90
|
self._update_hfss_extent_info(hfss_extent)
|
|
91
91
|
|
|
92
92
|
@property
|
|
@@ -98,12 +98,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
98
98
|
bool.
|
|
99
99
|
|
|
100
100
|
"""
|
|
101
|
-
return self._hfss_extent_info.
|
|
101
|
+
return self._hfss_extent_info.airbox_vertical_positive[1]
|
|
102
102
|
|
|
103
103
|
@air_box_positive_vertical_extent_enabled.setter
|
|
104
104
|
def air_box_positive_vertical_extent_enabled(self, value):
|
|
105
105
|
hfss_exent = self._hfss_extent_info
|
|
106
|
-
hfss_exent.
|
|
106
|
+
hfss_exent.airbox_vertical_positive = (0.15, value)
|
|
107
107
|
self._update_hfss_extent_info(hfss_exent)
|
|
108
108
|
|
|
109
109
|
@property
|
|
@@ -116,12 +116,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
116
116
|
Air box positive vertical extent value.
|
|
117
117
|
|
|
118
118
|
"""
|
|
119
|
-
return self._hfss_extent_info.
|
|
119
|
+
return self._hfss_extent_info.airbox_vertical_positive[0]
|
|
120
120
|
|
|
121
121
|
@air_box_positive_vertical_extent.setter
|
|
122
122
|
def air_box_positive_vertical_extent(self, value):
|
|
123
123
|
hfss_extent = self._hfss_extent_info
|
|
124
|
-
hfss_extent.
|
|
124
|
+
hfss_extent.airbox_vertical_positive = (float(value), True)
|
|
125
125
|
self._update_hfss_extent_info(hfss_extent)
|
|
126
126
|
|
|
127
127
|
@property
|
|
@@ -133,12 +133,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
133
133
|
bool.
|
|
134
134
|
|
|
135
135
|
"""
|
|
136
|
-
return self._hfss_extent_info.
|
|
136
|
+
return self._hfss_extent_info.airbox_vertical_negative[1]
|
|
137
137
|
|
|
138
138
|
@air_box_negative_vertical_extent_enabled.setter
|
|
139
139
|
def air_box_negative_vertical_extent_enabled(self, value):
|
|
140
140
|
hfss_extent = self._hfss_extent_info
|
|
141
|
-
hfss_extent.
|
|
141
|
+
hfss_extent.airbox_vertical_negative = (0.15, value)
|
|
142
142
|
self._update_hfss_extent_info(hfss_extent)
|
|
143
143
|
|
|
144
144
|
@property
|
|
@@ -151,12 +151,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
151
151
|
Air box negative vertical extent value.
|
|
152
152
|
|
|
153
153
|
"""
|
|
154
|
-
return self._hfss_extent_info.
|
|
154
|
+
return self._hfss_extent_info.airbox_vertical_negative[0]
|
|
155
155
|
|
|
156
156
|
@air_box_negative_vertical_extent.setter
|
|
157
157
|
def air_box_negative_vertical_extent(self, value):
|
|
158
158
|
hfss_extent = self._hfss_extent_info
|
|
159
|
-
hfss_extent.
|
|
159
|
+
hfss_extent.airbox_vertical_negative = (float(value), True)
|
|
160
160
|
self._update_hfss_extent_info(hfss_extent)
|
|
161
161
|
|
|
162
162
|
@property
|
|
@@ -183,7 +183,7 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
183
183
|
-------
|
|
184
184
|
:class:`Polygon <pyedb.grpc.database.primitive.polygon.Polygon>`
|
|
185
185
|
"""
|
|
186
|
-
return
|
|
186
|
+
return super().dielectric_base_polygon
|
|
187
187
|
|
|
188
188
|
@dielectric_base_polygon.setter
|
|
189
189
|
def dielectric_base_polygon(self, value):
|
|
@@ -216,12 +216,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
216
216
|
float
|
|
217
217
|
Dielectric extent size value.
|
|
218
218
|
"""
|
|
219
|
-
return self._hfss_extent_info.
|
|
219
|
+
return self._hfss_extent_info.dielectric[0]
|
|
220
220
|
|
|
221
221
|
@dielectric_extent_size.setter
|
|
222
222
|
def dielectric_extent_size(self, value):
|
|
223
223
|
hfss_extent = self._hfss_extent_info
|
|
224
|
-
hfss_extent.
|
|
224
|
+
hfss_extent.dielectric = (value, True)
|
|
225
225
|
self._update_hfss_extent_info(hfss_extent)
|
|
226
226
|
|
|
227
227
|
@property
|
|
@@ -256,6 +256,17 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
256
256
|
@extent_type.setter
|
|
257
257
|
def extent_type(self, value):
|
|
258
258
|
hfss_extent = self._hfss_extent_info
|
|
259
|
+
if isinstance(value, str):
|
|
260
|
+
if value.lower() == "bounding_box":
|
|
261
|
+
value = GrpcHfssExtentInfo.HFSSExtentInfoType.BOUNDING_BOX
|
|
262
|
+
elif value.lower() == "conforming":
|
|
263
|
+
value = GrpcHfssExtentInfo.HFSSExtentInfoType.CONFORMING
|
|
264
|
+
elif value.lower() == "convex_hul":
|
|
265
|
+
value = GrpcHfssExtentInfo.HFSSExtentInfoType.CONVEX_HUL
|
|
266
|
+
elif value.lower() == "polygon":
|
|
267
|
+
value = GrpcHfssExtentInfo.HFSSExtentInfoType.POLYGON
|
|
268
|
+
else:
|
|
269
|
+
raise f"Invalid extent type : {value}"
|
|
259
270
|
hfss_extent.extent_type = value
|
|
260
271
|
self._update_hfss_extent_info(hfss_extent)
|
|
261
272
|
|
|
@@ -328,7 +339,7 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
328
339
|
self._update_hfss_extent_info(hfss_extent)
|
|
329
340
|
|
|
330
341
|
@property
|
|
331
|
-
def
|
|
342
|
+
def pml_radiation_factor(self):
|
|
332
343
|
"""PML Radiation level to calculate the thickness of boundary.
|
|
333
344
|
|
|
334
345
|
Returns
|
|
@@ -337,12 +348,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
337
348
|
Boundary thickness value.
|
|
338
349
|
|
|
339
350
|
"""
|
|
340
|
-
return
|
|
351
|
+
return self._hfss_extent_info.radiation_level.value
|
|
341
352
|
|
|
342
|
-
@
|
|
343
|
-
def
|
|
353
|
+
@pml_radiation_factor.setter
|
|
354
|
+
def pml_radiation_factor(self, value):
|
|
344
355
|
hfss_extent = self._hfss_extent_info
|
|
345
|
-
hfss_extent.
|
|
356
|
+
hfss_extent.radiation_level = GrpcValue(value)
|
|
346
357
|
self._update_hfss_extent_info(hfss_extent)
|
|
347
358
|
|
|
348
359
|
@property
|
|
@@ -373,12 +384,12 @@ class HfssExtentInfo(GrpcHfssExtentInfo):
|
|
|
373
384
|
Truncate air box at ground.
|
|
374
385
|
|
|
375
386
|
"""
|
|
376
|
-
return self._hfss_extent_info.
|
|
387
|
+
return self._hfss_extent_info.airbox_truncate_at_ground
|
|
377
388
|
|
|
378
389
|
@truncate_air_box_at_ground.setter
|
|
379
390
|
def truncate_air_box_at_ground(self, value):
|
|
380
391
|
hfss_extent = self._hfss_extent_info
|
|
381
|
-
hfss_extent.
|
|
392
|
+
hfss_extent.airbox_truncate_at_ground = value
|
|
382
393
|
self._update_hfss_extent_info(hfss_extent)
|
|
383
394
|
|
|
384
395
|
@property
|
pyedb/grpc/edb.py
CHANGED
|
@@ -39,6 +39,7 @@ import warnings
|
|
|
39
39
|
from zipfile import ZipFile as zpf
|
|
40
40
|
|
|
41
41
|
from ansys.edb.core.geometry.polygon_data import PolygonData as GrpcPolygonData
|
|
42
|
+
import ansys.edb.core.layout.cell
|
|
42
43
|
from ansys.edb.core.simulation_setup.siwave_dcir_simulation_setup import (
|
|
43
44
|
SIWaveDCIRSimulationSetup as GrpcSIWaveDCIRSimulationSetup,
|
|
44
45
|
)
|
|
@@ -801,6 +802,23 @@ class Edb(EdbInit):
|
|
|
801
802
|
"""
|
|
802
803
|
return self._active_cell
|
|
803
804
|
|
|
805
|
+
@active_cell.setter
|
|
806
|
+
def active_cell(self, value):
|
|
807
|
+
if isinstance(value, str):
|
|
808
|
+
_cell = [cell for cell in self.circuit_cells if cell.name == value]
|
|
809
|
+
if _cell:
|
|
810
|
+
self._active_cell = _cell[0]
|
|
811
|
+
self._init_objects()
|
|
812
|
+
self.logger.info(f"Design {value} set as active")
|
|
813
|
+
else:
|
|
814
|
+
raise f"Design {value} not found in database."
|
|
815
|
+
elif isinstance(value, ansys.edb.core.layout.cell.Cell):
|
|
816
|
+
self._active_cell = value
|
|
817
|
+
self._init_objects()
|
|
818
|
+
self.logger.info(f"Design {value.name} set as active")
|
|
819
|
+
else:
|
|
820
|
+
raise "No valid design."
|
|
821
|
+
|
|
804
822
|
@property
|
|
805
823
|
def components(self):
|
|
806
824
|
"""Edb Components methods and properties.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=44YcFH99XCtHkQnT599hSsY3jVSW_Fz5Ui0t-NR2XrM,1525
|
|
2
2
|
pyedb/edb_logger.py,sha256=7KXPvAMCKzlzJ5zioiNO5A3zkqbpCHhWHB4aXKfgu5Y,14959
|
|
3
3
|
pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
|
|
4
4
|
pyedb/siwave.py,sha256=Mgg5ZGzOUOtNdlePHcnrgN3rletQ7jrqRi3WfxF58uU,17727
|
|
@@ -7,26 +7,26 @@ pyedb/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
7
7
|
pyedb/common/nets.py,sha256=a6w_U-dCrWA4l0GUC9mf1nio91BGGOKh3K6cqd4I5vM,17877
|
|
8
8
|
pyedb/component_libraries/ansys_components.py,sha256=O3ypt832IHY9zG2AD_yrRrbH2KH9P1yFaoi1EO6Zllw,4830
|
|
9
9
|
pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
pyedb/configuration/cfg_boundaries.py,sha256=
|
|
10
|
+
pyedb/configuration/cfg_boundaries.py,sha256=g7YLynF6o757cwuUZem-6ASLoutHBPPXFyu3Xc8XAbw,6675
|
|
11
11
|
pyedb/configuration/cfg_common.py,sha256=U45p2qksEwMY_woVFaSwn5qjib9QQJDShajZZ-IZV0Y,2575
|
|
12
|
-
pyedb/configuration/cfg_components.py,sha256=
|
|
12
|
+
pyedb/configuration/cfg_components.py,sha256=cvD3K2WJXXGz8GdHZ1jgZFuFIhqzGQDOuSP-IbSjAvA,26052
|
|
13
13
|
pyedb/configuration/cfg_data.py,sha256=sy1xUrfhRA3jorbR60qGExaMxQ1nQGGAbZYJ0xXYktE,3860
|
|
14
|
-
pyedb/configuration/cfg_general.py,sha256=
|
|
14
|
+
pyedb/configuration/cfg_general.py,sha256=JMWccx_ebgn6-Gx6w2ibibg2x3mCyHid-M4kVex9iks,2270
|
|
15
15
|
pyedb/configuration/cfg_modeler.py,sha256=lR19tt5WdjpQ4IN5qCr1X1iykZqAivwViMNgUYOpoz4,5939
|
|
16
16
|
pyedb/configuration/cfg_nets.py,sha256=18NezeNh0ZOwk2ehz3zWJF_xYR7IYCqGlpDfDt7Ilho,2349
|
|
17
17
|
pyedb/configuration/cfg_operations.py,sha256=CFLBdM2kQBsW6f7W0NHWbV56RDMHSnaNQl3BmqDWQWo,4707
|
|
18
18
|
pyedb/configuration/cfg_package_definition.py,sha256=bnwS6p8oaHsD6ia3C7MmjQvQMyOJteK5i7EnbN84bJY,5296
|
|
19
19
|
pyedb/configuration/cfg_padstacks.py,sha256=r8sn2eQJweKbZbUnn26SfSkAHC9j26P5OllPS0qzHl8,20781
|
|
20
|
-
pyedb/configuration/cfg_pin_groups.py,sha256=
|
|
20
|
+
pyedb/configuration/cfg_pin_groups.py,sha256=xrIWfycNJRBT3jM3Z6TDnIxsnqJGCTR6cckF70rQh-s,4112
|
|
21
21
|
pyedb/configuration/cfg_ports_sources.py,sha256=Ym0l_J1pu3i3LVra-uIsTT4FS7GKFCJ3Eg8RqWi9BjM,33248
|
|
22
22
|
pyedb/configuration/cfg_s_parameter_models.py,sha256=DgBprcEYR2r_3BY4f_CuwuhJw_QFEag3xaAlLTRfMuE,5356
|
|
23
|
-
pyedb/configuration/cfg_setup.py,sha256=
|
|
23
|
+
pyedb/configuration/cfg_setup.py,sha256=vcuK1ZySJH5AoZU-HpVWXxNO7KbcRzaY76U9aU3oKpE,15110
|
|
24
24
|
pyedb/configuration/cfg_spice_models.py,sha256=Q_5j2-V6cepSFcnijot8iypTqzanLp7HOz-agmnwKns,2570
|
|
25
25
|
pyedb/configuration/cfg_stackup.py,sha256=nrjbjArkV4edkgbmpfm4FBWizM7qlN6DKTiNFRevGqk,7507
|
|
26
|
-
pyedb/configuration/configuration.py,sha256=
|
|
26
|
+
pyedb/configuration/configuration.py,sha256=z0XfQeg3etVaVKAuW9fAszzqyO1rbVsfv48wMosbIq4,17464
|
|
27
27
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
pyedb/dotnet/clr_module.py,sha256=EabqZgZgBZOhJD9_V8Ll8sEKgBFj9xe9zARNYIvYM_s,5304
|
|
29
|
-
pyedb/dotnet/edb.py,sha256=
|
|
29
|
+
pyedb/dotnet/edb.py,sha256=7B2eSjg6bjWSD4Le5mP-WlELrA34sTsCQ6_5G3YtfLI,187414
|
|
30
30
|
pyedb/dotnet/database/Variables.py,sha256=CX12X6u-2tbcgjYJU643TVjIJEGB58a2nM4f4wMVTR8,77687
|
|
31
31
|
pyedb/dotnet/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
32
32
|
pyedb/dotnet/database/components.py,sha256=9HldXwn2xV7RPD-C9u_zpHTd6b5SKZkDled-NKrbweo,109471
|
|
@@ -39,7 +39,7 @@ pyedb/dotnet/database/modeler.py,sha256=ygY-9E3sIfFhHpk19-_J7xlLbQXB1Iw5xhXnW1Eo
|
|
|
39
39
|
pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
|
|
40
40
|
pyedb/dotnet/database/nets.py,sha256=R--2ETa3-nc1RU5AqW4UjKXvA8oYKYLt06mQEsyi2j4,25213
|
|
41
41
|
pyedb/dotnet/database/padstack.py,sha256=lYIHF_GXBBP2sIacq7wP0-0-lwj4J0cB2UnWYtzdRjs,73219
|
|
42
|
-
pyedb/dotnet/database/siwave.py,sha256=
|
|
42
|
+
pyedb/dotnet/database/siwave.py,sha256=yq6sRdJofKgXGMd2gvq7SpS-hXRqL_OPQCmOgwgkBfY,64366
|
|
43
43
|
pyedb/dotnet/database/stackup.py,sha256=y-lrZWwK3BVLuV1WR3pP3o6IppioaQkzeO5QPiN_KKY,120035
|
|
44
44
|
pyedb/dotnet/database/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
pyedb/dotnet/database/cell/connectable.py,sha256=7B8_w_IRLtzb6bLwm2-HR8ScURZb0P5dhE6jezBS8Ps,2864
|
|
@@ -61,10 +61,10 @@ pyedb/dotnet/database/cell/primitive/primitive.py,sha256=KvzC_EdC2qbxWVyFLSAKON5
|
|
|
61
61
|
pyedb/dotnet/database/cell/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
pyedb/dotnet/database/cell/terminal/bundle_terminal.py,sha256=6wKbXqnyCCoYsBQGkHga-40brmGzGv4zly45OB33HJM,1977
|
|
63
63
|
pyedb/dotnet/database/cell/terminal/edge_terminal.py,sha256=uyoemVyEzez8WjI9Fyqh-RbtmkJHjjUM5F1CsUErSOY,3970
|
|
64
|
-
pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py,sha256=
|
|
64
|
+
pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py,sha256=byFKoc1RzFmWUQuS5KuX9xiUikYjOwUjQuPby1jrV5o,4534
|
|
65
65
|
pyedb/dotnet/database/cell/terminal/pingroup_terminal.py,sha256=60DUrszHP7QUVPSxoqTYrkOUukZsGiGNE3zd2Wa-2zQ,2753
|
|
66
|
-
pyedb/dotnet/database/cell/terminal/point_terminal.py,sha256=
|
|
67
|
-
pyedb/dotnet/database/cell/terminal/terminal.py,sha256=
|
|
66
|
+
pyedb/dotnet/database/cell/terminal/point_terminal.py,sha256=psZBjsKufr_nMHGPIThfRD1jq4bVqgH_TE5Gq1BIhTQ,3390
|
|
67
|
+
pyedb/dotnet/database/cell/terminal/terminal.py,sha256=CWRZcgxXqeJhMHiBRweygYQrXo248i7XpXL6MT_moYc,18186
|
|
68
68
|
pyedb/dotnet/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
pyedb/dotnet/database/definition/component_def.py,sha256=8Ldcn9zHP_-RJUo-kbLmtRRonS8X0EUc-Yo12X2GJdo,7404
|
|
70
70
|
pyedb/dotnet/database/definition/component_model.py,sha256=xvTQYuFAKRigacuahw6TQkM8SaJ8F-FExXmG2sTjSSI,1838
|
|
@@ -72,7 +72,7 @@ pyedb/dotnet/database/definition/definition_obj.py,sha256=HU_SL9tMGlmWyockpRM51k
|
|
|
72
72
|
pyedb/dotnet/database/definition/definitions.py,sha256=sXWgCkHOtCkqZOtdnIdwjnkfCoKHAwFHsYleqkc_XcQ,2383
|
|
73
73
|
pyedb/dotnet/database/definition/package_def.py,sha256=TJ3B3_6BTRJv3zayubhZiKdBHKa5ayfvmE2-EjBrWLA,6145
|
|
74
74
|
pyedb/dotnet/database/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
pyedb/dotnet/database/dotnet/database.py,sha256=
|
|
75
|
+
pyedb/dotnet/database/dotnet/database.py,sha256=7x1kQuLwL5QQ2S--ZrEVuFdHexXGAjOeHKlpbe_E38o,36792
|
|
76
76
|
pyedb/dotnet/database/dotnet/primitive.py,sha256=Ma-hwk62_6Xhi4SKViYyYVGxTqdZw5v3VcjZ55ek68c,49944
|
|
77
77
|
pyedb/dotnet/database/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
78
|
pyedb/dotnet/database/edb_data/control_file.py,sha256=4vtrXuHDgaX9wcyIGnIRMyCGUtvNqbx457HK0rtb-dE,52550
|
|
@@ -81,7 +81,7 @@ pyedb/dotnet/database/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXR
|
|
|
81
81
|
pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=Ydzle6moatP89kQdjnzyNabsCW0KXE4WYqDv7sFyLb8,13040
|
|
82
82
|
pyedb/dotnet/database/edb_data/layer_data.py,sha256=4Z_eaHSfGfwQBKETEmGSwMvwGzvirtwYw4G4TwonNiA,34314
|
|
83
83
|
pyedb/dotnet/database/edb_data/nets_data.py,sha256=siq2w5CT5D5PeK9tC_vaGM54UOyqnYkcP4kUts459es,10009
|
|
84
|
-
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=
|
|
84
|
+
pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=cdnJg5uiZIXRyTAMZ0-YVvkH-bOF6HTFvoDJKYx1MPs,81692
|
|
85
85
|
pyedb/dotnet/database/edb_data/ports.py,sha256=ycOETLruRl4wwL372Jftm_rFg2vfluyb_Rv39C5OSKA,7061
|
|
86
86
|
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=gBW7GiaPxDWBUj1wgOIiNHJ3QKM2ZDU0SJh0JWUlFHc,16826
|
|
87
87
|
pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
|
|
@@ -107,7 +107,7 @@ pyedb/dotnet/database/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061f
|
|
|
107
107
|
pyedb/dotnet/database/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
108
108
|
pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=1tlZ64rUNEtvRLLbVhN-gfuVduVCo8fT6IPKfQCEaDs,14074
|
|
109
109
|
pyedb/dotnet/database/utilities/obj_base.py,sha256=xSGTbfh4pbNIw3EjqtjFMiN8rWM2JhYZ2eU73qHAGlI,2883
|
|
110
|
-
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=
|
|
110
|
+
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=2Xke2LkNWThsT3EYTl_iIMFrFkYppcyYVwXNzvlv9RM,12577
|
|
111
111
|
pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=dQsU9IKJ2-erZvum40z1XrJULlohU1045hln3Bl_-nk,12764
|
|
112
112
|
pyedb/extensions/pre_layout_design_toolkit/via_design.py,sha256=b9pTM5Gi3S3O2epaSBp4cD5DEul-MP5gCvRw3E5GmpE,46734
|
|
113
113
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -119,11 +119,11 @@ pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil
|
|
|
119
119
|
pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
|
|
120
120
|
pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
|
|
121
121
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
122
|
-
pyedb/grpc/edb.py,sha256=
|
|
122
|
+
pyedb/grpc/edb.py,sha256=pi9uENpgwm5fs1mVBD4iRkSEwujc4VPWKiFYD768UZI,160232
|
|
123
123
|
pyedb/grpc/edb_init.py,sha256=7uhG2VjHvS9N8CU-zDyW8jh_dWe8MWkfyU2k4-B8sX8,14513
|
|
124
124
|
pyedb/grpc/rpc_session.py,sha256=UvxDSXuJFvemFJbQQtbI6nhYI9KBN366fw-jjoWysmE,6979
|
|
125
125
|
pyedb/grpc/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
126
|
-
pyedb/grpc/database/components.py,sha256=
|
|
126
|
+
pyedb/grpc/database/components.py,sha256=gMcKa00tgfZBbC446oGzbBBzBdTyotoOTszKUjTfxsg,83888
|
|
127
127
|
pyedb/grpc/database/control_file.py,sha256=rEsdYykh5-GcYTrZW32nk3IPpdNjlhlQ2PYgbkBgQ_8,48217
|
|
128
128
|
pyedb/grpc/database/definitions.py,sha256=jtfg2crkmwqn9rEe8pSn1F-TtyBDLl8U6hs7ZmNbXA8,2922
|
|
129
129
|
pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
|
|
@@ -149,13 +149,13 @@ pyedb/grpc/database/geometry/point_3d_data.py,sha256=9pABIDtp4T06ZF0OSvlhPK21wMo
|
|
|
149
149
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
150
150
|
pyedb/grpc/database/geometry/polygon_data.py,sha256=DotkM7fZnBQIln5kEJTCIbRNx8IfwXX4xs9hXjiUumA,4776
|
|
151
151
|
pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
152
|
-
pyedb/grpc/database/hierarchy/component.py,sha256=
|
|
152
|
+
pyedb/grpc/database/hierarchy/component.py,sha256=d1KqL_XAHElyR0zWcFzp3asbUR4TbuetNQ5OM5WKfyI,41280
|
|
153
153
|
pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
|
|
154
154
|
pyedb/grpc/database/hierarchy/netlist_model.py,sha256=VtXxTTTArojCOOLShHVlGOS1OTx30YZ8_UdSZWaKaEA,1432
|
|
155
155
|
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=FUaJms_pTiZ9W49B5HGCjdJj4OAR5IJSZxk0rr3sOKg,3500
|
|
156
156
|
pyedb/grpc/database/hierarchy/pingroup.py,sha256=Bgakkm8AC-GpsxjGqRMO1y-gs-RTgDNBZwcLoRJoo2Y,7787
|
|
157
|
-
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=
|
|
158
|
-
pyedb/grpc/database/hierarchy/spice_model.py,sha256=
|
|
157
|
+
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=eNw9T_Gyzbwzg496O7ucCVAvcunYjrPxGhPoTwX-mPA,1529
|
|
158
|
+
pyedb/grpc/database/hierarchy/spice_model.py,sha256=JfdRRlJRreSF7LDP7_EjrLQKTlTwWdlnpErvxoALDNQ,2018
|
|
159
159
|
pyedb/grpc/database/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
160
|
pyedb/grpc/database/layers/layer.py,sha256=xOOR6ZLJFHd8_QbKZXMAtojhuB_KILoKP8K7YHzAmRQ,2571
|
|
161
161
|
pyedb/grpc/database/layers/stackup_layer.py,sha256=qi2oPaJXiszwpSy4oZ-uxzCZFyzE2BsGgi0XSrIleYY,12582
|
|
@@ -206,7 +206,7 @@ pyedb/grpc/database/terminal/terminal.py,sha256=7lU1VKvUI01WfbeVaRN8XoLB-xbRYV5w
|
|
|
206
206
|
pyedb/grpc/database/utility/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
207
207
|
pyedb/grpc/database/utility/constants.py,sha256=XF66Hj7aQWJfqn8rDhyovyIbYBt4h_ab7lgpUqzgcPc,1288
|
|
208
208
|
pyedb/grpc/database/utility/heat_sink.py,sha256=LJCj7ULdyq7oKc0VtHmwzO5GHht-pqhe3_Gy01uMwWc,3538
|
|
209
|
-
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=
|
|
209
|
+
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=btSUvlyo4IExuXDeTbdt-fUWcfINgXejR4gkjazT4OI,14130
|
|
210
210
|
pyedb/grpc/database/utility/layout_statistics.py,sha256=uLh6tZ8vRvDpRYmgJO3J6nUThUYhleku2y9lwm02Ccg,6705
|
|
211
211
|
pyedb/grpc/database/utility/rlc.py,sha256=GOvwhZlJ_wWqrN9zdiQM4tvhgvEPjYwA3PawpkqJwos,2158
|
|
212
212
|
pyedb/grpc/database/utility/simulation_configuration.py,sha256=RPgRP3SJGPUm9Q41Qwv6TZXWN3Wda3nehR9rR3TPPMk,117014
|
|
@@ -282,7 +282,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
282
282
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
283
283
|
pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
|
|
284
284
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
285
|
-
pyedb-0.
|
|
286
|
-
pyedb-0.
|
|
287
|
-
pyedb-0.
|
|
288
|
-
pyedb-0.
|
|
285
|
+
pyedb-0.42.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
286
|
+
pyedb-0.42.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
287
|
+
pyedb-0.42.0.dist-info/METADATA,sha256=gVt-XbMs2Ku8AnL7EN-0faze4u_dUc6KzAj_S3fGWrY,8617
|
|
288
|
+
pyedb-0.42.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|