pyedb 0.52.0__py3-none-any.whl → 0.54.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_common.py +12 -15
- pyedb/configuration/cfg_data.py +2 -2
- pyedb/configuration/cfg_modeler.py +163 -234
- pyedb/configuration/cfg_ports_sources.py +6 -8
- pyedb/configuration/cfg_stackup.py +62 -249
- pyedb/configuration/configuration.py +272 -170
- pyedb/dotnet/database/cell/hierarchy/model.py +1 -1
- pyedb/dotnet/database/cell/layout.py +1 -1
- pyedb/dotnet/database/cell/layout_obj.py +3 -3
- pyedb/dotnet/database/cell/primitive/path.py +1 -1
- pyedb/dotnet/database/cell/primitive/primitive.py +8 -8
- pyedb/dotnet/database/cell/terminal/pingroup_terminal.py +1 -1
- pyedb/dotnet/database/cell/terminal/point_terminal.py +1 -1
- pyedb/dotnet/database/cell/terminal/terminal.py +24 -26
- pyedb/dotnet/database/components.py +33 -27
- pyedb/dotnet/database/definition/component_def.py +3 -3
- pyedb/dotnet/database/definition/component_model.py +1 -1
- pyedb/dotnet/database/definition/package_def.py +1 -1
- pyedb/dotnet/database/dotnet/database.py +47 -38
- pyedb/dotnet/database/dotnet/primitive.py +16 -16
- pyedb/dotnet/database/edb_data/hfss_extent_info.py +6 -6
- pyedb/dotnet/database/edb_data/layer_data.py +17 -15
- pyedb/dotnet/database/edb_data/padstacks_data.py +12 -12
- pyedb/dotnet/database/edb_data/primitives_data.py +3 -3
- pyedb/dotnet/database/edb_data/sources.py +6 -6
- pyedb/dotnet/database/edb_data/variables.py +7 -3
- pyedb/dotnet/database/geometry/point_data.py +1 -1
- pyedb/dotnet/database/geometry/polygon_data.py +2 -4
- pyedb/dotnet/database/hfss.py +7 -7
- pyedb/dotnet/database/materials.py +2 -2
- pyedb/dotnet/database/modeler.py +8 -11
- pyedb/dotnet/database/nets.py +1 -1
- pyedb/dotnet/database/padstack.py +72 -1
- pyedb/dotnet/database/sim_setup_data/data/settings.py +24 -0
- pyedb/dotnet/database/sim_setup_data/io/siwave.py +26 -1
- pyedb/dotnet/database/siwave.py +19 -5
- pyedb/dotnet/database/stackup.py +80 -137
- pyedb/dotnet/database/utilities/heatsink.py +4 -4
- pyedb/dotnet/database/utilities/obj_base.py +1 -1
- pyedb/dotnet/database/utilities/simulation_setup.py +1 -1
- pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py +894 -0
- pyedb/dotnet/database/utilities/siwave_simulation_setup.py +15 -0
- pyedb/dotnet/database/utilities/value.py +116 -0
- pyedb/dotnet/edb.py +58 -45
- pyedb/generic/design_types.py +39 -1
- pyedb/generic/grpc_warnings.py +5 -0
- pyedb/grpc/__init__.py +0 -0
- pyedb/grpc/database/components.py +155 -98
- pyedb/grpc/database/control_file.py +240 -193
- pyedb/grpc/database/definition/materials.py +23 -30
- pyedb/grpc/database/definition/package_def.py +15 -15
- pyedb/grpc/database/definition/padstack_def.py +51 -51
- pyedb/grpc/database/definitions.py +7 -5
- pyedb/grpc/database/geometry/arc_data.py +7 -5
- pyedb/grpc/database/geometry/point_3d_data.py +8 -7
- pyedb/grpc/database/geometry/polygon_data.py +3 -2
- pyedb/grpc/database/hierarchy/component.py +43 -38
- pyedb/grpc/database/hierarchy/pin_pair_model.py +15 -14
- pyedb/grpc/database/hierarchy/pingroup.py +9 -9
- pyedb/grpc/database/layers/stackup_layer.py +45 -44
- pyedb/grpc/database/layout/layout.py +9 -8
- pyedb/grpc/database/layout/voltage_regulator.py +7 -7
- pyedb/grpc/database/layout_validation.py +13 -12
- pyedb/grpc/database/modeler.py +156 -131
- pyedb/grpc/database/nets.py +42 -31
- pyedb/grpc/database/padstacks.py +270 -175
- pyedb/grpc/database/ports/ports.py +5 -6
- pyedb/grpc/database/primitive/bondwire.py +8 -7
- pyedb/grpc/database/primitive/circle.py +4 -4
- pyedb/grpc/database/primitive/padstack_instance.py +18 -18
- pyedb/grpc/database/primitive/path.py +7 -7
- pyedb/grpc/database/primitive/polygon.py +3 -3
- pyedb/grpc/database/primitive/primitive.py +13 -17
- pyedb/grpc/database/primitive/rectangle.py +13 -13
- pyedb/grpc/database/simulation_setup/hfss_general_settings.py +1 -1
- pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +10 -0
- pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py +961 -0
- pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +17 -1
- pyedb/grpc/database/siwave.py +44 -24
- pyedb/grpc/database/source_excitations.py +333 -229
- pyedb/grpc/database/stackup.py +164 -147
- pyedb/grpc/database/terminal/bundle_terminal.py +17 -7
- pyedb/grpc/database/terminal/edge_terminal.py +10 -0
- pyedb/grpc/database/terminal/padstack_instance_terminal.py +15 -4
- pyedb/grpc/database/terminal/pingroup_terminal.py +11 -10
- pyedb/grpc/database/terminal/point_terminal.py +4 -3
- pyedb/grpc/database/terminal/terminal.py +9 -9
- pyedb/grpc/database/utility/value.py +109 -0
- pyedb/grpc/edb.py +129 -45
- pyedb/grpc/edb_init.py +0 -7
- pyedb/siwave_core/cpa/simulation_setup_data_model.py +132 -0
- pyedb/siwave_core/product_properties.py +198 -0
- {pyedb-0.52.0.dist-info → pyedb-0.54.0.dist-info}/METADATA +15 -13
- {pyedb-0.52.0.dist-info → pyedb-0.54.0.dist-info}/RECORD +97 -89
- {pyedb-0.52.0.dist-info → pyedb-0.54.0.dist-info}/WHEEL +1 -1
- {pyedb-0.52.0.dist-info → pyedb-0.54.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
class SIwaveProperties:
|
|
2
|
+
# General attributes
|
|
3
|
+
PIN_GROUP = 1
|
|
4
|
+
PART_NAME = 2
|
|
5
|
+
REF_DES_NAME = 3
|
|
6
|
+
PIN_NAME = 4
|
|
7
|
+
INTER_COMPONENT_PIN_GROUP = 5
|
|
8
|
+
|
|
9
|
+
# DC IR simulation attributes
|
|
10
|
+
DCIR_SIM_NAME = 100
|
|
11
|
+
DCIR_INIT_MESH_MAX_EDGE_LEN = 101
|
|
12
|
+
DCIR_MESH_BWS = 102
|
|
13
|
+
DCIR_MESH_VIAS = 103
|
|
14
|
+
DCIR_NUM_BW_FACETS = 104
|
|
15
|
+
DCIR_NUM_VIA_FACETS = 105
|
|
16
|
+
DCIR_ADAPTIVE_SOLVE = 106
|
|
17
|
+
DCIR_MIN_NUM_PASSES = 107
|
|
18
|
+
DCIR_MAX_NUM_PASSES = 108
|
|
19
|
+
DCIR_LOCAL_REFINEMENT = 109
|
|
20
|
+
DCIR_ENERGY_ERROR = 110
|
|
21
|
+
DCIR_REFINE_BWS = 111
|
|
22
|
+
DCIR_REFINE_VIAS = 112
|
|
23
|
+
DCIR_PLOT_JV = 113
|
|
24
|
+
DCIR_CKT_ELEM_CONTACT_R = 114
|
|
25
|
+
DCIR_ICEPAK_TEMP_FILE_PATH = 115
|
|
26
|
+
SOURCE_NEG_TERMINALS_TO_GROUND = 116
|
|
27
|
+
SOURCE_POS_TERMINALS_TO_GROUND = 117
|
|
28
|
+
DCIR_MIN_DC_PLANE_AREA_TO_MESH = 118
|
|
29
|
+
DCIR_MIN_DC_VOID_AREA_TO_MESH = 119
|
|
30
|
+
DCIR_COMPUTE_L = 120
|
|
31
|
+
|
|
32
|
+
# General simulation attributes
|
|
33
|
+
NUM_CPUS_TO_USE = 200
|
|
34
|
+
USE_HPC_LICENSE = 201
|
|
35
|
+
HPC_LICENSE_VENDOR = 202
|
|
36
|
+
|
|
37
|
+
# SYZ simulation attributes
|
|
38
|
+
SYZ_COUPLING_COPLANE = 300
|
|
39
|
+
SYZ_COUPLING_INTRA_PLANE = 301
|
|
40
|
+
SYZ_COUPLING_SPLIT_PLANE = 302
|
|
41
|
+
SYZ_COUPLING_CAVITY = 303
|
|
42
|
+
SYZ_COUPLING_TRACE = 304
|
|
43
|
+
SYZ_COUPLING_XTALK_THRESH = 305
|
|
44
|
+
SY_ZMIN_VOID_MESH = 306
|
|
45
|
+
SYZ_MESH_REFINEMENT = 307
|
|
46
|
+
SYZ_TRACE_RETURN_CURRENT = 308
|
|
47
|
+
SYZ_INCLUDE_SOURCE_PARASITICS = 309
|
|
48
|
+
SYZ_USE_INF_GROUND_PLANE = 310
|
|
49
|
+
SYZ_INF_GROUND_PLANE_DIST = 311
|
|
50
|
+
SYZ_PERFORM_ERC = 312
|
|
51
|
+
SYZ_EXCLUDE_NON_FUNCTIONAL_PADS = 313
|
|
52
|
+
|
|
53
|
+
# Icepak simulation attributes
|
|
54
|
+
|
|
55
|
+
ICEPAK_SIM_NAME = 400
|
|
56
|
+
ICEPAK_DC_SIM_NAME = 401
|
|
57
|
+
ICEPAK_MESH_FIDELITY = 402
|
|
58
|
+
ICEPAK_CAB_ABOVE_PERCENT = 403
|
|
59
|
+
ICEPAK_CAB_BELOW_PERCENT = 404
|
|
60
|
+
ICEPAK_CAB_HORIZ_PERCENT = 405
|
|
61
|
+
ICEPAK_FLOW_STYLE = 406
|
|
62
|
+
|
|
63
|
+
ICEPAK_FLOW_SPEED = 407
|
|
64
|
+
ICEPAK_FLOW_DIR = 408
|
|
65
|
+
ICEPAK_FLOW_TEMP = 409
|
|
66
|
+
|
|
67
|
+
ICEPAK_COND_FLOW_SPEED_TOP = 410
|
|
68
|
+
ICEPAK_COND_FLOW_SPEED_BOTTOM = 411
|
|
69
|
+
ICEPAK_COND_FLOW_DIR_TOP = 412
|
|
70
|
+
ICEPAK_COND_FLOW_DIR_BOTTOM = 413
|
|
71
|
+
ICEPAK_COND_TEMP_TOP = 414
|
|
72
|
+
ICEPAK_COND_TEMP_BOTTOM = 415
|
|
73
|
+
|
|
74
|
+
ICEPAK_GRAV_X = 416
|
|
75
|
+
ICEPAK_GRAV_Y = 417
|
|
76
|
+
ICEPAK_GRAV_Z = 418
|
|
77
|
+
ICEPAK_AMBIENT_TEMP = 419
|
|
78
|
+
|
|
79
|
+
ICEPAK_COMPONENT_FILE = 420
|
|
80
|
+
ICEPAK_BRD_OUTLINE_FIDELITY_MM = 421
|
|
81
|
+
ICEPAK_USE_MINIMAL_COMP_DEFAULTS = 422
|
|
82
|
+
|
|
83
|
+
# PSI simulation attributes
|
|
84
|
+
|
|
85
|
+
PSI_AC_SIM_NAME = 500
|
|
86
|
+
PSI_AC_SWEEP_STR = 501
|
|
87
|
+
|
|
88
|
+
PSI_SYZ_SIM_NAME = 502
|
|
89
|
+
PSI_SYZ_SWEEP_STR = 503
|
|
90
|
+
PSI_SYZ_INTERPOLATING = 504
|
|
91
|
+
PSI_SYZ_FAST_SWP = 505
|
|
92
|
+
PSI_SYZ_ADAPTIVE_SAMPLING = 506
|
|
93
|
+
PSI_SYZ_ENFORCE_DC = 507
|
|
94
|
+
PSI_SYZ_PORT_TYPE = 508
|
|
95
|
+
|
|
96
|
+
PSI_DISTRIBUTED = 509
|
|
97
|
+
PSI_NUM_CPUS = 510
|
|
98
|
+
PSI_USE_HPC = 511
|
|
99
|
+
PSI_HPC_LICENSE_TYPE = 512
|
|
100
|
+
PSI_SIM_SERVER_NAME = 513
|
|
101
|
+
PSI_SIM_SERVER_PORT = 514
|
|
102
|
+
PSI_SIMULATION_PREFERENCE = 515
|
|
103
|
+
PSI_MODEL_TYPE = 516
|
|
104
|
+
PSI_ENHANCED_BW_MODELING = 517
|
|
105
|
+
PSI_SURFACE_ROUGHNESS_MODEL = 518
|
|
106
|
+
PSI_RMS_ROUGHNESS = 519
|
|
107
|
+
PSI_TEMP_WORKING_DIR = 520
|
|
108
|
+
PSI_IGNORE_DUMMY_NETS = 521
|
|
109
|
+
PSI_PERFORM_ERC = 522
|
|
110
|
+
PSI_EXCLUDE_NONFUNCTIONAL_PADS = 523
|
|
111
|
+
PSI_AUTO_NET_SELECT = 524
|
|
112
|
+
PSI_IMPROVED_LOW_FREQ_RESIST = 525
|
|
113
|
+
PSI_SMALL_HOLE_SIZE = 526
|
|
114
|
+
PSI_SIGNAL_NET_ERROR_TOL = 527
|
|
115
|
+
PSI_CONDUCTOR_MODELING = 528
|
|
116
|
+
PSI_IMPROVED_METAL_LOSS = 529
|
|
117
|
+
PSI_IMPROVED_DIELECTRIC_FILL = 530
|
|
118
|
+
PSI_TOP_FILL_MATERIAL = 531
|
|
119
|
+
PSI_BOTTOM_FILL_MATERIAL = 532
|
|
120
|
+
PSI_PCB_MATERIAL = 533
|
|
121
|
+
PSI_INCLUDE_METAL_PLANE1 = 534
|
|
122
|
+
PSI_INCLUDE_METAL_PLANE2 = 535
|
|
123
|
+
PSI_FLOAT_METAL_PLANE1 = 536
|
|
124
|
+
PSI_FLOAT_METAL_PLANE2 = 537
|
|
125
|
+
PSI_H1 = 538
|
|
126
|
+
PSI_H2 = 539
|
|
127
|
+
|
|
128
|
+
# CPA simulation attributes
|
|
129
|
+
|
|
130
|
+
CPA_SIM_NAME = 600
|
|
131
|
+
CPA_CHANNEL_SETUP = 601 # channel = 1, individual source/sink = 0
|
|
132
|
+
CPA_ESD_R_MODEL = 602 # ESD R model = 1, RLCG model = 0
|
|
133
|
+
CPA_USE_Q3D_SOLVER = 603
|
|
134
|
+
CPA_NET_PROCESSING_MODE = 604
|
|
135
|
+
CPA_NETS_TO_PROCESS = 605
|
|
136
|
+
CPA_CHANNEL_DIE_NAME = 610
|
|
137
|
+
CPA_CHANNEL_PIN_GROUPING_MODE = 611 # per-pin = -1, die pin grouping = 1, PLOC = 0
|
|
138
|
+
CPA_CHANNEL_COMPONENT_EXPOSURE_CONFIG = 612
|
|
139
|
+
CPA_CHANNEL_VRM_SETUP = 613
|
|
140
|
+
CPA_REPORT_EXPORT_PATH = 614
|
|
141
|
+
CPA_RLCG_TABLE_EXPORT_PATH = 615
|
|
142
|
+
|
|
143
|
+
CPA_EXTRACTION_MODE = 616 # 0 => optimal PI, 1 => optimal SI
|
|
144
|
+
CPA_CUSTOM_REFINEMENT = 617
|
|
145
|
+
CPA_EXTRACTION_FREQUENCY = 618
|
|
146
|
+
CPA_COMPUTE_CAPACITANCE = 619
|
|
147
|
+
CPA_COMPUTE_DC_PARAMS = 620
|
|
148
|
+
CPA_DC_PARAMS_COMPUTE_RL = 621
|
|
149
|
+
CPA_DC_PARAMS_COMPUTE_CG = 622
|
|
150
|
+
CPA_AC_PARAMS_COMPUTE_RL = 623
|
|
151
|
+
CPA_GROUND_PG_NETS_FOR_SI = 624
|
|
152
|
+
CPA_AUTO_DETECT_SMALL_HOLES = 625
|
|
153
|
+
CPA_SMALL_HOLE_DIAMETER = 626
|
|
154
|
+
CPA_MODEL_TYPE = 627
|
|
155
|
+
CPA_ADAPTIVE_REFINEMENT_CG_MAX_PASSES = 628
|
|
156
|
+
CPA_ADAPTIVE_REFINEMENT_CG_PERCENT_ERROR = 629
|
|
157
|
+
CPA_ADAPTIVE_REFINEMENT_CG_PERCENT_REFINEMENT_PER_PASS = 630
|
|
158
|
+
CPA_ADAPTIVE_REFINEMENT_RL_MAX_PASSES = 631
|
|
159
|
+
CPA_ADAPTIVE_REFINEMENT_RL_PERCENT_ERROR = 632
|
|
160
|
+
CPA_ADAPTIVE_REFINEMENT_RL_PERCENT_REFINEMENT_PER_PASS = 633
|
|
161
|
+
CPA_MIN_PLANE_AREA_TO_MESH = 634
|
|
162
|
+
CPA_MIN_VOID_AREA_TO_MESH = 635
|
|
163
|
+
CPA_VERTEX_SNAP_THRESHOLD = 636
|
|
164
|
+
|
|
165
|
+
CPA_TERMINAL_TYPE = 640
|
|
166
|
+
CPA_PLOC_CONFIG = 641
|
|
167
|
+
CPA_RETURN_PATH_NET_FOR_LOOP_PARAMS = 642
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
class AttribIndex:
|
|
171
|
+
FROM_GROUP_NAME = 0
|
|
172
|
+
FROM_NET_NAME = 1
|
|
173
|
+
FROM_PIN_NAME = 2
|
|
174
|
+
FROM_PINS_ON_NET_NAME = 3
|
|
175
|
+
FROM_REFDES_NAME = 4
|
|
176
|
+
TO_GROUP_NAME = 5
|
|
177
|
+
TO_NET_NAME = 6
|
|
178
|
+
TO_PIN_NAME = 7
|
|
179
|
+
TO_PINS_ON_NET_NAME = 8
|
|
180
|
+
TO_REFDES_NAME = 9
|
|
181
|
+
TO_SOURCE_TYPE = 10
|
|
182
|
+
TO_SOURCE_MAG = 11
|
|
183
|
+
TO_RLC_TYPE = 12
|
|
184
|
+
TO_RLC_MAG = 13
|
|
185
|
+
REF_DES_NAME = 14
|
|
186
|
+
PIN_NAME = 15
|
|
187
|
+
PINS_ON_NET_NAME = 16
|
|
188
|
+
TERM_TYPE = 17
|
|
189
|
+
PIN_REGEX = 18
|
|
190
|
+
PART_REGEX = 19
|
|
191
|
+
REFDES_REGEX = 20
|
|
192
|
+
NET_REGEX = 21
|
|
193
|
+
FROM_PIN_ON_NET_NAME = 22
|
|
194
|
+
TO_PIN_ON_NET_NAME = 23
|
|
195
|
+
LAYER_NAME = 24
|
|
196
|
+
X_POS = 25
|
|
197
|
+
Y_POS = 26
|
|
198
|
+
NUM_ATTRIBS = 27
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.54.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>
|
|
@@ -15,25 +15,26 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
License-File: LICENSE
|
|
18
19
|
Requires-Dist: cffi>=1.16.0,<1.18; platform_system=='Linux'
|
|
19
20
|
Requires-Dist: pywin32 >= 303;platform_system=='Windows'
|
|
20
21
|
Requires-Dist: ansys-pythonnet >= 3.1.0rc4
|
|
21
22
|
Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
|
|
22
23
|
Requires-Dist: numpy>=1.20.0,<3
|
|
23
|
-
Requires-Dist: pandas>=1.1.0,<2.
|
|
24
|
-
Requires-Dist: pydantic>=2.6.4,<2.
|
|
24
|
+
Requires-Dist: pandas>=1.1.0,<2.4
|
|
25
|
+
Requires-Dist: pydantic>=2.6.4,<2.12
|
|
25
26
|
Requires-Dist: Rtree >= 1.2.0
|
|
26
27
|
Requires-Dist: toml == 0.10.2
|
|
27
28
|
Requires-Dist: shapely
|
|
28
29
|
Requires-Dist: scikit-rf
|
|
29
|
-
Requires-Dist: ansys-edb-core>=0.2.0
|
|
30
|
-
Requires-Dist: ansys-api-edb>=0.2.0
|
|
30
|
+
Requires-Dist: ansys-edb-core>=0.2.0
|
|
31
|
+
Requires-Dist: ansys-api-edb>=0.2.0
|
|
31
32
|
Requires-Dist: psutil
|
|
32
33
|
Requires-Dist: ansys-sphinx-theme>=1.0.0,<1.5 ; extra == "doc"
|
|
33
|
-
Requires-Dist: imageio>=2.30.0,<2.
|
|
34
|
+
Requires-Dist: imageio>=2.30.0,<2.38 ; extra == "doc"
|
|
34
35
|
Requires-Dist: ipython>=8.13.0,<8.32 ; extra == "doc"
|
|
35
|
-
Requires-Dist: jupyterlab>=4.0.0,<4.
|
|
36
|
-
Requires-Dist: jupytext>=1.16.0,<1.
|
|
36
|
+
Requires-Dist: jupyterlab>=4.0.0,<4.5 ; extra == "doc"
|
|
37
|
+
Requires-Dist: jupytext>=1.16.0,<1.18 ; extra == "doc"
|
|
37
38
|
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "doc"
|
|
38
39
|
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
39
40
|
Requires-Dist: nbconvert < 7.17 ; extra == "doc"
|
|
@@ -44,15 +45,15 @@ Requires-Dist: Sphinx>=7.1.0,<8.2 ; extra == "doc"
|
|
|
44
45
|
Requires-Dist: sphinx-autobuild==2021.3.14 ; extra == "doc" and ( python_version == '3.8')
|
|
45
46
|
Requires-Dist: sphinx-autobuild==2024.10.3 ; extra == "doc" and ( python_version > '3.8')
|
|
46
47
|
Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
|
|
47
|
-
Requires-Dist: sphinx-gallery>=0.14.0,<0.
|
|
48
|
+
Requires-Dist: sphinx-gallery>=0.14.0,<0.20 ; extra == "doc"
|
|
48
49
|
Requires-Dist: sphinx_design>=0.4.0,<0.7 ; extra == "doc"
|
|
49
50
|
Requires-Dist: shapely ; extra == "doc"
|
|
50
51
|
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "full"
|
|
51
52
|
Requires-Dist: shapely ; extra == "full"
|
|
52
53
|
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "tests"
|
|
53
|
-
Requires-Dist: mock>=5.1.0,<5.
|
|
54
|
-
Requires-Dist: pytest>=7.4.0,<8.
|
|
55
|
-
Requires-Dist: pytest-cov>=4.0.0,<6.
|
|
54
|
+
Requires-Dist: mock>=5.1.0,<5.3 ; extra == "tests"
|
|
55
|
+
Requires-Dist: pytest>=7.4.0,<8.5 ; extra == "tests"
|
|
56
|
+
Requires-Dist: pytest-cov>=4.0.0,<6.3 ; extra == "tests"
|
|
56
57
|
Requires-Dist: pytest-xdist>=3.5.0,<3.7 ; extra == "tests"
|
|
57
58
|
Requires-Dist: scikit-rf ; extra == "tests"
|
|
58
59
|
Requires-Dist: shapely ; extra == "tests"
|
|
@@ -77,6 +78,7 @@ Provides-Extra: tests
|
|
|
77
78
|
[](https://docs.pyansys.com/)
|
|
78
79
|
[](https://www.python.org/downloads/)
|
|
79
80
|
[](https://opensource.org/licenses/MIT)
|
|
81
|
+
[](https://deepwiki.com/ansys/pyedb)
|
|
80
82
|
|
|
81
83
|
## What is PyEDB?
|
|
82
84
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
pyedb/__init__.py,sha256=
|
|
1
|
+
pyedb/__init__.py,sha256=5r17oR6jAPwoaVJBsUwKRXrfL2yi6q4HfSBkIIRwpFc,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
|
|
@@ -8,202 +8,207 @@ pyedb/common/nets.py,sha256=a6w_U-dCrWA4l0GUC9mf1nio91BGGOKh3K6cqd4I5vM,17877
|
|
|
8
8
|
pyedb/component_libraries/ansys_components.py,sha256=O3ypt832IHY9zG2AD_yrRrbH2KH9P1yFaoi1EO6Zllw,4830
|
|
9
9
|
pyedb/configuration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
pyedb/configuration/cfg_boundaries.py,sha256=-CEUVF3_mnRJv9otavjMKX6iOsLSo1X03nfxnrrApmo,11216
|
|
11
|
-
pyedb/configuration/cfg_common.py,sha256=
|
|
11
|
+
pyedb/configuration/cfg_common.py,sha256=_-gvuEBMpSkJsBXKMfMFU5QuaZ1of_ciTQI_Oj8k4ls,2414
|
|
12
12
|
pyedb/configuration/cfg_components.py,sha256=LFciizI0GIkny-A3PE2_KPnhf1VDjkQph7QNa35fN24,26082
|
|
13
|
-
pyedb/configuration/cfg_data.py,sha256
|
|
13
|
+
pyedb/configuration/cfg_data.py,sha256=-JsesX1Pxyk2ukyqTf1dp--DXUuxefwIUSlSezSKc9c,3838
|
|
14
14
|
pyedb/configuration/cfg_general.py,sha256=RvBG9DnGB7700fDTa8eEZpOUgI2wwS3GoPXOUzmaDNQ,3200
|
|
15
|
-
pyedb/configuration/cfg_modeler.py,sha256=
|
|
15
|
+
pyedb/configuration/cfg_modeler.py,sha256=aGAvCArjG5pIlOAGFih8M2wkCAvb9NDZxy6DSXb6HZs,6336
|
|
16
16
|
pyedb/configuration/cfg_nets.py,sha256=vAtp3tTTuTDSDZw6uay4qXjbThqcCoyEXf7fNKW64DY,2900
|
|
17
17
|
pyedb/configuration/cfg_operations.py,sha256=YikpnTqaW_5D3-jtg8zAzDrsC6JXbsUOHPYDDtjKdnY,8340
|
|
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=iD99HPQxIBEBX2CZdenMtzq7Xf3Jj2vsgKy-VCzELCo,33852
|
|
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
|
-
pyedb/configuration/cfg_stackup.py,sha256=
|
|
26
|
-
pyedb/configuration/configuration.py,sha256=
|
|
25
|
+
pyedb/configuration/cfg_stackup.py,sha256=EF7Ni_ejxaI-zru1j9mf80AWC_Q2MklxPYmIlfYejPc,4120
|
|
26
|
+
pyedb/configuration/configuration.py,sha256=fSzX5VVcS3-Q63DUNPZsEra7tFW2NZPYuJFKgzrCZcA,23258
|
|
27
27
|
pyedb/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
28
28
|
pyedb/dotnet/clr_module.py,sha256=RNdHGF5lzx_f68xtdeIRgyrbeKj10JrI0kAp73H4EM4,5490
|
|
29
|
-
pyedb/dotnet/edb.py,sha256=
|
|
29
|
+
pyedb/dotnet/edb.py,sha256=ZS_yPnR0yByev2J5xXENLOCfOPoWCWVn_KTzuht-95M,190198
|
|
30
30
|
pyedb/dotnet/database/Variables.py,sha256=CX12X6u-2tbcgjYJU643TVjIJEGB58a2nM4f4wMVTR8,77687
|
|
31
31
|
pyedb/dotnet/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
|
|
32
|
-
pyedb/dotnet/database/components.py,sha256=
|
|
32
|
+
pyedb/dotnet/database/components.py,sha256=leHjXeJNG9LAjEcSHO5iwepX7N66c8i4DmliKC46aXg,111530
|
|
33
33
|
pyedb/dotnet/database/general.py,sha256=k2Bcr5VV-QUzEZlYorqYCX1ZchHBH7WqUvc8maMxId0,4716
|
|
34
|
-
pyedb/dotnet/database/hfss.py,sha256=
|
|
34
|
+
pyedb/dotnet/database/hfss.py,sha256=sMRIPVVheLB3vdsibOzEbqo48B_7YZTNytMjB-LvnW4,69144
|
|
35
35
|
pyedb/dotnet/database/layout_obj_instance.py,sha256=se6eJ2kfQOAZfAwObCBdr0A7CCD3st4aiPPVJR9eQoA,1407
|
|
36
36
|
pyedb/dotnet/database/layout_validation.py,sha256=4hBdkD71ZqqTIqQNxT42_fh7sMl9cdHn14fGjORDDFM,13230
|
|
37
|
-
pyedb/dotnet/database/materials.py,sha256=
|
|
38
|
-
pyedb/dotnet/database/modeler.py,sha256=
|
|
37
|
+
pyedb/dotnet/database/materials.py,sha256=XhOJnzpdtGJU372sHHQDPYTDoAoSkEnyz_dVQ7IJObY,48066
|
|
38
|
+
pyedb/dotnet/database/modeler.py,sha256=nQ4WX1RxOmKzK0pz79rr8MPfHXPFQNM_GiRZvwuCNp4,57601
|
|
39
39
|
pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
|
|
40
|
-
pyedb/dotnet/database/nets.py,sha256=
|
|
41
|
-
pyedb/dotnet/database/padstack.py,sha256=
|
|
42
|
-
pyedb/dotnet/database/siwave.py,sha256=
|
|
43
|
-
pyedb/dotnet/database/stackup.py,sha256=
|
|
40
|
+
pyedb/dotnet/database/nets.py,sha256=Q98AC4aVZRSTh7jlBpEIrmt00TjZojpDX3Uy1C-WBTM,25611
|
|
41
|
+
pyedb/dotnet/database/padstack.py,sha256=Fc14BOIeuIZBvR1ldv97wCrVG2diObtrW2LAAQ-1Y08,75855
|
|
42
|
+
pyedb/dotnet/database/siwave.py,sha256=CweMFCq1BTwHIMBeyV1lUy0sTDDkUOJNi1754KFYRSA,64896
|
|
43
|
+
pyedb/dotnet/database/stackup.py,sha256=mTB_P_xdL-2q0ffxc9n6qjhDhXUtaYMrHFchyRTtIWE,117386
|
|
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=
|
|
47
|
-
pyedb/dotnet/database/cell/layout_obj.py,sha256=
|
|
46
|
+
pyedb/dotnet/database/cell/layout.py,sha256=6OptW_1KCX0YjzeMqe0NxqsR5pV0YT3__opm97sVvfA,13478
|
|
47
|
+
pyedb/dotnet/database/cell/layout_obj.py,sha256=eeJ-3eZyl_6wDxZb_MBakBN-VWIejRfJq2G2kYX7iII,2756
|
|
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
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
|
-
pyedb/dotnet/database/cell/hierarchy/model.py,sha256=
|
|
52
|
+
pyedb/dotnet/database/cell/hierarchy/model.py,sha256=0pSizO2g3nHGBB13W0vyr4DgJRQNlPq5opoNysLCouw,3195
|
|
53
53
|
pyedb/dotnet/database/cell/hierarchy/netlist_model.py,sha256=fF6tY-6s-lW9EuvJ5sw3RlIkjuoSjeZbrNk5wG-_hzM,1356
|
|
54
54
|
pyedb/dotnet/database/cell/hierarchy/pin_pair_model.py,sha256=nq_22nNC2EWo9rirAztOE2mysfP6uV9cdMnamy6zTu4,3792
|
|
55
55
|
pyedb/dotnet/database/cell/hierarchy/s_parameter_model.py,sha256=jlL6Lbav16RVPlZPV3U1tRfeOip39wF6KeLbmiO9h3w,1624
|
|
56
56
|
pyedb/dotnet/database/cell/hierarchy/spice_model.py,sha256=SGiUcan2l0n8DGk3GtwCskkqZ3rdVHMSS_fGlAfwJSk,1443
|
|
57
57
|
pyedb/dotnet/database/cell/primitive/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
58
58
|
pyedb/dotnet/database/cell/primitive/bondwire.py,sha256=3Wqn_9a54xhfPw38Vyo4ekzCF8NoU-WN_mNlhS8lFvw,7322
|
|
59
|
-
pyedb/dotnet/database/cell/primitive/path.py,sha256=
|
|
60
|
-
pyedb/dotnet/database/cell/primitive/primitive.py,sha256=
|
|
59
|
+
pyedb/dotnet/database/cell/primitive/path.py,sha256=EsRdEXQ7l1xRADnsVt3evHnY5GCcboYTyuKY_fToALE,13093
|
|
60
|
+
pyedb/dotnet/database/cell/primitive/primitive.py,sha256=9Dy55vUftmMkwcDeVGvY6pjr7-bkjfJKP8S0-35vppU,28987
|
|
61
61
|
pyedb/dotnet/database/cell/terminal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
pyedb/dotnet/database/cell/terminal/bundle_terminal.py,sha256=6wKbXqnyCCoYsBQGkHga-40brmGzGv4zly45OB33HJM,1977
|
|
63
63
|
pyedb/dotnet/database/cell/terminal/edge_terminal.py,sha256=uyoemVyEzez8WjI9Fyqh-RbtmkJHjjUM5F1CsUErSOY,3970
|
|
64
64
|
pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py,sha256=byFKoc1RzFmWUQuS5KuX9xiUikYjOwUjQuPby1jrV5o,4534
|
|
65
|
-
pyedb/dotnet/database/cell/terminal/pingroup_terminal.py,sha256=
|
|
66
|
-
pyedb/dotnet/database/cell/terminal/point_terminal.py,sha256=
|
|
67
|
-
pyedb/dotnet/database/cell/terminal/terminal.py,sha256=
|
|
65
|
+
pyedb/dotnet/database/cell/terminal/pingroup_terminal.py,sha256=hR662gQGnI52eRUxfreZXNEIGmeH0QcC3FgEY5ldJgA,2750
|
|
66
|
+
pyedb/dotnet/database/cell/terminal/point_terminal.py,sha256=rRee-4BHfPT7Jpm5JlAiaWE1b_hG8AsG_8SFN91TRLA,3387
|
|
67
|
+
pyedb/dotnet/database/cell/terminal/terminal.py,sha256=2g8zckzhRU_VamEu_3MsIB5A_sLaWmysGY9cEp2j_Vo,18596
|
|
68
68
|
pyedb/dotnet/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
pyedb/dotnet/database/definition/component_def.py,sha256=
|
|
70
|
-
pyedb/dotnet/database/definition/component_model.py,sha256=
|
|
69
|
+
pyedb/dotnet/database/definition/component_def.py,sha256=wWFWCykxLJv7dAf_JJiPUSGbCGsE8wmcus_GwZdU8Jo,7395
|
|
70
|
+
pyedb/dotnet/database/definition/component_model.py,sha256=jKmTH_3yApx4lia-GRJVwxDhtDfNMyMW9p0WWvbb8WA,1835
|
|
71
71
|
pyedb/dotnet/database/definition/definition_obj.py,sha256=HU_SL9tMGlmWyockpRM51k9PdpQ4eeHjScP4YQdGkls,1560
|
|
72
72
|
pyedb/dotnet/database/definition/definitions.py,sha256=sXWgCkHOtCkqZOtdnIdwjnkfCoKHAwFHsYleqkc_XcQ,2383
|
|
73
|
-
pyedb/dotnet/database/definition/package_def.py,sha256=
|
|
73
|
+
pyedb/dotnet/database/definition/package_def.py,sha256=X-w1LWV0-xzR-xcCz0yJrtiRd_kDFCzQdBz-b3me_2I,6825
|
|
74
74
|
pyedb/dotnet/database/dotnet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
|
-
pyedb/dotnet/database/dotnet/database.py,sha256=
|
|
76
|
-
pyedb/dotnet/database/dotnet/primitive.py,sha256=
|
|
75
|
+
pyedb/dotnet/database/dotnet/database.py,sha256=81MZGx5PWIjOyo4OMdmcuori4P5VKF02kAuVok_nUqU,37260
|
|
76
|
+
pyedb/dotnet/database/dotnet/primitive.py,sha256=U0-Ekq_KHGRdmjBUtcXWx4ARpjoS5jqW_pknot4YNxc,49896
|
|
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
|
|
79
79
|
pyedb/dotnet/database/edb_data/design_options.py,sha256=qzVrSpXUsa-IhjEjaPBZNyhbR56X0nNEOgezCgmY5vo,2550
|
|
80
80
|
pyedb/dotnet/database/edb_data/edbvalue.py,sha256=Vj_11HXsQUNavizKp5FicORm6cjhXRh9uvxhv_D_RJc,1977
|
|
81
|
-
pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=
|
|
82
|
-
pyedb/dotnet/database/edb_data/layer_data.py,sha256=
|
|
81
|
+
pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=GV2TMaZd9sDoM7Ri_wRhOQYWfsihcR7rjUx22Gq-z9w,13022
|
|
82
|
+
pyedb/dotnet/database/edb_data/layer_data.py,sha256=ov8RIJx151HcjNXtotRuYiw33zyV4iy6-UzjsOmsBiw,34385
|
|
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=2nAXQTlEPp6QL1QJt2yiRG4LvZT9-ExXqB64KX89r70,83858
|
|
85
85
|
pyedb/dotnet/database/edb_data/ports.py,sha256=qoqTqk47E4xtg43uvQ_SWCEUQscFBjt2bfcj9vsQsLI,7405
|
|
86
|
-
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=
|
|
86
|
+
pyedb/dotnet/database/edb_data/primitives_data.py,sha256=sse5OKywrgEpdUxnaV6-lGUhDyYHUPlsVa-QUGripy4,16827
|
|
87
87
|
pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
|
|
88
88
|
pyedb/dotnet/database/edb_data/simulation_configuration.py,sha256=epMOclqz9nyewh2zEHFzylSS6e4-10dAqKzzZYbkgaw,100432
|
|
89
|
-
pyedb/dotnet/database/edb_data/sources.py,sha256=
|
|
89
|
+
pyedb/dotnet/database/edb_data/sources.py,sha256=KottWGjgfwsXmxehWftVo61hKeFVPV3Aw3kpLxkXVR0,15682
|
|
90
90
|
pyedb/dotnet/database/edb_data/utilities.py,sha256=ztJdG7fy-e4OoCOqmIYr2xE7Fz6YMsEEVNxIengD0mA,4938
|
|
91
|
-
pyedb/dotnet/database/edb_data/variables.py,sha256=
|
|
91
|
+
pyedb/dotnet/database/edb_data/variables.py,sha256=P8dmdgdkLGycVIRX6TkFEqb3LHmqHALqYdhuumOB8FY,3677
|
|
92
92
|
pyedb/dotnet/database/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
pyedb/dotnet/database/geometry/point_data.py,sha256=
|
|
94
|
-
pyedb/dotnet/database/geometry/polygon_data.py,sha256=
|
|
93
|
+
pyedb/dotnet/database/geometry/point_data.py,sha256=mhfNl085bRZbaCuK3QjFhhtTO4eFrWLqrc35PqpOMx0,2171
|
|
94
|
+
pyedb/dotnet/database/geometry/polygon_data.py,sha256=07gsCWjwmy01zqg1dYx_lztHSKlFgA3slFnHr8W1E5E,6178
|
|
95
95
|
pyedb/dotnet/database/sim_setup_data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
96
96
|
pyedb/dotnet/database/sim_setup_data/data/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
97
97
|
pyedb/dotnet/database/sim_setup_data/data/adaptive_frequency_data.py,sha256=tlHI7PUUoseNnJAtihpjb1PwXYNr-4ztAAnunlLLWVQ,2463
|
|
98
98
|
pyedb/dotnet/database/sim_setup_data/data/mesh_operation.py,sha256=WqDQjs1yA8MDX0PtybjDEelvnn5B9L2xIts0BH4Y9dw,8775
|
|
99
|
-
pyedb/dotnet/database/sim_setup_data/data/settings.py,sha256=
|
|
99
|
+
pyedb/dotnet/database/sim_setup_data/data/settings.py,sha256=627XwAFnQw3x_5HsJzYDAqW9Y-xpuK-mntjqg_aaK08,30082
|
|
100
100
|
pyedb/dotnet/database/sim_setup_data/data/sim_setup_info.py,sha256=hN2TeXa8dbtOmEtwobhKuwomJXYs8cSJum3HQofuW3Y,4479
|
|
101
101
|
pyedb/dotnet/database/sim_setup_data/data/simulation_settings.py,sha256=ag-nl1gwKlNJOb3y7fBMSoSEwbUG_rwLzM25jLp8ado,10727
|
|
102
102
|
pyedb/dotnet/database/sim_setup_data/data/siw_dc_ir_settings.py,sha256=FnvDY1oxpnPo0EYMVXT7yfW-e-W3_NOGnvUvQYta4Ls,8627
|
|
103
103
|
pyedb/dotnet/database/sim_setup_data/data/sweep_data.py,sha256=9JdKRP6DrXeuMhd7XKLIzDSGZDUoBnevbfi88oiX2F8,20129
|
|
104
104
|
pyedb/dotnet/database/sim_setup_data/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
pyedb/dotnet/database/sim_setup_data/io/siwave.py,sha256=
|
|
105
|
+
pyedb/dotnet/database/sim_setup_data/io/siwave.py,sha256=r2g8qcKZclQdKEx3cADmuTuN4ohjeTAiesonFmLwoHw,32156
|
|
106
106
|
pyedb/dotnet/database/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
107
|
-
pyedb/dotnet/database/utilities/heatsink.py,sha256=
|
|
107
|
+
pyedb/dotnet/database/utilities/heatsink.py,sha256=SYiBca-o_Tu0efDCXB8f2hNIOSIzG5fyEqO19AN5ZeI,2208
|
|
108
108
|
pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=EbaARi2L_Q00N2uaoV0idMzz-XG1DQ2-Rf7XVNAYinc,14053
|
|
109
|
-
pyedb/dotnet/database/utilities/obj_base.py,sha256=
|
|
110
|
-
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=
|
|
111
|
-
pyedb/dotnet/database/utilities/
|
|
109
|
+
pyedb/dotnet/database/utilities/obj_base.py,sha256=NEL6_tRGxGTrT7jNsGJfOm8ac0OgWCKaK4Us_nlGmoM,2877
|
|
110
|
+
pyedb/dotnet/database/utilities/simulation_setup.py,sha256=p7wALYNPJzsbFqwd0QfWWmZRf_gg9sH5JiNin41GVIA,13313
|
|
111
|
+
pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py,sha256=epqPFxqsmibLZDh2d6QXJrg57zuIW0_s_Ctwo38pFcE,32621
|
|
112
|
+
pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=ShE-3AtgbINCiryPtnkm83YhpM8I9MirzsqaccgGUAs,14309
|
|
113
|
+
pyedb/dotnet/database/utilities/value.py,sha256=uO8ru3t8rkbdOZ3yQ395eMRLa5doCxk4geapAPGXn6U,4821
|
|
112
114
|
pyedb/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
115
|
pyedb/extensions/via_design_backend.py,sha256=J_9XYbAASPW9e4suyLDal5TcnVmqw-HI0zzu766_HQo,24247
|
|
114
116
|
pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
117
|
pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
|
|
116
118
|
pyedb/generic/data_handlers.py,sha256=rfqNe2tPCJRqhXZBCyWxRFu5SjQ92Cdzq4l0TDC4Pvw,6905
|
|
117
|
-
pyedb/generic/design_types.py,sha256=
|
|
119
|
+
pyedb/generic/design_types.py,sha256=bF0R141sPV93lcOyxTyZTb2jPNgkC9Fy4HbSOMSilok,9449
|
|
118
120
|
pyedb/generic/filesystem.py,sha256=EqsLGwdhCgY3asomjoWZBBYWQiGhVOBlSzQlM6FCZhw,3674
|
|
119
121
|
pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil6Rg,42798
|
|
122
|
+
pyedb/generic/grpc_warnings.py,sha256=YYW5NhypV8AeeRmV7NZ7ej7Z1n-44z2FPGfQQue3D_Q,277
|
|
120
123
|
pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
|
|
121
124
|
pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
|
|
122
125
|
pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
|
|
123
|
-
pyedb/grpc/
|
|
124
|
-
pyedb/grpc/
|
|
126
|
+
pyedb/grpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
+
pyedb/grpc/edb.py,sha256=AoNW3Eu_SebIOeauDoX7gvpJAotI2cPXNhBYHj8gRx4,149597
|
|
128
|
+
pyedb/grpc/edb_init.py,sha256=wgXM5fb_ddPqImF6xTA1L7XRHTRs10BBBhhua9m4IZM,15721
|
|
125
129
|
pyedb/grpc/rpc_session.py,sha256=HEGyWpmF8bvRcS_33C7-cOGPUdtiu3PMDTFOgP1LSSQ,7065
|
|
126
130
|
pyedb/grpc/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
-
pyedb/grpc/database/components.py,sha256=
|
|
128
|
-
pyedb/grpc/database/control_file.py,sha256=
|
|
129
|
-
pyedb/grpc/database/definitions.py,sha256=
|
|
131
|
+
pyedb/grpc/database/components.py,sha256=0cdphDEOdpoIz9yTUBixbtEnxIs3sPvcOvFiz0DRoEo,82071
|
|
132
|
+
pyedb/grpc/database/control_file.py,sha256=L_UsWR4P_HFt4Em0cGxKwx7CjMrhwjYTx4MY5oQnFXw,63744
|
|
133
|
+
pyedb/grpc/database/definitions.py,sha256=W8-pHfEyNfhpoaA0KeXN_HuJ2Pk2KvybTFvITq6l6ag,4412
|
|
130
134
|
pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
|
|
131
135
|
pyedb/grpc/database/hfss.py,sha256=GuYxGJjeAdcnQBf7CvRgQNbEbdnNGzwlRpOus9X7Jw0,42799
|
|
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=
|
|
136
|
+
pyedb/grpc/database/layout_validation.py,sha256=9y5mKyK0tLmIn3qHj3H3d-YxPADQ9gTxEgx7Zgt4VN8,15687
|
|
137
|
+
pyedb/grpc/database/modeler.py,sha256=nixyjOKtK9_qkZvF3s1gfPT7RX85bpeyHyJ-fBi79OA,54420
|
|
138
|
+
pyedb/grpc/database/nets.py,sha256=irXJEBDhPiZYfh-iXRNoaKJSpnou6pWyNP90CfVjCTA,29084
|
|
139
|
+
pyedb/grpc/database/padstacks.py,sha256=4u66QIrC-2x7oM54X9Ae918qtxVrfo23vWUPGtuwSDI,72491
|
|
140
|
+
pyedb/grpc/database/siwave.py,sha256=hoOpHGrocMj2MQiapCE8WjGeR7hmym-oH2A01nfiLbU,36882
|
|
141
|
+
pyedb/grpc/database/source_excitations.py,sha256=8pPOFpwdTS6uHfQhT1DdS4pVesSIlFV3d_rRs5Tg5pY,129039
|
|
142
|
+
pyedb/grpc/database/stackup.py,sha256=De3RBNdCXtNIaOlSWst6Q6MWSb2zCdgxnChcIZ-v86I,114609
|
|
139
143
|
pyedb/grpc/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
144
|
pyedb/grpc/database/definition/component_def.py,sha256=2c5Xz98bdOAdOAX5kat2PY5N9-BiA1T6yw6TsWYRUmg,7579
|
|
141
145
|
pyedb/grpc/database/definition/component_model.py,sha256=9TRfILC3FfmgSrnYRwEdF2kbY4jFcC5rSeR9xeeb3wg,1689
|
|
142
146
|
pyedb/grpc/database/definition/component_pin.py,sha256=PfwTv6ILn6irJ4P5nB0PNtz2U5dR4NPevsw6P33pAfQ,1493
|
|
143
|
-
pyedb/grpc/database/definition/materials.py,sha256=
|
|
147
|
+
pyedb/grpc/database/definition/materials.py,sha256=_LlJJrh-piFeU8KiUzstQOZqIy2ED0RC2-KbwTraWNg,45336
|
|
144
148
|
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=
|
|
149
|
+
pyedb/grpc/database/definition/package_def.py,sha256=gWMNRinBOUq7moOxgHErMg7lKN7HsKUpbhMP8RKhszI,8095
|
|
150
|
+
pyedb/grpc/database/definition/padstack_def.py,sha256=S_5kuFRv-YqyuqIG8YuZOkR_OleGALaBZNaDjg8eXLU,29689
|
|
147
151
|
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=
|
|
152
|
+
pyedb/grpc/database/geometry/arc_data.py,sha256=yjP3QEl9WLm0ub7T_nWZrDviiSek-ZnWnrQAEIWYLEk,2794
|
|
153
|
+
pyedb/grpc/database/geometry/point_3d_data.py,sha256=ERVi3a-3YpOrniCa9a2L6-TZDSoBEYxbp8WwgaQfNMM,2174
|
|
150
154
|
pyedb/grpc/database/geometry/point_data.py,sha256=q8a6-MRUunTl6-kBbYuraiVbYF_EOY1eSMmwo5_ouuk,1433
|
|
151
|
-
pyedb/grpc/database/geometry/polygon_data.py,sha256
|
|
155
|
+
pyedb/grpc/database/geometry/polygon_data.py,sha256=-gG-_TFK55i3HdVch2gW5luNINeymDlBTA2zxSZf-dw,4914
|
|
152
156
|
pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
153
|
-
pyedb/grpc/database/hierarchy/component.py,sha256=
|
|
157
|
+
pyedb/grpc/database/hierarchy/component.py,sha256=TbweR4KCdBhrcgQ50hYstN1we4vyEXRXF_co5IW0jfo,42158
|
|
154
158
|
pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
|
|
155
159
|
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=
|
|
160
|
+
pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=kiWYF6G44J_OilQG-jr8UI4GMQN6FDmQydjcq5F21sA,3518
|
|
161
|
+
pyedb/grpc/database/hierarchy/pingroup.py,sha256=3YnU-TmKItV5I5eIlQcuhoFDSb1rcmSKK5-V_Tw1GaI,8006
|
|
158
162
|
pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=gMCPTznjpT_6WVJaIMOItdpo5zhV-QPC3CUHEtMqVm4,1535
|
|
159
163
|
pyedb/grpc/database/hierarchy/spice_model.py,sha256=pyKr5mQrezhUzJtaArvWa8fODNiTPza5gFSSEiSmLAI,2022
|
|
160
164
|
pyedb/grpc/database/layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
165
|
pyedb/grpc/database/layers/layer.py,sha256=bPieGISKPGZ_jY8GOq9L6Ywoqcmv_Sq-cM3AS4OtXRE,3432
|
|
162
|
-
pyedb/grpc/database/layers/stackup_layer.py,sha256=
|
|
166
|
+
pyedb/grpc/database/layers/stackup_layer.py,sha256=Hwceiu-ZZhejgPUKASEOXL8O2HyntQHjy81Y30clpDU,27481
|
|
163
167
|
pyedb/grpc/database/layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
164
168
|
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=
|
|
169
|
+
pyedb/grpc/database/layout/layout.py,sha256=Wcxqg7pdmm0TifcK7oLXdS5Sm2xp93tyISFBcuphDvU,9394
|
|
170
|
+
pyedb/grpc/database/layout/voltage_regulator.py,sha256=RIqcZlxYTRDdq9CFe3BFiIqKWLnVcyF-kUraTAJ76MA,5183
|
|
167
171
|
pyedb/grpc/database/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
168
172
|
pyedb/grpc/database/net/differential_pair.py,sha256=68rP66PlS02e3vHs8t6vdk4Qq5TxjoVJXW_KIM3v7Xg,4716
|
|
169
173
|
pyedb/grpc/database/net/extended_net.py,sha256=uoilyrLSOBq7mU4CjI4l7odlF0K7B8gb-AtrQGplSjo,12936
|
|
170
174
|
pyedb/grpc/database/net/net.py,sha256=HBEt4tQ3ys9bLMFmgBxnFQmvU-F692usrisfwdxdmR8,7769
|
|
171
175
|
pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjrrBJux3c,2961
|
|
172
176
|
pyedb/grpc/database/ports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
pyedb/grpc/database/ports/ports.py,sha256=
|
|
177
|
+
pyedb/grpc/database/ports/ports.py,sha256=Lb0iBOluDy5pMlCBvnM4KNeMsYspl2_BnwB5-463ziM,10638
|
|
174
178
|
pyedb/grpc/database/primitive/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
175
|
-
pyedb/grpc/database/primitive/bondwire.py,sha256=
|
|
176
|
-
pyedb/grpc/database/primitive/circle.py,sha256=
|
|
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=
|
|
179
|
+
pyedb/grpc/database/primitive/bondwire.py,sha256=NqST7jhIfooRFV8AubY_meh4ZCrO1lrN8tGKcIKKMVE,6222
|
|
180
|
+
pyedb/grpc/database/primitive/circle.py,sha256=u8AIRUkAb4GXyyBALL80lzgdQPHBrwH8dkmVKQ-ypWc,2527
|
|
181
|
+
pyedb/grpc/database/primitive/padstack_instance.py,sha256=4YHnw5TBRpM6BZPVc7zjuWXrN--h1n6ZRaBou5KNrzw,38332
|
|
182
|
+
pyedb/grpc/database/primitive/path.py,sha256=VoDcV2Vn58QvnAJ-YXDPkNau7vFNc8BbDeX8LvMtXvY,12077
|
|
183
|
+
pyedb/grpc/database/primitive/polygon.py,sha256=TOOFzswCrL6z1LYTfaijWvdBM2lV9fYbhovuUpI92_c,9532
|
|
184
|
+
pyedb/grpc/database/primitive/primitive.py,sha256=W-4CcO9EjdQCRxfou2cqEsBWeVGhn5kvOvGmD6MAeLw,25096
|
|
185
|
+
pyedb/grpc/database/primitive/rectangle.py,sha256=JW4N_31TNRDTaQphXd4CWYVnSV4l3wHwSkdJrO-uVI8,5340
|
|
182
186
|
pyedb/grpc/database/simulation_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
187
|
pyedb/grpc/database/simulation_setup/adaptive_frequency.py,sha256=uEuYtf0RcRH5XlcBiTEN8sgdZZBrob9k7h5KW-I4QYs,1455
|
|
184
188
|
pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py,sha256=ujG1mD8h0SXLOVXbYBrvKVrCRFHRQGKuPebzekcaE0M,1531
|
|
185
189
|
pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py,sha256=pmMbtPbxHs9toxGHUFsdijfFD54794v9NB-T6e8mtOw,2353
|
|
186
190
|
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=
|
|
191
|
+
pyedb/grpc/database/simulation_setup/hfss_general_settings.py,sha256=B2C6mInPYKIhMCGGMrmUiczncvsKLQGphADvvJhYdp8,2440
|
|
188
192
|
pyedb/grpc/database/simulation_setup/hfss_settings_options.py,sha256=NJxdxFWHiOBXiTznv3PLhNdctlvFRqPUqU-pWURgJiE,2936
|
|
189
193
|
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=
|
|
194
|
+
pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py,sha256=JlYvtZAJmxyRdsYh8neFD2WiVI812qdFBJAJcgpU2ZU,15610
|
|
191
195
|
pyedb/grpc/database/simulation_setup/hfss_solver_settings.py,sha256=Xi4N-cCO_8-JxMkI_tGyJ3SGcJrP5_rLvdbXx7P-uJI,1474
|
|
192
196
|
pyedb/grpc/database/simulation_setup/mesh_operation.py,sha256=Ejf9v9njc-Ll3jw_DdA26CAT1WreludC6CwBrpoS16A,1439
|
|
193
197
|
pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py,sha256=mo2zHBsdxHG9N81FNefulKjUv-Oi_VkV49kvKKXrhrs,1505
|
|
194
198
|
pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py,sha256=Sp-r6W87FjsWZYY1ugqTCGZ-KMXzCZ96FMl1fj3mdrU,1499
|
|
195
199
|
pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=sgyYyVCm6kzURojfGvr8n7bBSsvKeljrD8mQKSGL_wo,2412
|
|
196
200
|
pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=31ELFhO6TFB4-tg3rqTsfGkTsozEPq-4gCZucIO061c,4791
|
|
201
|
+
pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py,sha256=DdcAG0F60WxTAEMUnInvB8nwIuaYF0M-55aW4IrCUyQ,36006
|
|
197
202
|
pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py,sha256=--LrmRx54PkvgzKEc7HbmVtttir3uOAjJaehilasMaA,1524
|
|
198
|
-
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=
|
|
203
|
+
pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=8VLOKyM5h-PfzsbSMi6PFGDxlw-ikgJ4UYJ1IEYN99I,6902
|
|
199
204
|
pyedb/grpc/database/simulation_setup/sweep_data.py,sha256=NfoUdUdgRFTw9SqR0UZhxaFA13MLpicDa7JXhgkBsug,1897
|
|
200
205
|
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=
|
|
206
|
+
pyedb/grpc/database/terminal/bundle_terminal.py,sha256=jTVlz4QuDYksJB2dc25JKCHlv39ws20x59L7R7jEzm8,6808
|
|
207
|
+
pyedb/grpc/database/terminal/edge_terminal.py,sha256=pp67OJLlAmR7YMASe_oGhS72rlb3inFdZx04DXFND6Y,5712
|
|
208
|
+
pyedb/grpc/database/terminal/padstack_instance_terminal.py,sha256=9bLYfiZ66MwUl3sOuCEMT7TbL9PVzYpDtGzPHY6yk8c,6444
|
|
209
|
+
pyedb/grpc/database/terminal/pingroup_terminal.py,sha256=68vZoaLPAla6XJRp0531Xx5ckq9FlP78kq7i87a9QEI,5945
|
|
210
|
+
pyedb/grpc/database/terminal/point_terminal.py,sha256=aUkNIx9KVBBZ7zVDY5-kRGw29UIBjeTYyWYgI_a9j-U,3511
|
|
211
|
+
pyedb/grpc/database/terminal/terminal.py,sha256=NPhUOuOXlIge2xhQqfllV3SZlxr-bEvL0arWhYYXWEE,17087
|
|
207
212
|
pyedb/grpc/database/utility/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061fLz_OHjTLSrzQQY,58
|
|
208
213
|
pyedb/grpc/database/utility/constants.py,sha256=XF66Hj7aQWJfqn8rDhyovyIbYBt4h_ab7lgpUqzgcPc,1288
|
|
209
214
|
pyedb/grpc/database/utility/heat_sink.py,sha256=hLj93zVDAUdcmcjqWV3ucp3BuAKJVqJ5cu3xIfcuVYM,3581
|
|
@@ -212,6 +217,7 @@ pyedb/grpc/database/utility/layout_statistics.py,sha256=NFoHEWzGbrkThosROCeZCjBS
|
|
|
212
217
|
pyedb/grpc/database/utility/rlc.py,sha256=H0vzzxYPzr-6CTEDjlAs9fEY5emu4ugseKklfnHWO54,2185
|
|
213
218
|
pyedb/grpc/database/utility/sources.py,sha256=sSU14NaMA9mDBUvwXIx7hNpwmGz4mmwtq92w1urusuk,10448
|
|
214
219
|
pyedb/grpc/database/utility/sweep_data_distribution.py,sha256=ClGfo8MNH2LPWWZ-swsSpvc_yLxI-GVxLBkjn5-WS0U,3760
|
|
220
|
+
pyedb/grpc/database/utility/value.py,sha256=puNoMiwTofZfxraibmRJoqbvu1RJpbnlMFfYi16yygE,4815
|
|
215
221
|
pyedb/grpc/database/utility/xml_control_file.py,sha256=rEsdYykh5-GcYTrZW32nk3IPpdNjlhlQ2PYgbkBgQ_8,48217
|
|
216
222
|
pyedb/ipc2581/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
223
|
pyedb/ipc2581/history_record.py,sha256=s1GjcIgnZHlNCBOeEERBDX7xDuqhXmh2Ctt3ccFDWso,2739
|
|
@@ -282,7 +288,9 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
|
|
|
282
288
|
pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
|
|
283
289
|
pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
|
|
284
290
|
pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
|
|
285
|
-
pyedb
|
|
286
|
-
pyedb
|
|
287
|
-
pyedb-0.
|
|
288
|
-
pyedb-0.
|
|
291
|
+
pyedb/siwave_core/product_properties.py,sha256=m7HIMeYKJZqfzWbJklEOKqi3KJHwhj7W0SRbkRCng_c,5660
|
|
292
|
+
pyedb/siwave_core/cpa/simulation_setup_data_model.py,sha256=hQsDCvfSDGv3kdDdkTjJYlQqrP1mT4_-_sR0_iQFxi8,5577
|
|
293
|
+
pyedb-0.54.0.dist-info/licenses/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
|
|
294
|
+
pyedb-0.54.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
295
|
+
pyedb-0.54.0.dist-info/METADATA,sha256=8zxnPsFo8H3LedkEMRTCYEOS6oNKaIs8M67dEQZIOpw,8734
|
|
296
|
+
pyedb-0.54.0.dist-info/RECORD,,
|
|
File without changes
|