pyedb 0.12.1__py3-none-any.whl → 0.13.dev0__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 +1 -1
- pyedb/configuration/cfg_common.py +48 -0
- pyedb/configuration/cfg_components.py +94 -166
- pyedb/configuration/cfg_data.py +12 -7
- pyedb/configuration/cfg_general.py +1 -1
- pyedb/configuration/cfg_nets.py +1 -1
- pyedb/configuration/cfg_operations.py +63 -0
- pyedb/configuration/cfg_package_definition.py +128 -0
- pyedb/configuration/cfg_padstacks.py +3 -3
- pyedb/configuration/cfg_pin_groups.py +1 -1
- pyedb/configuration/cfg_ports_sources.py +4 -4
- pyedb/configuration/cfg_s_parameter_models.py +1 -1
- pyedb/configuration/cfg_setup.py +1 -1
- pyedb/configuration/cfg_spice_models.py +1 -1
- pyedb/configuration/cfg_stackup.py +169 -0
- pyedb/configuration/configuration.py +46 -19
- pyedb/dotnet/edb.py +167 -7
- pyedb/dotnet/edb_core/cell/hierarchy/model.py +1 -1
- pyedb/dotnet/edb_core/{edb_data/connectable.py → cell/layout_obj.py} +1 -1
- pyedb/dotnet/edb_core/cell/primitive.py +142 -0
- pyedb/dotnet/edb_core/components.py +1 -1
- pyedb/dotnet/edb_core/definition/component_def.py +1 -1
- pyedb/dotnet/edb_core/definition/component_model.py +1 -1
- pyedb/dotnet/edb_core/definition/definition_obj.py +1 -1
- pyedb/dotnet/edb_core/definition/package_def.py +2 -1
- pyedb/dotnet/edb_core/edb_data/components_data.py +19 -7
- pyedb/dotnet/edb_core/edb_data/padstacks_data.py +3 -3
- pyedb/dotnet/edb_core/edb_data/primitives_data.py +5 -126
- pyedb/dotnet/edb_core/edb_data/terminals.py +2 -2
- pyedb/dotnet/edb_core/geometry/polygon_data.py +1 -1
- pyedb/dotnet/edb_core/materials.py +2 -1
- pyedb/dotnet/edb_core/padstack.py +86 -27
- pyedb/generic/general_methods.py +33 -0
- pyedb/siwave.py +23 -2
- {pyedb-0.12.1.dist-info → pyedb-0.13.dev0.dist-info}/METADATA +2 -2
- {pyedb-0.12.1.dist-info → pyedb-0.13.dev0.dist-info}/RECORD +40 -35
- /pyedb/dotnet/edb_core/{obj_base.py → utilities/obj_base.py} +0 -0
- {pyedb-0.12.1.dist-info → pyedb-0.13.dev0.dist-info}/LICENSE +0 -0
- {pyedb-0.12.1.dist-info → pyedb-0.13.dev0.dist-info}/WHEEL +0 -0
pyedb/generic/general_methods.py
CHANGED
|
@@ -187,6 +187,39 @@ def _function_handler_wrapper(user_function): # pragma: no cover
|
|
|
187
187
|
return wrapper
|
|
188
188
|
|
|
189
189
|
|
|
190
|
+
import functools
|
|
191
|
+
import warnings
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
def deprecate_argument_name(argument_map):
|
|
195
|
+
"""Decorator to deprecate certain argument names in favor of new ones."""
|
|
196
|
+
|
|
197
|
+
def decorator(func):
|
|
198
|
+
"""Decorator that wraps the function to handle deprecated arguments."""
|
|
199
|
+
|
|
200
|
+
@functools.wraps(func)
|
|
201
|
+
def wrapper(*args, **kwargs):
|
|
202
|
+
"""Wrapper function that checks for deprecated arguments."""
|
|
203
|
+
func_name = func.__name__
|
|
204
|
+
for old_arg, new_arg in argument_map.items():
|
|
205
|
+
if old_arg in kwargs:
|
|
206
|
+
warnings.warn(
|
|
207
|
+
f"Argument `{old_arg}` is deprecated for method `{func_name}`; use `{new_arg}` instead.",
|
|
208
|
+
DeprecationWarning,
|
|
209
|
+
stacklevel=2,
|
|
210
|
+
)
|
|
211
|
+
# NOTE: Use old argument if new argument is not provided
|
|
212
|
+
if new_arg not in kwargs:
|
|
213
|
+
kwargs[new_arg] = kwargs.pop(old_arg)
|
|
214
|
+
else:
|
|
215
|
+
kwargs.pop(old_arg)
|
|
216
|
+
return func(*args, **kwargs)
|
|
217
|
+
|
|
218
|
+
return wrapper
|
|
219
|
+
|
|
220
|
+
return decorator
|
|
221
|
+
|
|
222
|
+
|
|
190
223
|
def pyedb_function_handler(direct_func=None):
|
|
191
224
|
"""Provides an exception handler, logging mechanism, and argument converter for client-server
|
|
192
225
|
communications.
|
pyedb/siwave.py
CHANGED
|
@@ -11,6 +11,7 @@ from __future__ import absolute_import # noreorder
|
|
|
11
11
|
import os
|
|
12
12
|
import pkgutil
|
|
13
13
|
import sys
|
|
14
|
+
import time
|
|
14
15
|
import warnings
|
|
15
16
|
|
|
16
17
|
from pyedb.dotnet.clr_module import _clr
|
|
@@ -362,9 +363,29 @@ class Siwave(object): # pragma no cover
|
|
|
362
363
|
``True`` when successful, ``False`` when failed.
|
|
363
364
|
|
|
364
365
|
"""
|
|
366
|
+
if not os.path.splitext(file_path)[-1] == ".htm":
|
|
367
|
+
fpath = file_path + ".htm"
|
|
368
|
+
else:
|
|
369
|
+
fpath = file_path
|
|
365
370
|
self.oproject.ScrExportDcSimReportScaling("All", "All", -1, -1, False)
|
|
366
|
-
flag = self.oproject.ScrExportDcSimReport(simulation_name, background_color,
|
|
367
|
-
|
|
371
|
+
flag = self.oproject.ScrExportDcSimReport(simulation_name, background_color, fpath)
|
|
372
|
+
if flag == 0:
|
|
373
|
+
while True:
|
|
374
|
+
self._logger.info(f"Exporting Siwave DC simulation report to {fpath}.")
|
|
375
|
+
if os.path.isfile(fpath):
|
|
376
|
+
break
|
|
377
|
+
else:
|
|
378
|
+
time.sleep(1)
|
|
379
|
+
os.path.getsize(fpath)
|
|
380
|
+
while True:
|
|
381
|
+
file_size = os.path.getsize(fpath)
|
|
382
|
+
if file_size > 0:
|
|
383
|
+
break
|
|
384
|
+
else:
|
|
385
|
+
time.sleep(1)
|
|
386
|
+
return True
|
|
387
|
+
else:
|
|
388
|
+
return False
|
|
368
389
|
|
|
369
390
|
@pyedb_function_handler
|
|
370
391
|
def run_dc_simulation(self, export_dc_power_data_to_icepak=False):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.dev0
|
|
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>
|
|
@@ -24,7 +24,7 @@ Requires-Dist: toml == 0.10.2
|
|
|
24
24
|
Requires-Dist: Rtree >= 1.2.0
|
|
25
25
|
Requires-Dist: ansys-sphinx-theme>=0.10.0,<0.17 ; extra == "doc"
|
|
26
26
|
Requires-Dist: imageio>=2.30.0,<2.35 ; extra == "doc"
|
|
27
|
-
Requires-Dist: ipython>=8.13.0,<8.
|
|
27
|
+
Requires-Dist: ipython>=8.13.0,<8.26 ; extra == "doc"
|
|
28
28
|
Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
|
|
29
29
|
Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "doc"
|
|
30
30
|
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
@@ -1,54 +1,58 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=BmAmMCxIo2l1ZDAvvsI7L4-pWSStNMjUu-GMGMzoJXs,1524
|
|
2
2
|
pyedb/edb_logger.py,sha256=yNkXnoL2me7ubLT6O6r6ElVnkZ1g8fmfFYC_2XJZ1Sw,14950
|
|
3
3
|
pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
|
|
4
|
-
pyedb/siwave.py,sha256=
|
|
4
|
+
pyedb/siwave.py,sha256=E6KoOaGqn6sfFSVe-iyh-oOC4D0c-X8iFAaX8z2Bcgs,13204
|
|
5
5
|
pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
pyedb/configuration/cfg_boundaries.py,sha256=
|
|
7
|
-
pyedb/configuration/
|
|
8
|
-
pyedb/configuration/
|
|
9
|
-
pyedb/configuration/
|
|
10
|
-
pyedb/configuration/
|
|
11
|
-
pyedb/configuration/
|
|
12
|
-
pyedb/configuration/
|
|
13
|
-
pyedb/configuration/
|
|
14
|
-
pyedb/configuration/
|
|
15
|
-
pyedb/configuration/
|
|
16
|
-
pyedb/configuration/
|
|
17
|
-
pyedb/configuration/
|
|
6
|
+
pyedb/configuration/cfg_boundaries.py,sha256=ckb-OfaObItwy-xc0LqkHJyeCfKC5vg668olPjZbaKo,6647
|
|
7
|
+
pyedb/configuration/cfg_common.py,sha256=r9_4ZokvWR3xxJEe7aGZIiSMgTDIJidwlxdJNK-gk5w,2143
|
|
8
|
+
pyedb/configuration/cfg_components.py,sha256=O0KK3KrvHL6dgDtlA45xpCB9JCs9V-WUgoob_i8HUUA,6114
|
|
9
|
+
pyedb/configuration/cfg_data.py,sha256=9qYp6ZNByi-od5riBNp4WthTuVilFTSH9dA4RhC-dlw,3938
|
|
10
|
+
pyedb/configuration/cfg_general.py,sha256=0dtd-rkQt2aYR3EOL0c3sNuDuJs7htRos1OWck3rxaI,1626
|
|
11
|
+
pyedb/configuration/cfg_nets.py,sha256=SCiBTUVHX3Ub91MEU88m0xcHIot_axT9QTFJ8LawppI,1880
|
|
12
|
+
pyedb/configuration/cfg_operations.py,sha256=dVtctpojFKvLPBVR9QK1b-w5syO2c2MaDZYezPZ3lM4,3223
|
|
13
|
+
pyedb/configuration/cfg_package_definition.py,sha256=N3jUYDOkaX7B6CPnyBYlKf-dqOLA8Awd2pRspjirc0Q,5435
|
|
14
|
+
pyedb/configuration/cfg_padstacks.py,sha256=5t799x_mfwLjCAic-B13v3I6FgDswysXdcKmeOxz4Uo,5571
|
|
15
|
+
pyedb/configuration/cfg_pin_groups.py,sha256=aidsOXTHhEyE8UGRiT1nvyn-3sD0CU_n8RR19AmhQrk,2877
|
|
16
|
+
pyedb/configuration/cfg_ports_sources.py,sha256=XDwvlCkbwlAjMpvrK_q7MVWQEVsyItXOFH3VkjGnC04,7791
|
|
17
|
+
pyedb/configuration/cfg_s_parameter_models.py,sha256=NzS3eBjBSnd7ZDk_TsX04dqRcRXompjx1DxCe1UzWMw,2855
|
|
18
|
+
pyedb/configuration/cfg_setup.py,sha256=XDpddzsIXWMHmrY-qonS5aQaFdS2OUZDQy5v8qWLCXE,8792
|
|
19
|
+
pyedb/configuration/cfg_spice_models.py,sha256=tBY3okFiEffMGvBkpmZQrCrovpt-d62k51_WkkV4jqo,2435
|
|
20
|
+
pyedb/configuration/cfg_stackup.py,sha256=9iGmDLEuMM--p0ogPy_PnWJcYahrSdTR9QnywRDiDpg,6830
|
|
21
|
+
pyedb/configuration/configuration.py,sha256=lttGAYeL3JRN9mG13eUWIh94AduC_xuBjUVM6cw7CG0,11482
|
|
18
22
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
23
|
pyedb/dotnet/clr_module.py,sha256=Mo13Of3DVSA5HR-5xZEXOiHApIKy52CUxtJ2gPkEu1A,3406
|
|
20
|
-
pyedb/dotnet/edb.py,sha256=
|
|
24
|
+
pyedb/dotnet/edb.py,sha256=UuZ_7pXf7TVOTaJ-sw6RgD31dMW7lHLK2p1HU7aQK1E,180085
|
|
21
25
|
pyedb/dotnet/application/Variables.py,sha256=nov1kIyJO25iz8pvbU3MK1meMpRLwtISmzYqJhc7Ouo,79042
|
|
22
26
|
pyedb/dotnet/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
27
|
pyedb/dotnet/edb_core/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
24
|
-
pyedb/dotnet/edb_core/components.py,sha256=
|
|
28
|
+
pyedb/dotnet/edb_core/components.py,sha256=qyY8WZ2jogF0CzJi-5B-jFWCaI3FKcvP3xVa6z6GiFc,105083
|
|
25
29
|
pyedb/dotnet/edb_core/general.py,sha256=QP6lqNEcqCdj_hSKhfKbmJ2hGBOYkhjPtsVEmyrO8KU,4726
|
|
26
30
|
pyedb/dotnet/edb_core/hfss.py,sha256=pKq46cZ08nKHc1s__hkco-tA3AiBi4vV0T7w6RyQrEI,69696
|
|
27
31
|
pyedb/dotnet/edb_core/layout.py,sha256=rtfjWsa3YNBW9mxzKuRmvO5Ccy5d5byBt3OPa6bHlPI,51156
|
|
28
32
|
pyedb/dotnet/edb_core/layout_validation.py,sha256=7Wj_VSAJOSA-RKOPgJXO-y9i6vfgJ4V9vxx0M1g1NUI,11798
|
|
29
|
-
pyedb/dotnet/edb_core/materials.py,sha256=
|
|
33
|
+
pyedb/dotnet/edb_core/materials.py,sha256=i2PNeDjt4-fdLxohE6SRGJMtoT5UbGG9gUGUaWYx-Ls,44080
|
|
30
34
|
pyedb/dotnet/edb_core/net_class.py,sha256=lr-7Z0Q1A2fshxwjrIOmQSZnEBYe0NoxuUuJT6vYdyA,11857
|
|
31
35
|
pyedb/dotnet/edb_core/nets.py,sha256=ZQ5sk7cgTQJTbHd7JQa7MmBBV_crsWGtcLhKpSbfYMw,44042
|
|
32
|
-
pyedb/dotnet/edb_core/
|
|
33
|
-
pyedb/dotnet/edb_core/padstack.py,sha256=PqXkSfyLRtdehm72sYiVMBUkNlDkivJ-eRoQWCzwNgw,57439
|
|
36
|
+
pyedb/dotnet/edb_core/padstack.py,sha256=HBbez0Z8gj0EHnUmlIUtAijMQhIXhsc9FrqzNGiudMA,60065
|
|
34
37
|
pyedb/dotnet/edb_core/siwave.py,sha256=4v68zlCO-Czv8A3qtckfQ94jRFbMxM4kuoEDVRo_cmM,62495
|
|
35
38
|
pyedb/dotnet/edb_core/stackup.py,sha256=Zko2gaotcJnILv_4SlZYzFc-NGblmTFBmEua7BSLcHU,122186
|
|
36
39
|
pyedb/dotnet/edb_core/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
pyedb/dotnet/edb_core/cell/layout_obj.py,sha256=96LODRRUfoLav8H7-iUFDkjKYQyikZ0gkSGkJ7LmYhQ,4266
|
|
41
|
+
pyedb/dotnet/edb_core/cell/primitive.py,sha256=lZXBhKbzbMP8nySrMeVN6MgM5ge9AO4jhqStIbbb7Fk,4556
|
|
37
42
|
pyedb/dotnet/edb_core/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pyedb/dotnet/edb_core/cell/hierarchy/model.py,sha256=
|
|
43
|
+
pyedb/dotnet/edb_core/cell/hierarchy/model.py,sha256=G_LGjJb7k8FHwuTOboawYVchzmWT8Y4oWbzufoykwAI,3319
|
|
39
44
|
pyedb/dotnet/edb_core/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
pyedb/dotnet/edb_core/definition/component_def.py,sha256=
|
|
41
|
-
pyedb/dotnet/edb_core/definition/component_model.py,sha256=
|
|
42
|
-
pyedb/dotnet/edb_core/definition/definition_obj.py,sha256=
|
|
45
|
+
pyedb/dotnet/edb_core/definition/component_def.py,sha256=t2baW4Zd5tqQ-uqpcJQlFTqL9XRMoF7daD02YaVV-8I,6753
|
|
46
|
+
pyedb/dotnet/edb_core/definition/component_model.py,sha256=kUGTZvsTkM5Zep9ArvNkZG--k6h1YQY80LSq_F9ELhI,2039
|
|
47
|
+
pyedb/dotnet/edb_core/definition/definition_obj.py,sha256=QKlR8DNpNaOd00sY1ybEZANioAg_tgfZAOmh7-997og,1560
|
|
43
48
|
pyedb/dotnet/edb_core/definition/definitions.py,sha256=1KcWb0FTxPBGgFjI9-ksJJpqlr8BkTXiglttwJkiuO4,2476
|
|
44
|
-
pyedb/dotnet/edb_core/definition/package_def.py,sha256=
|
|
49
|
+
pyedb/dotnet/edb_core/definition/package_def.py,sha256=gToyX1Pe46C3Z55-HEVSRaC3z_YFlI6cXl9kuas2f0E,6011
|
|
45
50
|
pyedb/dotnet/edb_core/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
51
|
pyedb/dotnet/edb_core/dotnet/database.py,sha256=m8QgX1E5elOoBTHt5zCsUKUFRuwru5r-31PmUE6rQr0,37653
|
|
47
52
|
pyedb/dotnet/edb_core/dotnet/layout.py,sha256=_3lKFvEqA5S66yF_FSX5HbLsFNFpsigRsaN3Rj02pFk,8904
|
|
48
53
|
pyedb/dotnet/edb_core/dotnet/primitive.py,sha256=VGZ_QNfdYhHDU4vq7fRUTinBfDyYTIY7SBysQK0-2SM,48320
|
|
49
54
|
pyedb/dotnet/edb_core/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
pyedb/dotnet/edb_core/edb_data/components_data.py,sha256=
|
|
51
|
-
pyedb/dotnet/edb_core/edb_data/connectable.py,sha256=4DjU3ZzeZhPkxvaZNM3MgtrHCqI0PJlea92f3wKJk0c,4256
|
|
55
|
+
pyedb/dotnet/edb_core/edb_data/components_data.py,sha256=00IqZNyDpu2nRwyEJSrFbRjzk__SJpKCx5jje46NVcQ,37636
|
|
52
56
|
pyedb/dotnet/edb_core/edb_data/control_file.py,sha256=2Gfrs8qW3N7y0A8ynAlKQpA6q9RU21zmW7B2MMyTjN0,48425
|
|
53
57
|
pyedb/dotnet/edb_core/edb_data/design_options.py,sha256=RO9ip-T5Bfxpsl97_QEk0qDZsza3tLzIX2t25XLutys,2057
|
|
54
58
|
pyedb/dotnet/edb_core/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXRh9uvxhv_D_RJc,1977
|
|
@@ -57,31 +61,32 @@ pyedb/dotnet/edb_core/edb_data/hfss_pi_simulation_setup_data.py,sha256=v3z3h_27v
|
|
|
57
61
|
pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py,sha256=naka5Bm9Ditb6Cj_F1KMrxwGk8Cn2fPtnXlyGb9IY9E,49039
|
|
58
62
|
pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=N3OIxdx1oeX3Lg1nmM-UcJ_8NQdaQD-_XgUEVlGLzOI,25918
|
|
59
63
|
pyedb/dotnet/edb_core/edb_data/nets_data.py,sha256=iBegT3fa5DwvjD0Wfd-wlJztFrb33I5v6nzSUhNS6-I,10099
|
|
60
|
-
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=
|
|
64
|
+
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=XyneC64DVNQPXL8_vS1Yum8Je3gqu8drT3qflbM8Vu8,79703
|
|
61
65
|
pyedb/dotnet/edb_core/edb_data/ports.py,sha256=FYxB2rDUtN_OsYAbodXbc5mA_d0BUebmin_B5kkUw3U,9223
|
|
62
|
-
pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=
|
|
66
|
+
pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=0VjmRd2Gq7AS2BC_egyhQqCp_PJdrlEZJQV5NKl2ed8,44546
|
|
63
67
|
pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py,sha256=Km1sjDVA0vSBOn8u2mMASPEGULQb3h-ZeSK-0Kymzqk,20962
|
|
64
68
|
pyedb/dotnet/edb_core/edb_data/simulation_configuration.py,sha256=FVytbP5wx1lWS6708_JfB2aVXjAeTzTH0-3CeMLMdv8,101304
|
|
65
69
|
pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py,sha256=T6LP6-D0sCFYw6d9I1eu01jAKXQvEz7Kn0mlUf65Hdc,42394
|
|
66
70
|
pyedb/dotnet/edb_core/edb_data/sources.py,sha256=9_j3r7tUpDQbDnIRpSsRZJ_Z3gk7Cw_wGkeQWtPnhZQ,15902
|
|
67
|
-
pyedb/dotnet/edb_core/edb_data/terminals.py,sha256=
|
|
71
|
+
pyedb/dotnet/edb_core/edb_data/terminals.py,sha256=POQfMNAhmJ9LmjbFBHvEVkS6QEarO-IALR9qLOeCq4w,25372
|
|
68
72
|
pyedb/dotnet/edb_core/edb_data/utilities.py,sha256=3wZqOJ35eisOwOPKOs-bvJ8kmd62e46EiFuiFtsroB4,4928
|
|
69
73
|
pyedb/dotnet/edb_core/edb_data/variables.py,sha256=LS1jZPOYgRvf4cyKf_x8hI9Brs-qbh4wrHu_QGLElrg,3501
|
|
70
74
|
pyedb/dotnet/edb_core/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
75
|
pyedb/dotnet/edb_core/geometry/point_data.py,sha256=hC9cRuSnX4cwg09Jr0ZK7ZTjFf_4NwXJMGbZ3s-ULpQ,1590
|
|
72
|
-
pyedb/dotnet/edb_core/geometry/polygon_data.py,sha256=
|
|
76
|
+
pyedb/dotnet/edb_core/geometry/polygon_data.py,sha256=_kMyuLDO9hK0kgQTWRX87aoNXjiBQa7lOuNWy9K-3DQ,3000
|
|
73
77
|
pyedb/dotnet/edb_core/sim_setup_data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
74
78
|
pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
75
79
|
pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py,sha256=b7Zpg6nNQArYxvdxlVhXDzvvCSC5sKFvdt10b0MHkvc,8605
|
|
76
80
|
pyedb/dotnet/edb_core/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
77
81
|
pyedb/dotnet/edb_core/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
82
|
+
pyedb/dotnet/edb_core/utilities/obj_base.py,sha256=lufR0sZj0QfZ2wlNvLL6aM1KVqCNY2A7taPPdWcK20w,3312
|
|
78
83
|
pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=ZU-HFdIqJ0DBQJqUHzU4-nzCHQ620h2ev7uR89ZFnqk,25256
|
|
79
84
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
85
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
81
86
|
pyedb/generic/data_handlers.py,sha256=oyYFwdjt0CxdOxgFDmnBlOFICt2twFLsMyELuQ1kFjE,7137
|
|
82
87
|
pyedb/generic/design_types.py,sha256=qHyIaz-Vd3ra4CP9xER76-nGRonYmSAiI3Dr8YPUeH8,4354
|
|
83
88
|
pyedb/generic/filesystem.py,sha256=SwvXv1T05SrC9TPtK88joQoU5Ab7hYjrp5NncFeH7kM,3941
|
|
84
|
-
pyedb/generic/general_methods.py,sha256=
|
|
89
|
+
pyedb/generic/general_methods.py,sha256=_S7U8-X80JLy1VEokn1WMJZ7XNA9rbA3WURaakSC1ts,44744
|
|
85
90
|
pyedb/generic/plot.py,sha256=eiCX82gyQhFAwbZgs3biR7BvGKgLA0yGHrk7kt0_7r0,4954
|
|
86
91
|
pyedb/generic/process.py,sha256=9goCXrW3Su-8WuV5f6YqzY-Pl9EMFEd50KFN5AJXZGc,11206
|
|
87
92
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
@@ -148,7 +153,7 @@ pyedb/misc/siw_feature_config/emc/tag_library.py,sha256=yUK4w3hequU017E2DbkA4KE2
|
|
|
148
153
|
pyedb/misc/siw_feature_config/emc/xml_generic.py,sha256=55X-V0OxWq-v7FTiDVjaZif8V_2xxsvJlJ8bs9Bf61I,2521
|
|
149
154
|
pyedb/modeler/geometry_operators.py,sha256=LDqEaeerw9H8Yva-SJhX3Afdni08OciO9t5G0c_tdqs,66820
|
|
150
155
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
151
|
-
pyedb-0.
|
|
152
|
-
pyedb-0.
|
|
153
|
-
pyedb-0.
|
|
154
|
-
pyedb-0.
|
|
156
|
+
pyedb-0.13.dev0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
157
|
+
pyedb-0.13.dev0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
158
|
+
pyedb-0.13.dev0.dist-info/METADATA,sha256=A3e13vc83i6nq_Xv6gnfU1xR-B2VPUuyjEf9pnjf19M,8357
|
|
159
|
+
pyedb-0.13.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|