pyedb 0.7.0__py3-none-any.whl → 0.8.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/dotnet/clr_module.py +1 -1
- pyedb/dotnet/edb.py +7 -7
- pyedb/dotnet/edb_core/cell/hierarchy/model.py +1 -1
- pyedb/dotnet/edb_core/components.py +15 -12
- pyedb/dotnet/edb_core/configuration.py +232 -25
- pyedb/dotnet/edb_core/definition/component_def.py +10 -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/definitions.py +8 -2
- pyedb/dotnet/edb_core/definition/package_def.py +61 -15
- pyedb/dotnet/edb_core/dotnet/database.py +5 -4
- pyedb/dotnet/edb_core/edb_data/components_data.py +3 -2
- pyedb/dotnet/edb_core/edb_data/connectable.py +1 -1
- pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py +14 -13
- pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py +2 -2
- pyedb/dotnet/edb_core/edb_data/layer_data.py +9 -3
- pyedb/dotnet/edb_core/edb_data/padstacks_data.py +6 -5
- pyedb/dotnet/edb_core/edb_data/primitives_data.py +16 -13
- pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py +7 -1
- pyedb/dotnet/edb_core/edb_data/sources.py +10 -0
- pyedb/dotnet/edb_core/geometry/__init__.py +0 -0
- pyedb/dotnet/edb_core/{edb_data/obj_base.py → geometry/point_data.py} +12 -26
- pyedb/dotnet/edb_core/geometry/polygon_data.py +77 -0
- pyedb/dotnet/edb_core/layout.py +59 -0
- pyedb/dotnet/edb_core/materials.py +715 -597
- pyedb/dotnet/edb_core/nets.py +3 -3
- pyedb/dotnet/edb_core/obj_base.py +94 -0
- pyedb/dotnet/edb_core/padstack.py +57 -6
- pyedb/dotnet/edb_core/siwave.py +11 -4
- pyedb/dotnet/edb_core/stackup.py +152 -131
- pyedb/dotnet/edb_core/utilities/__init__.py +3 -0
- pyedb/dotnet/edb_core/utilities/heatsink.py +69 -0
- pyedb/dotnet/sim_setup_data/data/siw_dc_ir_settings.py +46 -0
- pyedb/edb_logger.py +15 -1
- pyedb/exceptions.py +6 -0
- pyedb/generic/filesystem.py +7 -3
- pyedb/generic/general_methods.py +4 -0
- pyedb/generic/process.py +4 -1
- pyedb/generic/settings.py +30 -8
- pyedb/siwave.py +50 -1
- {pyedb-0.7.0.dist-info → pyedb-0.8.0.dist-info}/METADATA +31 -53
- {pyedb-0.7.0.dist-info → pyedb-0.8.0.dist-info}/RECORD +46 -39
- /pyedb/dotnet/edb_core/{edb_data → utilities}/simulation_setup.py +0 -0
- {pyedb-0.7.0.dist-info → pyedb-0.8.0.dist-info}/LICENSE +0 -0
- {pyedb-0.7.0.dist-info → pyedb-0.8.0.dist-info}/WHEEL +0 -0
pyedb/generic/process.py
CHANGED
|
@@ -95,7 +95,10 @@ class SiwaveSolve(object):
|
|
|
95
95
|
command.append(self._project_path)
|
|
96
96
|
command.append(exec_file)
|
|
97
97
|
command.append("-formatOutput -useSubdir")
|
|
98
|
-
|
|
98
|
+
if os.name == "posix":
|
|
99
|
+
p = subprocess.Popen(command)
|
|
100
|
+
else:
|
|
101
|
+
p = subprocess.Popen(" ".join(command))
|
|
99
102
|
p.wait()
|
|
100
103
|
|
|
101
104
|
def export_3d_cad(
|
pyedb/generic/settings.py
CHANGED
|
@@ -52,12 +52,33 @@ class Settings(object):
|
|
|
52
52
|
self._force_error_on_missing_project = False
|
|
53
53
|
self._enable_pandas_output = False
|
|
54
54
|
self.time_tick = time.time()
|
|
55
|
+
self.retry_n_times_time_interval = 0.1
|
|
55
56
|
self._global_log_file_name = "pyedb_{}.log".format(os.path.split(os.path.expanduser("~"))[-1])
|
|
56
57
|
self._enable_global_log_file = True
|
|
57
58
|
self._enable_local_log_file = False
|
|
58
59
|
self._global_log_file_size = 10
|
|
59
60
|
self._lsf_queue = None
|
|
60
61
|
self._edb_environment_variables = {}
|
|
62
|
+
self._use_pyaedt_log = False
|
|
63
|
+
self._logger = None
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
def logger(self):
|
|
67
|
+
"""Active logger."""
|
|
68
|
+
return self._logger
|
|
69
|
+
|
|
70
|
+
@logger.setter
|
|
71
|
+
def logger(self, val):
|
|
72
|
+
self._logger = val
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
def use_pyaedt_log(self):
|
|
76
|
+
"""Flag that disable Edb log when PyAEDT is used."""
|
|
77
|
+
return self._use_pyaedt_log
|
|
78
|
+
|
|
79
|
+
@use_pyaedt_log.setter
|
|
80
|
+
def use_pyaedt_log(self, value):
|
|
81
|
+
self._use_pyaedt_log = value
|
|
61
82
|
|
|
62
83
|
@property
|
|
63
84
|
def edb_environment_variables(self):
|
|
@@ -129,14 +150,6 @@ class Settings(object):
|
|
|
129
150
|
def enable_debug_methods_argument_logger(self, val):
|
|
130
151
|
self._enable_debug_methods_argument_logger = val
|
|
131
152
|
|
|
132
|
-
@property
|
|
133
|
-
def logger(self):
|
|
134
|
-
"""Active logger."""
|
|
135
|
-
try:
|
|
136
|
-
return logging.getLogger("Global")
|
|
137
|
-
except: # pragma: no cover
|
|
138
|
-
return logging.getLogger(__name__)
|
|
139
|
-
|
|
140
153
|
@property
|
|
141
154
|
def enable_error_handler(self):
|
|
142
155
|
"""Flag for enabling and disabling the internal PyEDB error handling."""
|
|
@@ -240,5 +253,14 @@ class Settings(object):
|
|
|
240
253
|
if os.path.exists(value):
|
|
241
254
|
self._edb_dll_path = value
|
|
242
255
|
|
|
256
|
+
@property
|
|
257
|
+
def retry_n_times_time_interval(self):
|
|
258
|
+
"""Time interval between the retries by the ``_retry_n_times`` method."""
|
|
259
|
+
return self._retry_n_times_time_interval
|
|
260
|
+
|
|
261
|
+
@retry_n_times_time_interval.setter
|
|
262
|
+
def retry_n_times_time_interval(self, value):
|
|
263
|
+
self._retry_n_times_time_interval = float(value)
|
|
264
|
+
|
|
243
265
|
|
|
244
266
|
settings = Settings()
|
pyedb/siwave.py
CHANGED
|
@@ -14,6 +14,7 @@ import sys
|
|
|
14
14
|
import time
|
|
15
15
|
|
|
16
16
|
from pyedb.dotnet.clr_module import _clr
|
|
17
|
+
from pyedb.edb_logger import pyedb_logger
|
|
17
18
|
from pyedb.generic.general_methods import (
|
|
18
19
|
_pythonver,
|
|
19
20
|
is_ironpython,
|
|
@@ -65,6 +66,7 @@ class Siwave(object): # pragma no cover
|
|
|
65
66
|
return self.version_keys[0]
|
|
66
67
|
|
|
67
68
|
def __init__(self, specified_version=None):
|
|
69
|
+
self._logger = pyedb_logger
|
|
68
70
|
if is_ironpython:
|
|
69
71
|
_com = "pythonnet"
|
|
70
72
|
import System
|
|
@@ -327,7 +329,6 @@ class Siwave(object): # pragma no cover
|
|
|
327
329
|
bkground_color : str, optional
|
|
328
330
|
Color of the report's background. The default is ``"White"``.
|
|
329
331
|
|
|
330
|
-
|
|
331
332
|
Returns
|
|
332
333
|
-------
|
|
333
334
|
bool
|
|
@@ -339,3 +340,51 @@ class Siwave(object): # pragma no cover
|
|
|
339
340
|
while not os.path.exists(file_path):
|
|
340
341
|
time.sleep(0.1)
|
|
341
342
|
return True
|
|
343
|
+
|
|
344
|
+
@pyedb_function_handler
|
|
345
|
+
def run_dc_simulation(self):
|
|
346
|
+
"""Run DC simulation."""
|
|
347
|
+
self._logger.info("Running DC simulation.")
|
|
348
|
+
return self.oproject.ScrRunDcSimulation(1)
|
|
349
|
+
|
|
350
|
+
@pyedb_function_handler
|
|
351
|
+
def export_icepak_project(self, file_path, dc_simulation_name):
|
|
352
|
+
"""Exports an Icepak project for standalone use.
|
|
353
|
+
|
|
354
|
+
Parameters
|
|
355
|
+
----------
|
|
356
|
+
file_path : str,
|
|
357
|
+
Path of the Icepak project.
|
|
358
|
+
dc_simulation_name : str
|
|
359
|
+
Name of the DC simulation.
|
|
360
|
+
|
|
361
|
+
Returns
|
|
362
|
+
-------
|
|
363
|
+
bool
|
|
364
|
+
``True`` when successful, ``False`` when failed.
|
|
365
|
+
|
|
366
|
+
"""
|
|
367
|
+
|
|
368
|
+
self.oproject.ScrExportDcPowerDataToIcepak(True)
|
|
369
|
+
self._logger.info("Exporting Icepak project.")
|
|
370
|
+
code = self.oproject.ScrExportIcepakProject(file_path, dc_simulation_name)
|
|
371
|
+
return True if code == 0 else False
|
|
372
|
+
|
|
373
|
+
@pyedb_function_handler
|
|
374
|
+
def run_icepak_simulation(self, icepak_simulation_name, dc_simulation_name):
|
|
375
|
+
"""Runs an Icepak simulation.
|
|
376
|
+
|
|
377
|
+
Parameters
|
|
378
|
+
----------
|
|
379
|
+
icepak_simulation_name : str
|
|
380
|
+
Name of the Icepak simulation.
|
|
381
|
+
dc_simulation_name : str
|
|
382
|
+
Name of the DC simulation.
|
|
383
|
+
|
|
384
|
+
Returns
|
|
385
|
+
-------
|
|
386
|
+
bool
|
|
387
|
+
``True`` when successful, ``False`` when failed.
|
|
388
|
+
|
|
389
|
+
"""
|
|
390
|
+
return self.oproject.ScrRunIcepakSimulation(icepak_simulation_name, dc_simulation_name)
|
|
@@ -1,73 +1,51 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.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>
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.8,<4
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
11
11
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
Requires-Dist: cffi
|
|
20
|
-
Requires-Dist: cffi == 1.16.0;platform_system=='Linux' and python_version > '3.7'
|
|
18
|
+
Requires-Dist: cffi>=1.16.0,<1.17; platform_system=='Linux'
|
|
21
19
|
Requires-Dist: pywin32 >= 303;platform_system=='Windows'
|
|
22
20
|
Requires-Dist: ansys-pythonnet >= 3.1.0rc3
|
|
23
21
|
Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist: ipython
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist: matplotlib==3.5.3 ; extra == "full" and ( python_version == '3.7')
|
|
52
|
-
Requires-Dist: matplotlib==3.7.3 ; extra == "full" and ( python_version == '3.8')
|
|
53
|
-
Requires-Dist: matplotlib==3.8.2 ; extra == "full" and ( python_version > '3.8')
|
|
54
|
-
Requires-Dist: numpy==1.21.6 ; extra == "full" and ( python_version <= '3.9')
|
|
55
|
-
Requires-Dist: numpy==1.26.0 ; extra == "full" and ( python_version > '3.9')
|
|
56
|
-
Requires-Dist: pandas==1.3.5 ; extra == "full" and ( python_version == '3.7')
|
|
57
|
-
Requires-Dist: pandas==2.0.3 ; extra == "full" and ( python_version == '3.9')
|
|
58
|
-
Requires-Dist: pandas==2.1.1 ; extra == "full" and ( python_version > '3.9')
|
|
59
|
-
Requires-Dist: matplotlib==3.5.3 ; extra == "tests" and ( python_version == '3.7')
|
|
60
|
-
Requires-Dist: matplotlib==3.7.3 ; extra == "tests" and ( python_version == '3.8')
|
|
61
|
-
Requires-Dist: matplotlib==3.8.2 ; extra == "tests" and ( python_version > '3.8')
|
|
62
|
-
Requires-Dist: numpy==1.21.6 ; extra == "tests" and ( python_version <= '3.9')
|
|
63
|
-
Requires-Dist: numpy==1.26.0 ; extra == "tests" and ( python_version > '3.9')
|
|
64
|
-
Requires-Dist: mock ; extra == "tests"
|
|
65
|
-
Requires-Dist: pandas==1.3.5 ; extra == "tests" and ( python_version == '3.7')
|
|
66
|
-
Requires-Dist: pandas==2.0.3 ; extra == "tests" and ( python_version == '3.8')
|
|
67
|
-
Requires-Dist: pandas==2.1.1 ; extra == "tests" and ( python_version > '3.9')
|
|
68
|
-
Requires-Dist: pytest==7.4.3 ; extra == "tests"
|
|
69
|
-
Requires-Dist: pytest-cov==4.1.0 ; extra == "tests"
|
|
70
|
-
Requires-Dist: pytest-xdist==3.3.1 ; extra == "tests"
|
|
22
|
+
Requires-Dist: pydantic>=2.6.4,<2.8
|
|
23
|
+
Requires-Dist: toml == 0.10.2
|
|
24
|
+
Requires-Dist: ansys-sphinx-theme>=0.10.0,<0.16 ; extra == "doc"
|
|
25
|
+
Requires-Dist: imageio>=2.30.0,<2.35 ; extra == "doc"
|
|
26
|
+
Requires-Dist: ipython>=8.13.0,<8.24 ; extra == "doc"
|
|
27
|
+
Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
|
|
28
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "doc"
|
|
29
|
+
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
30
|
+
Requires-Dist: numpydoc>=1.5.0,<1.8 ; extra == "doc"
|
|
31
|
+
Requires-Dist: pypandoc>=1.10.0,<1.14 ; extra == "doc"
|
|
32
|
+
Requires-Dist: recommonmark ; extra == "doc"
|
|
33
|
+
Requires-Dist: Sphinx>=7.1.0,<7.4 ; extra == "doc"
|
|
34
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version == '3.8')
|
|
35
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version > '3.8')
|
|
36
|
+
Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinx-gallery>=0.14.0,<0.16 ; extra == "doc"
|
|
38
|
+
Requires-Dist: sphinx_design>=0.4.0,<0.6 ; extra == "doc"
|
|
39
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "full"
|
|
40
|
+
Requires-Dist: numpy>=1.20.0,<2 ; extra == "full"
|
|
41
|
+
Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "full"
|
|
42
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "tests"
|
|
43
|
+
Requires-Dist: numpy>=1.20.0,<2 ; extra == "tests"
|
|
44
|
+
Requires-Dist: mock>=5.1.0,<5.2 ; extra == "tests"
|
|
45
|
+
Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "tests"
|
|
46
|
+
Requires-Dist: pytest>=7.4.0,<8.2 ; extra == "tests"
|
|
47
|
+
Requires-Dist: pytest-cov>=4.0.0,<5.1 ; extra == "tests"
|
|
48
|
+
Requires-Dist: pytest-xdist>=3.5.0,<3.6 ; extra == "tests"
|
|
71
49
|
Project-URL: Bugs, https://github.com/ansys/pyedb/issues
|
|
72
50
|
Project-URL: Discussions, https://github.com/ansys/pyedb/discussions
|
|
73
51
|
Project-URL: Documentation, https://edb.docs.pyansys.com
|
|
@@ -87,7 +65,7 @@ Provides-Extra: tests
|
|
|
87
65
|
# PyEDB
|
|
88
66
|
|
|
89
67
|
[](https://docs.pyansys.com/)
|
|
90
|
-
[](https://www.python.org/downloads/)
|
|
91
69
|
[](https://opensource.org/licenses/MIT)
|
|
92
70
|
|
|
93
71
|
## What is PyEDB?
|
|
@@ -1,67 +1,74 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
2
|
-
pyedb/edb_logger.py,sha256=
|
|
3
|
-
pyedb/
|
|
1
|
+
pyedb/__init__.py,sha256=6jpWxvV24dOo0Z7hWKCCteqwTs8adNrt2gI1DqoEynk,1520
|
|
2
|
+
pyedb/edb_logger.py,sha256=yNkXnoL2me7ubLT6O6r6ElVnkZ1g8fmfFYC_2XJZ1Sw,14950
|
|
3
|
+
pyedb/exceptions.py,sha256=n94xluzUks6BA24vd_L6HkrvoP_H_l6__hQmqzdCyPo,111
|
|
4
|
+
pyedb/siwave.py,sha256=ilUsA74QKy7VpRfmfvRrcVZhPAsyfgXHZm0SDDHiGBE,11576
|
|
4
5
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
pyedb/dotnet/clr_module.py,sha256=
|
|
6
|
-
pyedb/dotnet/edb.py,sha256=
|
|
6
|
+
pyedb/dotnet/clr_module.py,sha256=Mo13Of3DVSA5HR-5xZEXOiHApIKy52CUxtJ2gPkEu1A,3406
|
|
7
|
+
pyedb/dotnet/edb.py,sha256=wbzl9083scWVoWkYG5lQshBPuTnQlIiBq0P8x9zblik,169971
|
|
7
8
|
pyedb/dotnet/application/Variables.py,sha256=nov1kIyJO25iz8pvbU3MK1meMpRLwtISmzYqJhc7Ouo,79042
|
|
8
9
|
pyedb/dotnet/application/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
10
|
pyedb/dotnet/edb_core/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
10
|
-
pyedb/dotnet/edb_core/components.py,sha256=
|
|
11
|
-
pyedb/dotnet/edb_core/configuration.py,sha256=
|
|
11
|
+
pyedb/dotnet/edb_core/components.py,sha256=x4Xi05DrqAhyZbP4bXBWg3137-vemCdU2g0-4XmdfNY,103173
|
|
12
|
+
pyedb/dotnet/edb_core/configuration.py,sha256=huxXAAfRUFarJQbuoAEhH3JnmNylb2r__lfrEd8oMaA,33626
|
|
12
13
|
pyedb/dotnet/edb_core/general.py,sha256=QP6lqNEcqCdj_hSKhfKbmJ2hGBOYkhjPtsVEmyrO8KU,4726
|
|
13
14
|
pyedb/dotnet/edb_core/hfss.py,sha256=O81AB-0it9kIWTfUDaw5Frfq3EVRl0adcAurJZUIDuk,68343
|
|
14
|
-
pyedb/dotnet/edb_core/layout.py,sha256=
|
|
15
|
+
pyedb/dotnet/edb_core/layout.py,sha256=Sde2-8E-sGiO0JvjY31ydlq0QZrVkutbT_afp1FkK0w,50907
|
|
15
16
|
pyedb/dotnet/edb_core/layout_validation.py,sha256=7Wj_VSAJOSA-RKOPgJXO-y9i6vfgJ4V9vxx0M1g1NUI,11798
|
|
16
|
-
pyedb/dotnet/edb_core/materials.py,sha256=
|
|
17
|
+
pyedb/dotnet/edb_core/materials.py,sha256=xYfud7EWDmK6O_hvANRqzFjp8ZqJdM0AJ8KYhUBVTyc,44463
|
|
17
18
|
pyedb/dotnet/edb_core/net_class.py,sha256=lr-7Z0Q1A2fshxwjrIOmQSZnEBYe0NoxuUuJT6vYdyA,11857
|
|
18
|
-
pyedb/dotnet/edb_core/nets.py,sha256=
|
|
19
|
-
pyedb/dotnet/edb_core/
|
|
20
|
-
pyedb/dotnet/edb_core/
|
|
21
|
-
pyedb/dotnet/edb_core/
|
|
19
|
+
pyedb/dotnet/edb_core/nets.py,sha256=EK-jjRFvRX_NtqMQ46ebJbv9HOvP1uYK_EZ3jPnmxB0,43882
|
|
20
|
+
pyedb/dotnet/edb_core/obj_base.py,sha256=lufR0sZj0QfZ2wlNvLL6aM1KVqCNY2A7taPPdWcK20w,3312
|
|
21
|
+
pyedb/dotnet/edb_core/padstack.py,sha256=XT7S_RgOtYAr4G67EKXbbxsDeb6wMHC6Y_YMDljuMR4,54540
|
|
22
|
+
pyedb/dotnet/edb_core/siwave.py,sha256=AmwMEXAgYyfnHAdFlxl9pDc24QR4B-nKBpl0HWvav0Q,61077
|
|
23
|
+
pyedb/dotnet/edb_core/stackup.py,sha256=1RDKqo2AqYdam9AREOjh5jX59s-9nwI2CX5lI1ybB1M,115375
|
|
22
24
|
pyedb/dotnet/edb_core/cell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
25
|
pyedb/dotnet/edb_core/cell/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
pyedb/dotnet/edb_core/cell/hierarchy/model.py,sha256=
|
|
26
|
+
pyedb/dotnet/edb_core/cell/hierarchy/model.py,sha256=cJzNJLiuuoesfCL8-jWo8LbgGbfXrTYNQqmeeE38ieM,3309
|
|
25
27
|
pyedb/dotnet/edb_core/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
pyedb/dotnet/edb_core/definition/component_def.py,sha256=
|
|
27
|
-
pyedb/dotnet/edb_core/definition/component_model.py,sha256=
|
|
28
|
-
pyedb/dotnet/edb_core/definition/definition_obj.py,sha256
|
|
29
|
-
pyedb/dotnet/edb_core/definition/definitions.py,sha256=
|
|
30
|
-
pyedb/dotnet/edb_core/definition/package_def.py,sha256=
|
|
28
|
+
pyedb/dotnet/edb_core/definition/component_def.py,sha256=2M7ToqN1SE65s9xJHaLDTKlRkPk8pICUBOOn4jBGbDA,6743
|
|
29
|
+
pyedb/dotnet/edb_core/definition/component_model.py,sha256=lKyOsJNYfqUe4ZjEaYJKucBxcgLqNxfrs6BGWvYfjeA,2029
|
|
30
|
+
pyedb/dotnet/edb_core/definition/definition_obj.py,sha256=Z6GDSOvn3xX1p2W3SnXRNDbsOIxrb-I7nS47VQzozKg,1550
|
|
31
|
+
pyedb/dotnet/edb_core/definition/definitions.py,sha256=1KcWb0FTxPBGgFjI9-ksJJpqlr8BkTXiglttwJkiuO4,2476
|
|
32
|
+
pyedb/dotnet/edb_core/definition/package_def.py,sha256=dlXlrrrKhF7xPey8EIuaJbpWwLLffF1HajySU6rStS0,5967
|
|
31
33
|
pyedb/dotnet/edb_core/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
pyedb/dotnet/edb_core/dotnet/database.py,sha256=
|
|
34
|
+
pyedb/dotnet/edb_core/dotnet/database.py,sha256=m8QgX1E5elOoBTHt5zCsUKUFRuwru5r-31PmUE6rQr0,37653
|
|
33
35
|
pyedb/dotnet/edb_core/dotnet/layout.py,sha256=_3lKFvEqA5S66yF_FSX5HbLsFNFpsigRsaN3Rj02pFk,8904
|
|
34
36
|
pyedb/dotnet/edb_core/dotnet/primitive.py,sha256=VGZ_QNfdYhHDU4vq7fRUTinBfDyYTIY7SBysQK0-2SM,48320
|
|
35
37
|
pyedb/dotnet/edb_core/edb_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
-
pyedb/dotnet/edb_core/edb_data/components_data.py,sha256=
|
|
37
|
-
pyedb/dotnet/edb_core/edb_data/connectable.py,sha256=
|
|
38
|
+
pyedb/dotnet/edb_core/edb_data/components_data.py,sha256=MgE6lDjoN1wtdJZDtDlDDm9VImrCcQF-b-gUP9bl8Jo,37225
|
|
39
|
+
pyedb/dotnet/edb_core/edb_data/connectable.py,sha256=4DjU3ZzeZhPkxvaZNM3MgtrHCqI0PJlea92f3wKJk0c,4256
|
|
38
40
|
pyedb/dotnet/edb_core/edb_data/control_file.py,sha256=2Gfrs8qW3N7y0A8ynAlKQpA6q9RU21zmW7B2MMyTjN0,48425
|
|
39
41
|
pyedb/dotnet/edb_core/edb_data/design_options.py,sha256=RO9ip-T5Bfxpsl97_QEk0qDZsza3tLzIX2t25XLutys,2057
|
|
40
42
|
pyedb/dotnet/edb_core/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXRh9uvxhv_D_RJc,1977
|
|
41
|
-
pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py,sha256=
|
|
42
|
-
pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py,sha256=
|
|
43
|
-
pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=
|
|
43
|
+
pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py,sha256=5koQSKdYC6Deh4haLUDAxnHlRa-j5S6g4eyAfiGgZP8,13190
|
|
44
|
+
pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py,sha256=FtNyCgJ4ioUxOi6cMgtjsDdLLnETybJJBMizC4ZPeOo,48944
|
|
45
|
+
pyedb/dotnet/edb_core/edb_data/layer_data.py,sha256=iLfX7bsMzolxEowjdrN8Q1TMyZTfkLzK5UHklmboH6E,21945
|
|
44
46
|
pyedb/dotnet/edb_core/edb_data/nets_data.py,sha256=iULEOUsn3sfLT5FVY_4lMWTm0KzC-01AZ-aYIkM0U-k,9933
|
|
45
|
-
pyedb/dotnet/edb_core/edb_data/
|
|
46
|
-
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=htx3SXEFdSMvsEzW_JPbVYF4_HRUeYtFJGT0FN6RojI,78704
|
|
47
|
+
pyedb/dotnet/edb_core/edb_data/padstacks_data.py,sha256=T7m7s5KAZB-gZ9wrPw6k2Yoon6uwCfJSOeg2hvyX1LI,78754
|
|
47
48
|
pyedb/dotnet/edb_core/edb_data/ports.py,sha256=FYxB2rDUtN_OsYAbodXbc5mA_d0BUebmin_B5kkUw3U,9223
|
|
48
|
-
pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=
|
|
49
|
+
pyedb/dotnet/edb_core/edb_data/primitives_data.py,sha256=veMDPCb6T84KZ_xgo52g7vHxObsx-Y2ysWXBS2CqZpQ,48155
|
|
49
50
|
pyedb/dotnet/edb_core/edb_data/simulation_configuration.py,sha256=0U5sHLn8rvQFOveRQE3Y84TGk0-DUfOnbvEO6Iffya4,99967
|
|
50
|
-
pyedb/dotnet/edb_core/edb_data/
|
|
51
|
-
pyedb/dotnet/edb_core/edb_data/
|
|
52
|
-
pyedb/dotnet/edb_core/edb_data/sources.py,sha256=jo3xa9_mFQjusMzkK_9xMiKOpt8P3Tpfu6NAexa5-oo,14943
|
|
51
|
+
pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py,sha256=fPmdhh6t6HM2pE_mQCT0ZQYO-PkqhwumwiuRUNEn00Q,42354
|
|
52
|
+
pyedb/dotnet/edb_core/edb_data/sources.py,sha256=XmdpOdlpBa3QiYFY0cRtVIolt4nvUR9Ptk5YnRVvU4c,15342
|
|
53
53
|
pyedb/dotnet/edb_core/edb_data/terminals.py,sha256=m2kch7Md-MSGUEbKFW8m8RpBzq6lNMFdgPgOtDUbsMA,25287
|
|
54
54
|
pyedb/dotnet/edb_core/edb_data/utilities.py,sha256=3wZqOJ35eisOwOPKOs-bvJ8kmd62e46EiFuiFtsroB4,4928
|
|
55
55
|
pyedb/dotnet/edb_core/edb_data/variables.py,sha256=LS1jZPOYgRvf4cyKf_x8hI9Brs-qbh4wrHu_QGLElrg,3501
|
|
56
|
+
pyedb/dotnet/edb_core/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
pyedb/dotnet/edb_core/geometry/point_data.py,sha256=hC9cRuSnX4cwg09Jr0ZK7ZTjFf_4NwXJMGbZ3s-ULpQ,1590
|
|
58
|
+
pyedb/dotnet/edb_core/geometry/polygon_data.py,sha256=K1jwj6gXm4KFqrPGJmtc49bSDZl1ytmrLdJ81VEJtco,2990
|
|
59
|
+
pyedb/dotnet/edb_core/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
60
|
+
pyedb/dotnet/edb_core/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
|
|
61
|
+
pyedb/dotnet/edb_core/utilities/simulation_setup.py,sha256=uQMKL4cwWQkPD53BENHF9uyt1NxtPW0dMVAOPdI8gUM,23967
|
|
62
|
+
pyedb/dotnet/sim_setup_data/data/siw_dc_ir_settings.py,sha256=urJvgBJOgF3Td527z98vdqAtBBKC3yomcAL3fOTt7xs,1931
|
|
56
63
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
64
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
58
65
|
pyedb/generic/data_handlers.py,sha256=oyYFwdjt0CxdOxgFDmnBlOFICt2twFLsMyELuQ1kFjE,7137
|
|
59
66
|
pyedb/generic/design_types.py,sha256=qHyIaz-Vd3ra4CP9xER76-nGRonYmSAiI3Dr8YPUeH8,4354
|
|
60
|
-
pyedb/generic/filesystem.py,sha256=
|
|
61
|
-
pyedb/generic/general_methods.py,sha256=
|
|
67
|
+
pyedb/generic/filesystem.py,sha256=SwvXv1T05SrC9TPtK88joQoU5Ab7hYjrp5NncFeH7kM,3941
|
|
68
|
+
pyedb/generic/general_methods.py,sha256=ifabLBxrYmah2XOMyKrx-G53DJlfPY9hgAW8NT4e73U,43608
|
|
62
69
|
pyedb/generic/plot.py,sha256=1P9jxzpZDKy7FobBkqezcU8c-Xq5trxS6iBNNLXpFJ0,4901
|
|
63
|
-
pyedb/generic/process.py,sha256=
|
|
64
|
-
pyedb/generic/settings.py,sha256=
|
|
70
|
+
pyedb/generic/process.py,sha256=9goCXrW3Su-8WuV5f6YqzY-Pl9EMFEd50KFN5AJXZGc,11206
|
|
71
|
+
pyedb/generic/settings.py,sha256=RcQCyLXnyh-2g7n2udRKfrnj4h6CbrzBnjp2-UhgCJo,9235
|
|
65
72
|
pyedb/ipc2581/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
73
|
pyedb/ipc2581/history_record.py,sha256=s1GjcIgnZHlNCBOeEERBDX7xDuqhXmh2Ctt3ccFDWso,2739
|
|
67
74
|
pyedb/ipc2581/ipc2581.py,sha256=Y9d1PdbbMMwTUg0Ai-HKwDhJV0fCy8thRHyCFOPF4Ck,22685
|
|
@@ -124,7 +131,7 @@ pyedb/misc/siw_feature_config/emc/net_tags.py,sha256=HVYOQacmaLr6Mvf7FqZhqbhtqJL
|
|
|
124
131
|
pyedb/misc/siw_feature_config/emc/tag_library.py,sha256=yUK4w3hequU017E2DbkA4KE2MWIh1R6bfJBrevlDx6g,1557
|
|
125
132
|
pyedb/misc/siw_feature_config/emc/xml_generic.py,sha256=55X-V0OxWq-v7FTiDVjaZif8V_2xxsvJlJ8bs9Bf61I,2521
|
|
126
133
|
pyedb/modeler/geometry_operators.py,sha256=LDqEaeerw9H8Yva-SJhX3Afdni08OciO9t5G0c_tdqs,66820
|
|
127
|
-
pyedb-0.
|
|
128
|
-
pyedb-0.
|
|
129
|
-
pyedb-0.
|
|
130
|
-
pyedb-0.
|
|
134
|
+
pyedb-0.8.0.dist-info/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
135
|
+
pyedb-0.8.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
136
|
+
pyedb-0.8.0.dist-info/METADATA,sha256=XTxz1DKES6e29bNHWISMRYUsLYsYpXDu0g3t6ogZ3Eg,8320
|
|
137
|
+
pyedb-0.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|