pyedb 0.50.0__py3-none-any.whl → 0.51.2__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 +27 -0
- pyedb/dotnet/clr_module.py +9 -3
- pyedb/dotnet/database/cell/hierarchy/component.py +3 -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 +13 -0
- pyedb/dotnet/database/layout_validation.py +17 -13
- pyedb/dotnet/database/modeler.py +0 -1
- pyedb/dotnet/edb.py +7 -1
- pyedb/generic/design_types.py +183 -62
- pyedb/grpc/database/components.py +604 -652
- pyedb/grpc/database/control_file.py +597 -155
- pyedb/grpc/database/definition/component_def.py +17 -14
- pyedb/grpc/database/definition/materials.py +27 -27
- pyedb/grpc/database/definition/package_def.py +8 -8
- pyedb/grpc/database/definition/padstack_def.py +31 -33
- pyedb/grpc/database/definitions.py +36 -2
- pyedb/grpc/database/geometry/arc_data.py +5 -5
- pyedb/grpc/database/geometry/point_3d_data.py +3 -3
- pyedb/grpc/database/geometry/polygon_data.py +5 -5
- pyedb/grpc/database/hfss.py +412 -395
- pyedb/grpc/database/hierarchy/component.py +67 -58
- pyedb/grpc/database/hierarchy/pin_pair_model.py +6 -6
- pyedb/grpc/database/hierarchy/pingroup.py +13 -11
- pyedb/grpc/database/hierarchy/s_parameter_model.py +1 -1
- pyedb/grpc/database/hierarchy/spice_model.py +1 -1
- pyedb/grpc/database/layers/layer.py +2 -2
- pyedb/grpc/database/layers/stackup_layer.py +26 -23
- pyedb/grpc/database/layout/layout.py +12 -12
- pyedb/grpc/database/layout/voltage_regulator.py +8 -8
- pyedb/grpc/database/layout_validation.py +58 -7
- pyedb/grpc/database/modeler.py +248 -245
- pyedb/grpc/database/net/differential_pair.py +4 -4
- pyedb/grpc/database/net/extended_net.py +7 -8
- pyedb/grpc/database/net/net.py +57 -46
- pyedb/grpc/database/nets.py +362 -116
- pyedb/grpc/database/padstacks.py +259 -178
- pyedb/grpc/database/ports/ports.py +23 -17
- pyedb/grpc/database/primitive/padstack_instance.py +45 -30
- pyedb/grpc/database/primitive/path.py +6 -6
- pyedb/grpc/database/primitive/polygon.py +9 -9
- pyedb/grpc/database/primitive/primitive.py +21 -21
- pyedb/grpc/database/primitive/rectangle.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_general_settings.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_settings_options.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +6 -6
- pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +2 -2
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +2 -2
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +1 -1
- pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +3 -3
- pyedb/grpc/database/siwave.py +226 -214
- pyedb/grpc/database/source_excitations.py +307 -40
- pyedb/grpc/database/stackup.py +461 -283
- pyedb/grpc/database/terminal/bundle_terminal.py +12 -12
- pyedb/grpc/database/terminal/edge_terminal.py +6 -5
- pyedb/grpc/database/terminal/padstack_instance_terminal.py +13 -13
- pyedb/grpc/database/terminal/pingroup_terminal.py +12 -12
- pyedb/grpc/database/terminal/point_terminal.py +6 -6
- pyedb/grpc/database/terminal/terminal.py +26 -26
- pyedb/grpc/database/utility/heat_sink.py +5 -5
- pyedb/grpc/database/utility/hfss_extent_info.py +21 -21
- pyedb/grpc/database/utility/layout_statistics.py +13 -13
- pyedb/grpc/database/utility/rlc.py +3 -3
- pyedb/grpc/database/utility/sources.py +1 -1
- pyedb/grpc/database/utility/sweep_data_distribution.py +1 -1
- pyedb/grpc/edb.py +542 -739
- pyedb/grpc/edb_init.py +50 -3
- {pyedb-0.50.0.dist-info → pyedb-0.51.2.dist-info}/METADATA +1 -1
- {pyedb-0.50.0.dist-info → pyedb-0.51.2.dist-info}/RECORD +74 -75
- pyedb/grpc/database/utility/simulation_configuration.py +0 -3305
- {pyedb-0.50.0.dist-info → pyedb-0.51.2.dist-info}/LICENSE +0 -0
- {pyedb-0.50.0.dist-info → pyedb-0.51.2.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.
|
|
@@ -177,8 +203,26 @@ class EdbInit(object):
|
|
|
177
203
|
if terminate_rpc_session:
|
|
178
204
|
RpcSession.rpc_session.disconnect()
|
|
179
205
|
RpcSession.pid = 0
|
|
206
|
+
self._clean_variables()
|
|
180
207
|
return True
|
|
181
208
|
|
|
209
|
+
def _clean_variables(self):
|
|
210
|
+
"""Initialize internal variables and perform garbage collection."""
|
|
211
|
+
self.grpc = True
|
|
212
|
+
self._materials = None
|
|
213
|
+
self._components = None
|
|
214
|
+
self._core_primitives = None
|
|
215
|
+
self._stackup = None
|
|
216
|
+
self._padstack = None
|
|
217
|
+
self._siwave = None
|
|
218
|
+
self._hfss = None
|
|
219
|
+
self._nets = None
|
|
220
|
+
self._layout_instance = None
|
|
221
|
+
self._variables = None
|
|
222
|
+
self._active_cell = None
|
|
223
|
+
self._layout = None
|
|
224
|
+
self._configuration = None
|
|
225
|
+
|
|
182
226
|
@property
|
|
183
227
|
def top_circuit_cells(self):
|
|
184
228
|
"""Get top circuit cells.
|
|
@@ -257,6 +301,9 @@ class EdbInit(object):
|
|
|
257
301
|
EDB version to save to. Empty string means current version.
|
|
258
302
|
"""
|
|
259
303
|
self._db.save_as(path, version)
|
|
304
|
+
if os.path.exists(path):
|
|
305
|
+
return True
|
|
306
|
+
return False
|
|
260
307
|
|
|
261
308
|
@property
|
|
262
309
|
def directory(self):
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=MQ12dhp1FffyKI3ALAQxyCCZ8ETTIua-4NnHLBuSB1E,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,24 +18,24 @@ 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=lMpfGlkeIwM_8Ww4Qn8KAhTbFvfaVJrC490euK4lUB4,24702
|
|
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=jYgg48VEnjcW_W6BEBBd0Bt5eKsV4WRmf7DaGsUI7_A,188294
|
|
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=zJPuHooR7ANc0v0OwGWjRlc_TjZt8bDm9zA5FmXpGRo,13792
|
|
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
|
|
@@ -43,11 +43,11 @@ pyedb/dotnet/database/siwave.py,sha256=08Dx280x9TQ7Kl4lgEmFcnOp59Vnf2nRbdtAcJQ2a
|
|
|
43
43
|
pyedb/dotnet/database/stackup.py,sha256=FfKqEa4iUlP5qeOzuQapEnXGS__IrksIWlfmiCd0szg,120090
|
|
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
|
|
50
|
-
pyedb/dotnet/database/cell/hierarchy/component.py,sha256=
|
|
50
|
+
pyedb/dotnet/database/cell/hierarchy/component.py,sha256=D0zF2p_V9zQLhVBx-H4KqflAX2vRrTnzAvNwRus29II,36727
|
|
51
51
|
pyedb/dotnet/database/cell/hierarchy/hierarchy_obj.py,sha256=B42_qDotHyyhDOZM_fA1hzvPaqqR52A45u1AvOPmhFc,2160
|
|
52
52
|
pyedb/dotnet/database/cell/hierarchy/model.py,sha256=RHZTe4-IvF4dGWXXj9zB30zdRJaxhWngmJ_QQc9jkp0,3198
|
|
53
53
|
pyedb/dotnet/database/cell/hierarchy/netlist_model.py,sha256=fF6tY-6s-lW9EuvJ5sw3RlIkjuoSjeZbrNk5wG-_hzM,1356
|
|
@@ -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=oMkjUoLLjZI7DclPd-0Qd4KcfVARCuBHsGEKXbyBb_Y,83624
|
|
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,105 +114,104 @@ 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=vi2IKLPVUyKJXSXpJgsRQyR4HomGodf61_xAWmE8ic0,150971
|
|
124
|
+
pyedb/grpc/edb_init.py,sha256=HCdPrdnbgcL3JhwaKzCJLFS9nEdGE-IUP3ZAnwj-nP8,15808
|
|
125
125
|
pyedb/grpc/rpc_session.py,sha256=HEGyWpmF8bvRcS_33C7-cOGPUdtiu3PMDTFOgP1LSSQ,7065
|
|
126
126
|
pyedb/grpc/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
127
|
-
pyedb/grpc/database/components.py,sha256=
|
|
128
|
-
pyedb/grpc/database/control_file.py,sha256=
|
|
129
|
-
pyedb/grpc/database/definitions.py,sha256=
|
|
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=
|
|
133
|
-
pyedb/grpc/database/modeler.py,sha256=
|
|
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=
|
|
131
|
+
pyedb/grpc/database/hfss.py,sha256=GuYxGJjeAdcnQBf7CvRgQNbEbdnNGzwlRpOus9X7Jw0,42799
|
|
132
|
+
pyedb/grpc/database/layout_validation.py,sha256=nxXEPIBLuVJZoGoZe5np18YQaaSh7iAggXnpVTUtbhM,15447
|
|
133
|
+
pyedb/grpc/database/modeler.py,sha256=YsNbWQhGskVgu898To03VwfjU8HMkSLW5toVdzt2NiM,52740
|
|
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=UfJHUebYjdcufT9j_vu6TTn0uEinPGXr5EmFyP42Z6U,123584
|
|
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
|
-
pyedb/grpc/database/definition/component_def.py,sha256=
|
|
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=moEMnjCwKDUtjZtT9chfgSmNwwiGfm8oYEkel5FUOhs,45552
|
|
144
144
|
pyedb/grpc/database/definition/n_port_component_model.py,sha256=8dC636At0iyfAWShugHGDOerytpoV6cvShPEGkXH89I,1543
|
|
145
|
-
pyedb/grpc/database/definition/package_def.py,sha256=
|
|
146
|
-
pyedb/grpc/database/definition/padstack_def.py,sha256=
|
|
145
|
+
pyedb/grpc/database/definition/package_def.py,sha256=4fcngmcnyXSwO-0qMlzcCLZT-H_NnPcf83YhIozUNmM,8134
|
|
146
|
+
pyedb/grpc/database/definition/padstack_def.py,sha256=8eFJOVlwX4GQIaoeOOwfv9mVFLfclFUlRdzXpfdX8CY,29903
|
|
147
147
|
pyedb/grpc/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
-
pyedb/grpc/database/geometry/arc_data.py,sha256=
|
|
149
|
-
pyedb/grpc/database/geometry/point_3d_data.py,sha256=
|
|
148
|
+
pyedb/grpc/database/geometry/arc_data.py,sha256=sFTsiucJ1DGuNFNRO1jFLR9mzZDydA5GYsRevUB81Ss,2719
|
|
149
|
+
pyedb/grpc/database/geometry/point_3d_data.py,sha256=OsnaVg6ttNWDRe4atnt9Ry1iUqMTqVdumrYa6u4VuRA,2190
|
|
150
150
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
151
|
-
pyedb/grpc/database/geometry/polygon_data.py,sha256=
|
|
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=
|
|
157
|
-
pyedb/grpc/database/hierarchy/pingroup.py,sha256=
|
|
158
|
-
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=
|
|
159
|
-
pyedb/grpc/database/hierarchy/spice_model.py,sha256=
|
|
156
|
+
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=C76iVvPgXQAxMvOZvbqgaKslCuWDE4XC9qvgCekoOLU,3555
|
|
157
|
+
pyedb/grpc/database/hierarchy/pingroup.py,sha256=Dp0-layi8EqZXRDNnAwPfZbEIbyR7ju-DrDCnQQy0VQ,8046
|
|
158
|
+
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=gMCPTznjpT_6WVJaIMOItdpo5zhV-QPC3CUHEtMqVm4,1535
|
|
159
|
+
pyedb/grpc/database/hierarchy/spice_model.py,sha256=pyKr5mQrezhUzJtaArvWa8fODNiTPza5gFSSEiSmLAI,2022
|
|
160
160
|
pyedb/grpc/database/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
-
pyedb/grpc/database/layers/layer.py,sha256=
|
|
162
|
-
pyedb/grpc/database/layers/stackup_layer.py,sha256
|
|
161
|
+
pyedb/grpc/database/layers/layer.py,sha256=bPieGISKPGZ_jY8GOq9L6Ywoqcmv_Sq-cM3AS4OtXRE,3432
|
|
162
|
+
pyedb/grpc/database/layers/stackup_layer.py,sha256=Nxy2JHjpRG8FuvCl22he9BFSuxWlQNyyRNBONyWGOx0,27249
|
|
163
163
|
pyedb/grpc/database/layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
164
|
pyedb/grpc/database/layout/cell.py,sha256=5qMqEBvIruIE3Ru1JBYMkGlS31uOJShWm3J3OMd8HiQ,1379
|
|
165
|
-
pyedb/grpc/database/layout/layout.py,sha256=
|
|
166
|
-
pyedb/grpc/database/layout/voltage_regulator.py,sha256=
|
|
165
|
+
pyedb/grpc/database/layout/layout.py,sha256=Zb-UrNeWUqL958io8EbKaijJ79nqRf_eNQS1or1r6-0,9267
|
|
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=
|
|
169
|
-
pyedb/grpc/database/net/extended_net.py,sha256=
|
|
170
|
-
pyedb/grpc/database/net/net.py,sha256=
|
|
168
|
+
pyedb/grpc/database/net/differential_pair.py,sha256=wVKMsLqtZCPwq_TE_F33hnNPnudNBOmu3gWKgO5i0Sk,4715
|
|
169
|
+
pyedb/grpc/database/net/extended_net.py,sha256=uoilyrLSOBq7mU4CjI4l7odlF0K7B8gb-AtrQGplSjo,12936
|
|
170
|
+
pyedb/grpc/database/net/net.py,sha256=HBEt4tQ3ys9bLMFmgBxnFQmvU-F692usrisfwdxdmR8,7769
|
|
171
171
|
pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjrrBJux3c,2961
|
|
172
172
|
pyedb/grpc/database/ports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
pyedb/grpc/database/ports/ports.py,sha256=
|
|
173
|
+
pyedb/grpc/database/ports/ports.py,sha256=G7eb-fimuFC8gprbu8Tk1JOZ2f-7a1rAv3QWAi1my7o,10576
|
|
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=
|
|
178
|
-
pyedb/grpc/database/primitive/path.py,sha256=
|
|
179
|
-
pyedb/grpc/database/primitive/polygon.py,sha256=
|
|
180
|
-
pyedb/grpc/database/primitive/primitive.py,sha256=
|
|
181
|
-
pyedb/grpc/database/primitive/rectangle.py,sha256=
|
|
177
|
+
pyedb/grpc/database/primitive/padstack_instance.py,sha256=6YHxCJJix0dzBpFY6p1ylLygD_zWs5d215iDeX-4wNg,38413
|
|
178
|
+
pyedb/grpc/database/primitive/path.py,sha256=y7QWlR6RPCv0o1pOogFBdxtXnJkDiNI8x1fnJMjpQ2E,12120
|
|
179
|
+
pyedb/grpc/database/primitive/polygon.py,sha256=_J8jkf4sd7msaLtz6CV-fSPpPMHJ9DJ2qo5qGy1cbH0,9558
|
|
180
|
+
pyedb/grpc/database/primitive/primitive.py,sha256=7SXnf-YImLDwqj90oEfTY2rrKUU4STeLrFDBJnpRptw,25120
|
|
181
|
+
pyedb/grpc/database/primitive/rectangle.py,sha256=zJ3OTpqR6wIbHuItUJhGGictaBYuCatLHFzCgBXEWFo,5366
|
|
182
182
|
pyedb/grpc/database/simulation_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
183
|
pyedb/grpc/database/simulation_setup/adaptive_frequency.py,sha256=uEuYtf0RcRH5XlcBiTEN8sgdZZBrob9k7h5KW-I4QYs,1455
|
|
184
184
|
pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py,sha256=ujG1mD8h0SXLOVXbYBrvKVrCRFHRQGKuPebzekcaE0M,1531
|
|
185
|
-
pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py,sha256=
|
|
185
|
+
pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py,sha256=pmMbtPbxHs9toxGHUFsdijfFD54794v9NB-T6e8mtOw,2353
|
|
186
186
|
pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py,sha256=H_aqDcxATHK8yeJ_l8-Qz9wVGZjK_7EBg8zgBS8IeoU,1507
|
|
187
|
-
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=
|
|
188
|
-
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=
|
|
189
|
-
pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py,sha256=
|
|
190
|
-
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=
|
|
187
|
+
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=wf6uE-I07H169NzVV5WIUSwWrZr4R-DHxN1X28gylfA,2440
|
|
188
|
+
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=NJxdxFWHiOBXiTznv3PLhNdctlvFRqPUqU-pWURgJiE,2936
|
|
189
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py,sha256=c1raWL_9BzGSPxGHHodho1WlJ0zp_iUzc3oJtZfaUMA,4088
|
|
190
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=R3KN4SwZwgsc_2VjgbdQhBHSifK1eG2rzB3Kx7ZRT1U,15322
|
|
191
191
|
pyedb/grpc/database/simulation_setup/hfss_solver_settings.py,sha256=Xi4N-cCO_8-JxMkI_tGyJ3SGcJrP5_rLvdbXx7P-uJI,1474
|
|
192
192
|
pyedb/grpc/database/simulation_setup/mesh_operation.py,sha256=Ejf9v9njc-Ll3jw_DdA26CAT1WreludC6CwBrpoS16A,1439
|
|
193
193
|
pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py,sha256=mo2zHBsdxHG9N81FNefulKjUv-Oi_VkV49kvKKXrhrs,1505
|
|
194
194
|
pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py,sha256=Sp-r6W87FjsWZYY1ugqTCGZ-KMXzCZ96FMl1fj3mdrU,1499
|
|
195
|
-
pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=
|
|
196
|
-
pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=
|
|
195
|
+
pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=sgyYyVCm6kzURojfGvr8n7bBSsvKeljrD8mQKSGL_wo,2412
|
|
196
|
+
pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=31ELFhO6TFB4-tg3rqTsfGkTsozEPq-4gCZucIO061c,4791
|
|
197
197
|
pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py,sha256=--LrmRx54PkvgzKEc7HbmVtttir3uOAjJaehilasMaA,1524
|
|
198
|
-
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=
|
|
198
|
+
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=dAT5T2YY0FTvLw-bLmNsbSeVya5q8QhQNKDapboDQCM,6499
|
|
199
199
|
pyedb/grpc/database/simulation_setup/sweep_data.py,sha256=NfoUdUdgRFTw9SqR0UZhxaFA13MLpicDa7JXhgkBsug,1897
|
|
200
200
|
pyedb/grpc/database/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
201
|
-
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=
|
|
202
|
-
pyedb/grpc/database/terminal/edge_terminal.py,sha256=
|
|
203
|
-
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=
|
|
204
|
-
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=
|
|
205
|
-
pyedb/grpc/database/terminal/point_terminal.py,sha256=
|
|
206
|
-
pyedb/grpc/database/terminal/terminal.py,sha256=
|
|
201
|
+
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=qfT9KTHHesSm4RRfLzoygTAndq34Jv79ioPl2tPSefc,6624
|
|
202
|
+
pyedb/grpc/database/terminal/edge_terminal.py,sha256=rGxvFqm2pBQ5R7VC4ZkLB1l1n_BiXCfGD8BaqrJ6yO8,5511
|
|
203
|
+
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=o1tQ1sD0I_mo7TfTt854zOfZKFek93eugakNHNaif-g,6185
|
|
204
|
+
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=Hd7VTVrWleCF3s9UKrquCutsFcnDyn0d_3YFufNI5zw,5835
|
|
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
|
-
pyedb/grpc/database/utility/heat_sink.py,sha256=
|
|
210
|
-
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=
|
|
211
|
-
pyedb/grpc/database/utility/layout_statistics.py,sha256=
|
|
212
|
-
pyedb/grpc/database/utility/rlc.py,sha256=
|
|
213
|
-
pyedb/grpc/database/utility/
|
|
214
|
-
pyedb/grpc/database/utility/
|
|
215
|
-
pyedb/grpc/database/utility/sweep_data_distribution.py,sha256=m2nUhp4kBJE8CfVPPTRz9uaeC9swWGB26lT7eI9QtKo,3753
|
|
209
|
+
pyedb/grpc/database/utility/heat_sink.py,sha256=hLj93zVDAUdcmcjqWV3ucp3BuAKJVqJ5cu3xIfcuVYM,3581
|
|
210
|
+
pyedb/grpc/database/utility/hfss_extent_info.py,sha256=vttdcPFaz1PxcYMT3wdoGcw_odCGpuhL0LkS0ZtIqK8,14344
|
|
211
|
+
pyedb/grpc/database/utility/layout_statistics.py,sha256=NFoHEWzGbrkThosROCeZCjBSGbSak0ctlCCZaMeypvE,6809
|
|
212
|
+
pyedb/grpc/database/utility/rlc.py,sha256=H0vzzxYPzr-6CTEDjlAs9fEY5emu4ugseKklfnHWO54,2185
|
|
213
|
+
pyedb/grpc/database/utility/sources.py,sha256=sSU14NaMA9mDBUvwXIx7hNpwmGz4mmwtq92w1urusuk,10448
|
|
214
|
+
pyedb/grpc/database/utility/sweep_data_distribution.py,sha256=ClGfo8MNH2LPWWZ-swsSpvc_yLxI-GVxLBkjn5-WS0U,3760
|
|
216
215
|
pyedb/grpc/database/utility/xml_control_file.py,sha256=rEsdYykh5-GcYTrZW32nk3IPpdNjlhlQ2PYgbkBgQ_8,48217
|
|
217
216
|
pyedb/ipc2581/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
217
|
pyedb/ipc2581/history_record.py,sha256=s1GjcIgnZHlNCBOeEERBDX7xDuqhXmh2Ctt3ccFDWso,2739
|
|
@@ -283,7 +282,7 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
283
282
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
284
283
|
pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
|
|
285
284
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
286
|
-
pyedb-0.
|
|
287
|
-
pyedb-0.
|
|
288
|
-
pyedb-0.
|
|
289
|
-
pyedb-0.
|
|
285
|
+
pyedb-0.51.2.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
286
|
+
pyedb-0.51.2.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
|
|
287
|
+
pyedb-0.51.2.dist-info/METADATA,sha256=o4WFpjT8S-byJOvrM1_4ZfdLMoxmwBmblsJCShzk6b8,8619
|
|
288
|
+
pyedb-0.51.2.dist-info/RECORD,,
|