pyedb 0.50.1__py3-none-any.whl → 0.52.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_ports_sources.py +79 -239
- pyedb/configuration/configuration.py +213 -340
- pyedb/dotnet/clr_module.py +9 -3
- pyedb/dotnet/database/cell/layout.py +10 -1
- pyedb/dotnet/database/dotnet/database.py +0 -2
- pyedb/dotnet/database/edb_data/padstacks_data.py +8 -2
- pyedb/dotnet/database/layout_validation.py +20 -26
- pyedb/dotnet/database/modeler.py +0 -1
- pyedb/dotnet/database/stackup.py +4 -3
- pyedb/dotnet/edb.py +42 -2
- pyedb/generic/design_types.py +183 -62
- pyedb/grpc/database/__init__.py +0 -1
- pyedb/grpc/database/components.py +110 -0
- pyedb/grpc/database/control_file.py +150 -17
- pyedb/grpc/database/definition/materials.py +7 -7
- pyedb/grpc/database/definitions.py +36 -2
- pyedb/grpc/database/hfss.py +15 -0
- pyedb/grpc/database/hierarchy/component.py +10 -2
- pyedb/grpc/database/hierarchy/pin_pair_model.py +1 -1
- pyedb/grpc/database/layout_validation.py +58 -7
- pyedb/grpc/database/net/differential_pair.py +2 -1
- pyedb/grpc/database/nets.py +233 -4
- pyedb/grpc/database/padstacks.py +97 -0
- pyedb/grpc/database/primitive/padstack_instance.py +1 -1
- pyedb/grpc/database/primitive/polygon.py +1 -1
- pyedb/grpc/database/siwave.py +63 -3
- pyedb/grpc/database/source_excitations.py +317 -50
- pyedb/grpc/database/stackup.py +107 -2
- pyedb/grpc/database/terminal/point_terminal.py +2 -2
- pyedb/grpc/database/terminal/terminal.py +1 -1
- pyedb/grpc/edb.py +190 -224
- pyedb/grpc/edb_init.py +54 -5
- {pyedb-0.50.1.dist-info → pyedb-0.52.0.dist-info}/METADATA +4 -4
- {pyedb-0.50.1.dist-info → pyedb-0.52.0.dist-info}/RECORD +37 -37
- {pyedb-0.50.1.dist-info → pyedb-0.52.0.dist-info}/LICENSE +0 -0
- {pyedb-0.50.1.dist-info → pyedb-0.52.0.dist-info}/WHEEL +0 -0
pyedb/grpc/edb_init.py
CHANGED
|
@@ -26,6 +26,7 @@ import atexit
|
|
|
26
26
|
import os
|
|
27
27
|
import signal
|
|
28
28
|
import sys
|
|
29
|
+
import time
|
|
29
30
|
|
|
30
31
|
import ansys.edb.core.database as database
|
|
31
32
|
|
|
@@ -85,7 +86,7 @@ class EdbInit(object):
|
|
|
85
86
|
"""Active database object."""
|
|
86
87
|
return self._db
|
|
87
88
|
|
|
88
|
-
def
|
|
89
|
+
def _create(self, db_path, port=0, restart_rpc_server=False):
|
|
89
90
|
"""Create a Database at the specified file location.
|
|
90
91
|
|
|
91
92
|
Parameters
|
|
@@ -115,7 +116,7 @@ class EdbInit(object):
|
|
|
115
116
|
self._db = database.Database.create(db_path)
|
|
116
117
|
return self._db
|
|
117
118
|
|
|
118
|
-
def
|
|
119
|
+
def _open(self, db_path, read_only, port=0, restart_rpc_server=False):
|
|
119
120
|
"""Open an existing Database at the specified file location.
|
|
120
121
|
|
|
121
122
|
Parameters
|
|
@@ -159,7 +160,32 @@ class EdbInit(object):
|
|
|
159
160
|
|
|
160
161
|
def save(self):
|
|
161
162
|
"""Save any changes into a file."""
|
|
162
|
-
|
|
163
|
+
self._db.save()
|
|
164
|
+
return True
|
|
165
|
+
|
|
166
|
+
def _wait_for_file_release(self, timeout=30, file_to_release=None) -> bool:
|
|
167
|
+
# if not file_to_release:
|
|
168
|
+
# file_to_release = os.path.join(self.edbpath)
|
|
169
|
+
tstart = time.time()
|
|
170
|
+
while True:
|
|
171
|
+
if self._is_file_existing_and_released(file_to_release):
|
|
172
|
+
return True
|
|
173
|
+
elif time.time() - tstart > timeout:
|
|
174
|
+
return False
|
|
175
|
+
else:
|
|
176
|
+
time.sleep(0.250)
|
|
177
|
+
|
|
178
|
+
@staticmethod
|
|
179
|
+
def _is_file_existing_and_released(filename) -> bool:
|
|
180
|
+
if os.path.exists(filename):
|
|
181
|
+
try:
|
|
182
|
+
os.rename(filename, filename + "_")
|
|
183
|
+
os.rename(filename + "_", filename)
|
|
184
|
+
return True
|
|
185
|
+
except OSError as e:
|
|
186
|
+
return False
|
|
187
|
+
else:
|
|
188
|
+
return False
|
|
163
189
|
|
|
164
190
|
def close(self, terminate_rpc_session=True):
|
|
165
191
|
"""Close the database.
|
|
@@ -167,18 +193,38 @@ class EdbInit(object):
|
|
|
167
193
|
Parameters
|
|
168
194
|
----------
|
|
169
195
|
terminate_rpc_session : bool, optional
|
|
170
|
-
|
|
196
|
+
Terminate RPC session when closing the database. The default value is `True`.
|
|
171
197
|
|
|
172
198
|
. note::
|
|
173
|
-
Unsaved changes will be lost.
|
|
199
|
+
Unsaved changes will be lost. If multiple databases are open and RPC session is terminated, the connection
|
|
200
|
+
with all databases will be lost. You might be careful and set to `False` until the last open database
|
|
201
|
+
remains.
|
|
174
202
|
"""
|
|
175
203
|
self._db.close()
|
|
176
204
|
self._db = None
|
|
177
205
|
if terminate_rpc_session:
|
|
178
206
|
RpcSession.rpc_session.disconnect()
|
|
179
207
|
RpcSession.pid = 0
|
|
208
|
+
self._clean_variables()
|
|
180
209
|
return True
|
|
181
210
|
|
|
211
|
+
def _clean_variables(self):
|
|
212
|
+
"""Initialize internal variables and perform garbage collection."""
|
|
213
|
+
self.grpc = True
|
|
214
|
+
self._materials = None
|
|
215
|
+
self._components = None
|
|
216
|
+
self._core_primitives = None
|
|
217
|
+
self._stackup = None
|
|
218
|
+
self._padstack = None
|
|
219
|
+
self._siwave = None
|
|
220
|
+
self._hfss = None
|
|
221
|
+
self._nets = None
|
|
222
|
+
self._layout_instance = None
|
|
223
|
+
self._variables = None
|
|
224
|
+
self._active_cell = None
|
|
225
|
+
self._layout = None
|
|
226
|
+
self._configuration = None
|
|
227
|
+
|
|
182
228
|
@property
|
|
183
229
|
def top_circuit_cells(self):
|
|
184
230
|
"""Get top circuit cells.
|
|
@@ -257,6 +303,9 @@ class EdbInit(object):
|
|
|
257
303
|
EDB version to save to. Empty string means current version.
|
|
258
304
|
"""
|
|
259
305
|
self._db.save_as(path, version)
|
|
306
|
+
if os.path.exists(path):
|
|
307
|
+
return True
|
|
308
|
+
return False
|
|
260
309
|
|
|
261
310
|
@property
|
|
262
311
|
def directory(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.52.0
|
|
4
4
|
Summary: Higher-Level Pythonic Ansys Electronics Data Base
|
|
5
5
|
Author-email: "ANSYS, Inc." <pyansys.core@ansys.com>
|
|
6
6
|
Maintainer-email: PyEDB developers <simon.vandenbrouck@ansys.com>
|
|
@@ -26,10 +26,10 @@ Requires-Dist: Rtree >= 1.2.0
|
|
|
26
26
|
Requires-Dist: toml == 0.10.2
|
|
27
27
|
Requires-Dist: shapely
|
|
28
28
|
Requires-Dist: scikit-rf
|
|
29
|
-
Requires-Dist: ansys-edb-core
|
|
30
|
-
Requires-Dist: ansys-api-edb
|
|
29
|
+
Requires-Dist: ansys-edb-core>=0.2.0.dev0
|
|
30
|
+
Requires-Dist: ansys-api-edb>=0.2.0.dev0
|
|
31
31
|
Requires-Dist: psutil
|
|
32
|
-
Requires-Dist: ansys-sphinx-theme>=0.
|
|
32
|
+
Requires-Dist: ansys-sphinx-theme>=1.0.0,<1.5 ; extra == "doc"
|
|
33
33
|
Requires-Dist: imageio>=2.30.0,<2.37 ; extra == "doc"
|
|
34
34
|
Requires-Dist: ipython>=8.13.0,<8.32 ; extra == "doc"
|
|
35
35
|
Requires-Dist: jupyterlab>=4.0.0,<4.4 ; extra == "doc"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=3C_aDpyKKxuAhtOGySGRXQilY2OOh1SKiZMTYJ1xCgM,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
|
|
@@ -18,32 +18,32 @@ pyedb/configuration/cfg_operations.py,sha256=YikpnTqaW_5D3-jtg8zAzDrsC6JXbsUOHPY
|
|
|
18
18
|
pyedb/configuration/cfg_package_definition.py,sha256=aNA3ympBjvxtw9hVehF9PQWaEvNLVB8cwb-r7MtZtzY,7844
|
|
19
19
|
pyedb/configuration/cfg_padstacks.py,sha256=RxCmRe4qbIefuKYaPCPhZ6fJ3-Tz9sektvXnswljQwU,39801
|
|
20
20
|
pyedb/configuration/cfg_pin_groups.py,sha256=UkDgJNAa6E9bv2Jo0K4vY2eTuqC61qcgqszrZ_bUcEg,5595
|
|
21
|
-
pyedb/configuration/cfg_ports_sources.py,sha256=
|
|
21
|
+
pyedb/configuration/cfg_ports_sources.py,sha256=GTIEVuifhw1jI1GOd3_YE5oTi9rJ8a9HYBly0RZhNa0,33904
|
|
22
22
|
pyedb/configuration/cfg_s_parameter_models.py,sha256=UBrCOt69AQof5r2OqpoSJ7E8G52jo0lAcSfYvJhm8hU,10224
|
|
23
23
|
pyedb/configuration/cfg_setup.py,sha256=A8fm2Qqy9SFi8peToI55rfh0jxPESmOM6ecNBWHCggA,17526
|
|
24
24
|
pyedb/configuration/cfg_spice_models.py,sha256=Q_5j2-V6cepSFcnijot8iypTqzanLp7HOz-agmnwKns,2570
|
|
25
25
|
pyedb/configuration/cfg_stackup.py,sha256=T28HTuR-EUIEGh41oIVD_BDambEds6CmJXmSggYKY70,12597
|
|
26
|
-
pyedb/configuration/configuration.py,sha256=
|
|
26
|
+
pyedb/configuration/configuration.py,sha256=A4PJ309GRhrYs9FDNsNPmIzF79En-xvCQBeIqUGBfKA,18200
|
|
27
27
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
|
-
pyedb/dotnet/clr_module.py,sha256=
|
|
29
|
-
pyedb/dotnet/edb.py,sha256=
|
|
28
|
+
pyedb/dotnet/clr_module.py,sha256=RNdHGF5lzx_f68xtdeIRgyrbeKj10JrI0kAp73H4EM4,5490
|
|
29
|
+
pyedb/dotnet/edb.py,sha256=9c0Ub7kudZe22kgRhfIzmnjT1yNq3a-fox9eMBsMX08,189613
|
|
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=7Lpe_ivKhfhOg634LPpBct3Ei6-KGvk9FHyb7cKumyE,111400
|
|
33
33
|
pyedb/dotnet/database/general.py,sha256=k2Bcr5VV-QUzEZlYorqYCX1ZchHBH7WqUvc8maMxId0,4716
|
|
34
34
|
pyedb/dotnet/database/hfss.py,sha256=I1PxGkIVXQjC0obuN7J6BYGXmfKiqHwHHPtaCTIS-9E,69165
|
|
35
35
|
pyedb/dotnet/database/layout_obj_instance.py,sha256=se6eJ2kfQOAZfAwObCBdr0A7CCD3st4aiPPVJR9eQoA,1407
|
|
36
|
-
pyedb/dotnet/database/layout_validation.py,sha256=
|
|
36
|
+
pyedb/dotnet/database/layout_validation.py,sha256=4hBdkD71ZqqTIqQNxT42_fh7sMl9cdHn14fGjORDDFM,13230
|
|
37
37
|
pyedb/dotnet/database/materials.py,sha256=Y0E1haDbazf6lEUPQA19gEiDX9I3tPWgo0rf5Gg9_po,48072
|
|
38
|
-
pyedb/dotnet/database/modeler.py,sha256=
|
|
38
|
+
pyedb/dotnet/database/modeler.py,sha256=9FvMO5L3rNmDEipsibvA92ROQKc-wB5zGHLHwc_gJMw,57703
|
|
39
39
|
pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
|
|
40
40
|
pyedb/dotnet/database/nets.py,sha256=bs7aX6a3xWWNzxsX471omu17_4jmC1HmNH9q8fefBJc,25614
|
|
41
41
|
pyedb/dotnet/database/padstack.py,sha256=A85zw3BgqRUQm-UzbLMzeY1KrhIhju3lcLe7AqsVGqU,73492
|
|
42
42
|
pyedb/dotnet/database/siwave.py,sha256=08Dx280x9TQ7Kl4lgEmFcnOp59Vnf2nRbdtAcJQ2atw,64326
|
|
43
|
-
pyedb/dotnet/database/stackup.py,sha256=
|
|
43
|
+
pyedb/dotnet/database/stackup.py,sha256=t6NO2NqEFNCc9bnexmxtAtKV5zstm8tgGbp5kfZZ7S0,120083
|
|
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
|
|
46
|
-
pyedb/dotnet/database/cell/layout.py,sha256=
|
|
46
|
+
pyedb/dotnet/database/cell/layout.py,sha256=UB6Cx7FNupRS0fQ2vWtrXN3UwbMhM1haSHMGfV4JEv8,13481
|
|
47
47
|
pyedb/dotnet/database/cell/layout_obj.py,sha256=YpyXv8L9vHAH1Lvbu9s_2SlBExifBQrMnlvmvo7YO7M,2765
|
|
48
48
|
pyedb/dotnet/database/cell/voltage_regulator.py,sha256=p9PGP4f-uB75Y9Cf3RlB_IkAadVVa3vdhXnztvsH12g,5387
|
|
49
49
|
pyedb/dotnet/database/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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=kB3Od01vrJmvGynyhkuJLKT1Ry_aO4A0wt447HW_6IY,6828
|
|
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=tct-mwf-2OBQ5WMSkXw361d1YPKKPOlgCqVeTYWaITs,37162
|
|
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=--wZCu2RwLkEnBHA5WhVVIpGjdMD2HRCjk6te5-ZTRQ,83906
|
|
85
85
|
pyedb/dotnet/database/edb_data/ports.py,sha256=qoqTqk47E4xtg43uvQ_SWCEUQscFBjt2bfcj9vsQsLI,7405
|
|
86
86
|
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=fN9YvtVgBJ-WCHxoIPgDxhhhs5-oQPK9JmqMbJBlSiI,16836
|
|
87
87
|
pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
|
|
@@ -114,33 +114,33 @@ pyedb/extensions/via_design_backend.py,sha256=J_9XYbAASPW9e4suyLDal5TcnVmqw-HI0z
|
|
|
114
114
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
115
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
116
116
|
pyedb/generic/data_handlers.py,sha256=rfqNe2tPCJRqhXZBCyWxRFu5SjQ92Cdzq4l0TDC4Pvw,6905
|
|
117
|
-
pyedb/generic/design_types.py,sha256=
|
|
117
|
+
pyedb/generic/design_types.py,sha256=FHblK4vkZeHYWqfK20ZIDPSpcb1IWFK4JSO4YxPg1ng,8350
|
|
118
118
|
pyedb/generic/filesystem.py,sha256=EqsLGwdhCgY3asomjoWZBBYWQiGhVOBlSzQlM6FCZhw,3674
|
|
119
119
|
pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil6Rg,42798
|
|
120
120
|
pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
|
|
121
121
|
pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
|
|
122
122
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
123
|
-
pyedb/grpc/edb.py,sha256=
|
|
124
|
-
pyedb/grpc/edb_init.py,sha256=
|
|
123
|
+
pyedb/grpc/edb.py,sha256=B8j6tqYD2-x0mj8qsUba_vfnpfBuGAV8fOhiwhPkktc,146776
|
|
124
|
+
pyedb/grpc/edb_init.py,sha256=PuyRid3IeqjD1jmeoIs_mFOto4CsP7NK6-wuJ4VEueM,16109
|
|
125
125
|
pyedb/grpc/rpc_session.py,sha256=HEGyWpmF8bvRcS_33C7-cOGPUdtiu3PMDTFOgP1LSSQ,7065
|
|
126
|
-
pyedb/grpc/database/__init__.py,sha256=
|
|
127
|
-
pyedb/grpc/database/components.py,sha256=
|
|
128
|
-
pyedb/grpc/database/control_file.py,sha256=
|
|
129
|
-
pyedb/grpc/database/definitions.py,sha256=
|
|
126
|
+
pyedb/grpc/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
+
pyedb/grpc/database/components.py,sha256=soNYOUUjtBYFplLrM4drzQ4v59EHloZw45lJ6UNceRg,79430
|
|
128
|
+
pyedb/grpc/database/control_file.py,sha256=oafm0kKivFMMwkG-Xc4XhG83BRJb_lUvLQ1hwzxBzgg,60703
|
|
129
|
+
pyedb/grpc/database/definitions.py,sha256=qTXgUFqJsIdJp-FeWJlwAqpobZqyEPSsB9UnBdFScHQ,4315
|
|
130
130
|
pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
|
|
131
|
-
pyedb/grpc/database/hfss.py,sha256=
|
|
132
|
-
pyedb/grpc/database/layout_validation.py,sha256=
|
|
131
|
+
pyedb/grpc/database/hfss.py,sha256=GuYxGJjeAdcnQBf7CvRgQNbEbdnNGzwlRpOus9X7Jw0,42799
|
|
132
|
+
pyedb/grpc/database/layout_validation.py,sha256=nxXEPIBLuVJZoGoZe5np18YQaaSh7iAggXnpVTUtbhM,15447
|
|
133
133
|
pyedb/grpc/database/modeler.py,sha256=YsNbWQhGskVgu898To03VwfjU8HMkSLW5toVdzt2NiM,52740
|
|
134
|
-
pyedb/grpc/database/nets.py,sha256=
|
|
135
|
-
pyedb/grpc/database/padstacks.py,sha256=
|
|
136
|
-
pyedb/grpc/database/siwave.py,sha256=
|
|
137
|
-
pyedb/grpc/database/source_excitations.py,sha256=
|
|
138
|
-
pyedb/grpc/database/stackup.py,sha256=
|
|
134
|
+
pyedb/grpc/database/nets.py,sha256=Tv-KOPfSH8sp1KTjR1rtZq2YFhy63uJJKkeSgizSv34,28131
|
|
135
|
+
pyedb/grpc/database/padstacks.py,sha256=HtUTnzUuq6rjmTgnoEuRq9-5hPi2zKfTxKhvvrUzZbI,68285
|
|
136
|
+
pyedb/grpc/database/siwave.py,sha256=lmHTzWFsHfhY5iWWwQukJ_B4EE-I_NRKPTooQSoPCHY,35871
|
|
137
|
+
pyedb/grpc/database/source_excitations.py,sha256=nIno6-MtBZUQ7XIK1qybxgTXAwcdB5WcHPEz-No5VG0,123603
|
|
138
|
+
pyedb/grpc/database/stackup.py,sha256=vDF-zRDnIgkfocWq_JkcRISQQUoX2Rq_by61gH4VOs0,113039
|
|
139
139
|
pyedb/grpc/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
140
|
pyedb/grpc/database/definition/component_def.py,sha256=2c5Xz98bdOAdOAX5kat2PY5N9-BiA1T6yw6TsWYRUmg,7579
|
|
141
141
|
pyedb/grpc/database/definition/component_model.py,sha256=9TRfILC3FfmgSrnYRwEdF2kbY4jFcC5rSeR9xeeb3wg,1689
|
|
142
142
|
pyedb/grpc/database/definition/component_pin.py,sha256=PfwTv6ILn6irJ4P5nB0PNtz2U5dR4NPevsw6P33pAfQ,1493
|
|
143
|
-
pyedb/grpc/database/definition/materials.py,sha256=
|
|
143
|
+
pyedb/grpc/database/definition/materials.py,sha256=EFG7teGiVXWST8uLTKZkK0AbCpkEHHUdvVzqeLbG1j4,45559
|
|
144
144
|
pyedb/grpc/database/definition/n_port_component_model.py,sha256=8dC636At0iyfAWShugHGDOerytpoV6cvShPEGkXH89I,1543
|
|
145
145
|
pyedb/grpc/database/definition/package_def.py,sha256=4fcngmcnyXSwO-0qMlzcCLZT-H_NnPcf83YhIozUNmM,8134
|
|
146
146
|
pyedb/grpc/database/definition/padstack_def.py,sha256=8eFJOVlwX4GQIaoeOOwfv9mVFLfclFUlRdzXpfdX8CY,29903
|
|
@@ -150,10 +150,10 @@ pyedb/grpc/database/geometry/point_3d_data.py,sha256=OsnaVg6ttNWDRe4atnt9Ry1iUqM
|
|
|
150
150
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
151
151
|
pyedb/grpc/database/geometry/polygon_data.py,sha256=34az656vTUDj_xiGmhfRiufAV5zyvDTVTdU0cJoshSg,4856
|
|
152
152
|
pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
pyedb/grpc/database/hierarchy/component.py,sha256=
|
|
153
|
+
pyedb/grpc/database/hierarchy/component.py,sha256=UOQU_ElULVTH-4NDeXAjbiGZT3V5VIIZ9XoQs1oKKI8,41984
|
|
154
154
|
pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
|
|
155
155
|
pyedb/grpc/database/hierarchy/netlist_model.py,sha256=VtXxTTTArojCOOLShHVlGOS1OTx30YZ8_UdSZWaKaEA,1432
|
|
156
|
-
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=
|
|
156
|
+
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=amxnbR5dZ3a7rORzZSS_gE1p4yjLjhzCZvE9gLYuc9o,3555
|
|
157
157
|
pyedb/grpc/database/hierarchy/pingroup.py,sha256=Dp0-layi8EqZXRDNnAwPfZbEIbyR7ju-DrDCnQQy0VQ,8046
|
|
158
158
|
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=gMCPTznjpT_6WVJaIMOItdpo5zhV-QPC3CUHEtMqVm4,1535
|
|
159
159
|
pyedb/grpc/database/hierarchy/spice_model.py,sha256=pyKr5mQrezhUzJtaArvWa8fODNiTPza5gFSSEiSmLAI,2022
|
|
@@ -165,7 +165,7 @@ pyedb/grpc/database/layout/cell.py,sha256=5qMqEBvIruIE3Ru1JBYMkGlS31uOJShWm3J3OM
|
|
|
165
165
|
pyedb/grpc/database/layout/layout.py,sha256=Zb-UrNeWUqL958io8EbKaijJ79nqRf_eNQS1or1r6-0,9267
|
|
166
166
|
pyedb/grpc/database/layout/voltage_regulator.py,sha256=OiZ6M6bFBUPX9XGFzAU3s_OYAlwSQ4TcoH7k3e6M58o,5200
|
|
167
167
|
pyedb/grpc/database/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
|
-
pyedb/grpc/database/net/differential_pair.py,sha256=
|
|
168
|
+
pyedb/grpc/database/net/differential_pair.py,sha256=68rP66PlS02e3vHs8t6vdk4Qq5TxjoVJXW_KIM3v7Xg,4716
|
|
169
169
|
pyedb/grpc/database/net/extended_net.py,sha256=uoilyrLSOBq7mU4CjI4l7odlF0K7B8gb-AtrQGplSjo,12936
|
|
170
170
|
pyedb/grpc/database/net/net.py,sha256=HBEt4tQ3ys9bLMFmgBxnFQmvU-F692usrisfwdxdmR8,7769
|
|
171
171
|
pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjrrBJux3c,2961
|
|
@@ -174,9 +174,9 @@ pyedb/grpc/database/ports/ports.py,sha256=G7eb-fimuFC8gprbu8Tk1JOZ2f-7a1rAv3QWAi
|
|
|
174
174
|
pyedb/grpc/database/primitive/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
175
175
|
pyedb/grpc/database/primitive/bondwire.py,sha256=IpDhf1z7GtaXZ12wbK172YNGCKkDB6sQ-7wH8HAXMnA,6238
|
|
176
176
|
pyedb/grpc/database/primitive/circle.py,sha256=clKkYUTuQ-Cwbdmk7Uc6x4zi-QN53lVN2C2jKcGTF-8,2514
|
|
177
|
-
pyedb/grpc/database/primitive/padstack_instance.py,sha256=
|
|
177
|
+
pyedb/grpc/database/primitive/padstack_instance.py,sha256=6YHxCJJix0dzBpFY6p1ylLygD_zWs5d215iDeX-4wNg,38413
|
|
178
178
|
pyedb/grpc/database/primitive/path.py,sha256=y7QWlR6RPCv0o1pOogFBdxtXnJkDiNI8x1fnJMjpQ2E,12120
|
|
179
|
-
pyedb/grpc/database/primitive/polygon.py,sha256=
|
|
179
|
+
pyedb/grpc/database/primitive/polygon.py,sha256=_J8jkf4sd7msaLtz6CV-fSPpPMHJ9DJ2qo5qGy1cbH0,9558
|
|
180
180
|
pyedb/grpc/database/primitive/primitive.py,sha256=7SXnf-YImLDwqj90oEfTY2rrKUU4STeLrFDBJnpRptw,25120
|
|
181
181
|
pyedb/grpc/database/primitive/rectangle.py,sha256=zJ3OTpqR6wIbHuItUJhGGictaBYuCatLHFzCgBXEWFo,5366
|
|
182
182
|
pyedb/grpc/database/simulation_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -202,8 +202,8 @@ pyedb/grpc/database/terminal/bundle_terminal.py,sha256=qfT9KTHHesSm4RRfLzoygTAnd
|
|
|
202
202
|
pyedb/grpc/database/terminal/edge_terminal.py,sha256=rGxvFqm2pBQ5R7VC4ZkLB1l1n_BiXCfGD8BaqrJ6yO8,5511
|
|
203
203
|
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=o1tQ1sD0I_mo7TfTt854zOfZKFek93eugakNHNaif-g,6185
|
|
204
204
|
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=Hd7VTVrWleCF3s9UKrquCutsFcnDyn0d_3YFufNI5zw,5835
|
|
205
|
-
pyedb/grpc/database/terminal/point_terminal.py,sha256=
|
|
206
|
-
pyedb/grpc/database/terminal/terminal.py,sha256=
|
|
205
|
+
pyedb/grpc/database/terminal/point_terminal.py,sha256=fdFbA46vLU4DJe-gFi7jyE5n29yJT9vsIESD5q3XkMU,3520
|
|
206
|
+
pyedb/grpc/database/terminal/terminal.py,sha256=zyDPSIda9BioNOdUiaezKzAeDJv_Jenb-Mt0jzV5sl8,17110
|
|
207
207
|
pyedb/grpc/database/utility/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
208
208
|
pyedb/grpc/database/utility/constants.py,sha256=XF66Hj7aQWJfqn8rDhyovyIbYBt4h_ab7lgpUqzgcPc,1288
|
|
209
209
|
pyedb/grpc/database/utility/heat_sink.py,sha256=hLj93zVDAUdcmcjqWV3ucp3BuAKJVqJ5cu3xIfcuVYM,3581
|
|
@@ -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.52.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
286
|
+
pyedb-0.52.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
287
|
+
pyedb-0.52.0.dist-info/METADATA,sha256=gtWnUVs17cWH82htZ47R2B0BUW42-SAIImQlE_3-MBA,8642
|
|
288
|
+
pyedb-0.52.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|