pyedb 0.51.2__py3-none-any.whl → 0.53.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.

Files changed (38) hide show
  1. pyedb/__init__.py +1 -1
  2. pyedb/configuration/cfg_common.py +12 -15
  3. pyedb/configuration/cfg_data.py +2 -2
  4. pyedb/configuration/cfg_modeler.py +163 -234
  5. pyedb/configuration/cfg_stackup.py +62 -249
  6. pyedb/configuration/configuration.py +356 -409
  7. pyedb/dotnet/database/components.py +9 -3
  8. pyedb/dotnet/database/dotnet/database.py +4 -0
  9. pyedb/dotnet/database/edb_data/layer_data.py +3 -1
  10. pyedb/dotnet/database/edb_data/padstacks_data.py +8 -2
  11. pyedb/dotnet/database/layout_validation.py +3 -13
  12. pyedb/dotnet/database/siwave.py +14 -0
  13. pyedb/dotnet/database/stackup.py +8 -61
  14. pyedb/dotnet/database/utilities/simulation_setup.py +1 -1
  15. pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py +894 -0
  16. pyedb/dotnet/database/utilities/siwave_simulation_setup.py +15 -0
  17. pyedb/dotnet/edb.py +50 -3
  18. pyedb/generic/design_types.py +29 -0
  19. pyedb/generic/grpc_warnings.py +5 -0
  20. pyedb/grpc/database/__init__.py +0 -1
  21. pyedb/grpc/database/components.py +102 -81
  22. pyedb/grpc/database/control_file.py +240 -193
  23. pyedb/grpc/database/definition/materials.py +7 -7
  24. pyedb/grpc/database/definitions.py +7 -5
  25. pyedb/grpc/database/hierarchy/pin_pair_model.py +1 -1
  26. pyedb/grpc/database/modeler.py +105 -77
  27. pyedb/grpc/database/net/differential_pair.py +2 -1
  28. pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py +961 -0
  29. pyedb/grpc/database/siwave.py +14 -0
  30. pyedb/grpc/database/source_excitations.py +10 -10
  31. pyedb/grpc/edb.py +156 -180
  32. pyedb/grpc/edb_init.py +4 -2
  33. pyedb/siwave_core/cpa/simulation_setup_data_model.py +132 -0
  34. pyedb/siwave_core/product_properties.py +198 -0
  35. {pyedb-0.51.2.dist-info → pyedb-0.53.0.dist-info}/METADATA +16 -14
  36. {pyedb-0.51.2.dist-info → pyedb-0.53.0.dist-info}/RECORD +38 -33
  37. {pyedb-0.51.2.dist-info → pyedb-0.53.0.dist-info}/WHEEL +1 -1
  38. {pyedb-0.51.2.dist-info → pyedb-0.53.0.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,132 @@
1
+ from typing import Dict, List
2
+
3
+ from pydantic import BaseModel, Field
4
+
5
+
6
+ class SolverOptions(BaseModel):
7
+ """Configuration options for the SI-Wave solver.
8
+
9
+ Attributes:
10
+ extraction_mode (str): Mode of extraction, defaults to "si"
11
+ custom_refinement (bool): Enable custom refinement settings, defaults to False
12
+ extraction_frequency (str): Frequency for extraction, defaults to "10Ghz"
13
+ compute_capacitance (bool): Enable capacitance computation, defaults to True
14
+ compute_dc_parameters (bool): Enable DC parameters computation, defaults to True
15
+ compute_ac_rl (bool): Enable AC RL computation, defaults to True
16
+ ground_power_ground_nets_for_si (bool): Ground power/ground nets for SI analysis, defaults to False
17
+ small_hole_diameter (str): Small hole diameter setting, defaults to "auto"
18
+ cg_max_passes (int): Maximum passes for CG computation, defaults to 10
19
+ cg_percent_error (float): Percentage error threshold for CG computation, defaults to 0.02
20
+ cg_percent_refinement_per_pass (float): Refinement percentage per pass for CG, defaults to 0.33
21
+ rl_max_passes (int): Maximum passes for RL computation, defaults to 10
22
+ rl_percent_error (float): Percentage error threshold for RL computation, defaults to 0.02
23
+ rl_percent_refinement_per_pass (float): Refinement percentage per pass for RL, defaults to 0.33
24
+ compute_dc_rl (bool): Enable DC RL computation, defaults to True
25
+ compute_dc_cg (bool): Enable DC CG computation, defaults to True
26
+ return_path_net_for_loop_parameters (bool): Include return path net for loop parameters, defaults to True
27
+ """
28
+
29
+ extraction_mode: str = "si"
30
+ custom_refinement: bool = False
31
+ extraction_frequency: str = "10Ghz"
32
+ compute_capacitance: bool = True
33
+ compute_dc_parameters: bool = True
34
+ compute_ac_rl: bool = True
35
+ ground_power_ground_nets_for_si: bool = False
36
+ small_hole_diameter: str = "auto"
37
+ cg_max_passes: int = 10
38
+ cg_percent_error: float = 0.02
39
+ cg_percent_refinement_per_pass: float = 0.33
40
+ rl_max_passes: int = 10
41
+ rl_percent_error: float = 0.02
42
+ rl_percent_refinement_per_pass: float = 0.33
43
+ compute_dc_rl: bool = True
44
+ compute_dc_cg: bool = True
45
+ return_path_net_for_loop_parameters: bool = True
46
+
47
+
48
+ class Vrm(BaseModel):
49
+ """Voltage Regulator Module configuration.
50
+
51
+ Attributes:
52
+ name (str): Name of the VRM, defaults to empty string
53
+ voltage (float): Voltage value, defaults to 0.0
54
+ power_net (str): Power net identifier, defaults to empty string
55
+ reference_net (str): Reference net identifier, defaults to empty string
56
+ """
57
+
58
+ name: str = ""
59
+ voltage: float = 0.0
60
+ power_net: str = ""
61
+ reference_net: str = ""
62
+
63
+
64
+ class ChannelSetup(BaseModel):
65
+ """Channel configuration setup.
66
+
67
+ Attributes:
68
+ die_name (str): Name of the die, defaults to empty string
69
+ pin_grouping_mode (str): Mode for pin grouping, defaults to "perpin"
70
+ channel_component_exposure (Dict[str, bool]): Component exposure settings
71
+ vrm_setup (List[Vrm]): List of VRM configurations
72
+ """
73
+
74
+ die_name: str = ""
75
+ pin_grouping_mode: str = "perpin"
76
+ channel_component_exposure: Dict[str, bool] = Field(default_factory=dict)
77
+ vrm_setup: List[Vrm] = Field(default_factory=list)
78
+
79
+
80
+ class SIwaveCpaSetup(BaseModel):
81
+ """Main configuration class for SI-Wave CPA (Channel Parameter Analyzer) setup.
82
+
83
+ Attributes:
84
+ name (str): Name of the setup, defaults to empty string
85
+ mode (str): Operation mode, defaults to "channel"
86
+ model_type (str): Type of model, defaults to "rlcg"
87
+ use_q3d_solver (bool): Use Q3D solver flag, defaults to True
88
+ net_processing_mode (str): Net processing mode, defaults to "userspecified"
89
+ return_path_net_for_loop_parameters (bool): Include return path net for loop parameters, defaults to True
90
+ channel_setup (ChannelSetup): Channel configuration settings
91
+ solver_options (SolverOptions): Solver configuration options
92
+ nets_to_process (List[str]): List of nets to process
93
+ """
94
+
95
+ name: str = ""
96
+ mode: str = "channel"
97
+ model_type: str = "rlcg"
98
+ use_q3d_solver: bool = True
99
+ net_processing_mode: str = "userspecified"
100
+ return_path_net_for_loop_parameters: bool = True
101
+ channel_setup: ChannelSetup = Field(default_factory=ChannelSetup)
102
+ solver_options: SolverOptions = Field(default_factory=SolverOptions)
103
+ nets_to_process: List[str] = Field(default_factory=list)
104
+
105
+ @classmethod
106
+ def from_dict(cls, data: Dict) -> "SIwaveCpaSetup":
107
+ """Convert dictionary to SIwaveCpaSetup object.
108
+
109
+ Args:
110
+ data (Dict): Dictionary containing SIwaveCpaSetup configuration
111
+
112
+ Returns:
113
+ SIwaveCpaSetup: New instance created from the dictionary
114
+ """
115
+ if "channel_setup" in data:
116
+ data["channel_setup"] = ChannelSetup(**data["channel_setup"])
117
+ if "solver_options" in data:
118
+ data["solver_options"] = SolverOptions(**data["solver_options"])
119
+ return cls(**data)
120
+
121
+ def to_dict(self) -> Dict:
122
+ """Convert SIwaveCpaSetup object to dictionary.
123
+
124
+ Returns:
125
+ Dict: Dictionary representation of the SIwaveCpaSetup instance
126
+ """
127
+ data = self.model_dump()
128
+ if self.channel_setup:
129
+ data["channel_setup"] = self.channel_setup.model_dump()
130
+ if self.solver_options:
131
+ data["solver_options"] = self.solver_options.model_dump()
132
+ return data
@@ -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.3
1
+ Metadata-Version: 2.4
2
2
  Name: pyedb
3
- Version: 0.51.2
3
+ Version: 0.53.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.3
24
- Requires-Dist: pydantic>=2.6.4,<2.11
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
30
- Requires-Dist: ansys-api-edb
30
+ Requires-Dist: ansys-edb-core>=0.2.0.dev0
31
+ Requires-Dist: ansys-api-edb>=0.2.0.dev0
31
32
  Requires-Dist: psutil
32
- Requires-Dist: ansys-sphinx-theme>=0.10.0,<1.4 ; extra == "doc"
33
- Requires-Dist: imageio>=2.30.0,<2.37 ; extra == "doc"
33
+ Requires-Dist: ansys-sphinx-theme>=1.0.0,<1.5 ; extra == "doc"
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.4 ; extra == "doc"
36
- Requires-Dist: jupytext>=1.16.0,<1.17 ; extra == "doc"
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.19 ; extra == "doc"
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.2 ; extra == "tests"
54
- Requires-Dist: pytest>=7.4.0,<8.4 ; extra == "tests"
55
- Requires-Dist: pytest-cov>=4.0.0,<6.1 ; extra == "tests"
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
  [![PyAnsys](https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC)](https://docs.pyansys.com/)
78
79
  [![PythonVersion](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
79
80
  [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
81
+ [![DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/ansys/pyedb)
80
82
 
81
83
  ## What is PyEDB?
82
84
 
@@ -1,4 +1,4 @@
1
- pyedb/__init__.py,sha256=MQ12dhp1FffyKI3ALAQxyCCZ8ETTIua-4NnHLBuSB1E,1525
1
+ pyedb/__init__.py,sha256=gcTioHkulR-j9lE4BRPdm2LpZDujqzdzrwtW0CD-Dxc,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,11 +8,11 @@ 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=U45p2qksEwMY_woVFaSwn5qjib9QQJDShajZZ-IZV0Y,2575
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=bZOZDuzgw33Vff0cGXEmh5issNHg_Gcvr-yXCYNiQG4,3860
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=BzoYWujOG-DO-BFLHywQXPvc68jZ0Hw8qMRWrA5ci28,11953
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
@@ -22,25 +22,25 @@ pyedb/configuration/cfg_ports_sources.py,sha256=GTIEVuifhw1jI1GOd3_YE5oTi9rJ8a9H
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=T28HTuR-EUIEGh41oIVD_BDambEds6CmJXmSggYKY70,12597
26
- pyedb/configuration/configuration.py,sha256=lMpfGlkeIwM_8Ww4Qn8KAhTbFvfaVJrC490euK4lUB4,24702
25
+ pyedb/configuration/cfg_stackup.py,sha256=EF7Ni_ejxaI-zru1j9mf80AWC_Q2MklxPYmIlfYejPc,4120
26
+ pyedb/configuration/configuration.py,sha256=8xh7WWSwnV6UoDcWSHRrJOqT2Da4yFPPlBWKkiPXrh4,23218
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=jYgg48VEnjcW_W6BEBBd0Bt5eKsV4WRmf7DaGsUI7_A,188294
29
+ pyedb/dotnet/edb.py,sha256=zbUdJXpJjXbNXKTUcbT4It8Y83kmbhi5_gaFAovzq4Y,190123
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=7Lpe_ivKhfhOg634LPpBct3Ei6-KGvk9FHyb7cKumyE,111400
32
+ pyedb/dotnet/database/components.py,sha256=uZ_sxxjmSIkoKMM1Gy3EAee62QU9khmOho_Er7JovAU,111602
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=zJPuHooR7ANc0v0OwGWjRlc_TjZt8bDm9zA5FmXpGRo,13792
36
+ pyedb/dotnet/database/layout_validation.py,sha256=4hBdkD71ZqqTIqQNxT42_fh7sMl9cdHn14fGjORDDFM,13230
37
37
  pyedb/dotnet/database/materials.py,sha256=Y0E1haDbazf6lEUPQA19gEiDX9I3tPWgo0rf5Gg9_po,48072
38
38
  pyedb/dotnet/database/modeler.py,sha256=9FvMO5L3rNmDEipsibvA92ROQKc-wB5zGHLHwc_gJMw,57703
39
39
  pyedb/dotnet/database/net_class.py,sha256=NxRX8feIaJyf3NmRfSzZ08ItDbZOucOyAnTHZh-LkUI,11354
40
40
  pyedb/dotnet/database/nets.py,sha256=bs7aX6a3xWWNzxsX471omu17_4jmC1HmNH9q8fefBJc,25614
41
41
  pyedb/dotnet/database/padstack.py,sha256=A85zw3BgqRUQm-UzbLMzeY1KrhIhju3lcLe7AqsVGqU,73492
42
- pyedb/dotnet/database/siwave.py,sha256=08Dx280x9TQ7Kl4lgEmFcnOp59Vnf2nRbdtAcJQ2atw,64326
43
- pyedb/dotnet/database/stackup.py,sha256=FfKqEa4iUlP5qeOzuQapEnXGS__IrksIWlfmiCd0szg,120090
42
+ pyedb/dotnet/database/siwave.py,sha256=YewtKe3Fpj6hr4nGAuqCfYLmUyi1qFtn1-3EnAHSWF8,64911
43
+ pyedb/dotnet/database/stackup.py,sha256=JRGsTbAvV6OcUziDtNVjxtIhERtn7sbanItyj7kSVEQ,117678
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
46
  pyedb/dotnet/database/cell/layout.py,sha256=UB6Cx7FNupRS0fQ2vWtrXN3UwbMhM1haSHMGfV4JEv8,13481
@@ -72,16 +72,16 @@ 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=tct-mwf-2OBQ5WMSkXw361d1YPKKPOlgCqVeTYWaITs,37162
75
+ pyedb/dotnet/database/dotnet/database.py,sha256=6MyNm_8OjDv88dyyPs16FYHcCj-KuW9NTLsKc5E6Bwg,37345
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
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
81
  pyedb/dotnet/database/edb_data/hfss_extent_info.py,sha256=Ydzle6moatP89kQdjnzyNabsCW0KXE4WYqDv7sFyLb8,13040
82
- pyedb/dotnet/database/edb_data/layer_data.py,sha256=4Z_eaHSfGfwQBKETEmGSwMvwGzvirtwYw4G4TwonNiA,34314
82
+ pyedb/dotnet/database/edb_data/layer_data.py,sha256=r1_DTwCHET45hFFPGKb6p2YjY1L09-vossQsfda5Hw8,34427
83
83
  pyedb/dotnet/database/edb_data/nets_data.py,sha256=siq2w5CT5D5PeK9tC_vaGM54UOyqnYkcP4kUts459es,10009
84
- pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=oMkjUoLLjZI7DclPd-0Qd4KcfVARCuBHsGEKXbyBb_Y,83624
84
+ pyedb/dotnet/database/edb_data/padstacks_data.py,sha256=--wZCu2RwLkEnBHA5WhVVIpGjdMD2HRCjk6te5-ZTRQ,83906
85
85
  pyedb/dotnet/database/edb_data/ports.py,sha256=qoqTqk47E4xtg43uvQ_SWCEUQscFBjt2bfcj9vsQsLI,7405
86
86
  pyedb/dotnet/database/edb_data/primitives_data.py,sha256=fN9YvtVgBJ-WCHxoIPgDxhhhs5-oQPK9JmqMbJBlSiI,16836
87
87
  pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py,sha256=f_09VvuDHeaIuTivSi2OiAEv8aJ52vBasuBoSS9sCQE,20953
@@ -107,40 +107,42 @@ pyedb/dotnet/database/utilities/__init__.py,sha256=8jByHkoaowAYQTCww-zRrTQmN061f
107
107
  pyedb/dotnet/database/utilities/heatsink.py,sha256=7G7Yx9TxbL5EAiR51MnhdRiAQBVf-d0hKsXDw5OYX2Q,2220
108
108
  pyedb/dotnet/database/utilities/hfss_simulation_setup.py,sha256=EbaARi2L_Q00N2uaoV0idMzz-XG1DQ2-Rf7XVNAYinc,14053
109
109
  pyedb/dotnet/database/utilities/obj_base.py,sha256=xSGTbfh4pbNIw3EjqtjFMiN8rWM2JhYZ2eU73qHAGlI,2883
110
- pyedb/dotnet/database/utilities/simulation_setup.py,sha256=YDOBKSU5cJ1crSrAccKVh8FGf0p84dghkEn8bTVG4hU,13320
111
- pyedb/dotnet/database/utilities/siwave_simulation_setup.py,sha256=UhBBHd-Nmj5SKR4wtVprOULAnVegKCSQv840yvJNlyo,13924
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
112
113
  pyedb/extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
114
  pyedb/extensions/via_design_backend.py,sha256=J_9XYbAASPW9e4suyLDal5TcnVmqw-HI0zzu766_HQo,24247
114
115
  pyedb/generic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
116
  pyedb/generic/constants.py,sha256=prWLZH0-SeBIVK6LHZ4SGZFQCofuym2TuQYfdqwhuSQ,28956
116
117
  pyedb/generic/data_handlers.py,sha256=rfqNe2tPCJRqhXZBCyWxRFu5SjQ92Cdzq4l0TDC4Pvw,6905
117
- pyedb/generic/design_types.py,sha256=FHblK4vkZeHYWqfK20ZIDPSpcb1IWFK4JSO4YxPg1ng,8350
118
+ pyedb/generic/design_types.py,sha256=xukEIVaJnzXkorU4Cr8gvxoceNwZXHRkMHpCeKRfIjQ,9115
118
119
  pyedb/generic/filesystem.py,sha256=EqsLGwdhCgY3asomjoWZBBYWQiGhVOBlSzQlM6FCZhw,3674
119
120
  pyedb/generic/general_methods.py,sha256=Lg4k53Ny9LraiU6AQX5WwBiPFqtvGaZ3Ik7LcWil6Rg,42798
121
+ pyedb/generic/grpc_warnings.py,sha256=YYW5NhypV8AeeRmV7NZ7ej7Z1n-44z2FPGfQQue3D_Q,277
120
122
  pyedb/generic/plot.py,sha256=4zCA5lpk-FhPmWR7xi6yecc5lZtRpxJdd3B8FLGXmxE,4705
121
123
  pyedb/generic/process.py,sha256=i0poMbEnFFAsnNOPWN-myMnUaG7hMClKi9kGPMFyvCM,11148
122
124
  pyedb/generic/settings.py,sha256=QTX5OVZ8sVPIy_QaSxRODUWvoXkYkVpzh3l6pQPseKQ,9220
123
- pyedb/grpc/edb.py,sha256=vi2IKLPVUyKJXSXpJgsRQyR4HomGodf61_xAWmE8ic0,150971
124
- pyedb/grpc/edb_init.py,sha256=HCdPrdnbgcL3JhwaKzCJLFS9nEdGE-IUP3ZAnwj-nP8,15808
125
+ pyedb/grpc/edb.py,sha256=Aw3yYNUa1zkyPSKydauUAGRQERCyttqfdFtLy561jEo,148886
126
+ pyedb/grpc/edb_init.py,sha256=PuyRid3IeqjD1jmeoIs_mFOto4CsP7NK6-wuJ4VEueM,16109
125
127
  pyedb/grpc/rpc_session.py,sha256=HEGyWpmF8bvRcS_33C7-cOGPUdtiu3PMDTFOgP1LSSQ,7065
126
- pyedb/grpc/database/__init__.py,sha256=nIRLJ8VZLcMAp12zmGsnZ5x2BEEl7q_Kj_KAOXxVjpQ,52
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
128
+ pyedb/grpc/database/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
+ pyedb/grpc/database/components.py,sha256=_w8lVla3X9eBr6MD-AslFeiFHj36lCMOUeGs6Xs22tQ,80797
130
+ pyedb/grpc/database/control_file.py,sha256=L_UsWR4P_HFt4Em0cGxKwx7CjMrhwjYTx4MY5oQnFXw,63744
131
+ pyedb/grpc/database/definitions.py,sha256=W8-pHfEyNfhpoaA0KeXN_HuJ2Pk2KvybTFvITq6l6ag,4412
130
132
  pyedb/grpc/database/general.py,sha256=QBZlMO4Tzec00HcaLVQ8fDTLox-pHjOcH2wpWge2sZw,1633
131
133
  pyedb/grpc/database/hfss.py,sha256=GuYxGJjeAdcnQBf7CvRgQNbEbdnNGzwlRpOus9X7Jw0,42799
132
134
  pyedb/grpc/database/layout_validation.py,sha256=nxXEPIBLuVJZoGoZe5np18YQaaSh7iAggXnpVTUtbhM,15447
133
- pyedb/grpc/database/modeler.py,sha256=YsNbWQhGskVgu898To03VwfjU8HMkSLW5toVdzt2NiM,52740
135
+ pyedb/grpc/database/modeler.py,sha256=raq1_isuMW6UmNpJKhtJEwCMbKHyxYaSed9ylBtvDko,54618
134
136
  pyedb/grpc/database/nets.py,sha256=Tv-KOPfSH8sp1KTjR1rtZq2YFhy63uJJKkeSgizSv34,28131
135
137
  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/siwave.py,sha256=SSnQCtQ4eoiGtGJjx-zwKV29p0eK3nDCpcQiZWrMBeA,36461
139
+ pyedb/grpc/database/source_excitations.py,sha256=nIno6-MtBZUQ7XIK1qybxgTXAwcdB5WcHPEz-No5VG0,123603
138
140
  pyedb/grpc/database/stackup.py,sha256=vDF-zRDnIgkfocWq_JkcRISQQUoX2Rq_by61gH4VOs0,113039
139
141
  pyedb/grpc/database/definition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
142
  pyedb/grpc/database/definition/component_def.py,sha256=2c5Xz98bdOAdOAX5kat2PY5N9-BiA1T6yw6TsWYRUmg,7579
141
143
  pyedb/grpc/database/definition/component_model.py,sha256=9TRfILC3FfmgSrnYRwEdF2kbY4jFcC5rSeR9xeeb3wg,1689
142
144
  pyedb/grpc/database/definition/component_pin.py,sha256=PfwTv6ILn6irJ4P5nB0PNtz2U5dR4NPevsw6P33pAfQ,1493
143
- pyedb/grpc/database/definition/materials.py,sha256=moEMnjCwKDUtjZtT9chfgSmNwwiGfm8oYEkel5FUOhs,45552
145
+ pyedb/grpc/database/definition/materials.py,sha256=EFG7teGiVXWST8uLTKZkK0AbCpkEHHUdvVzqeLbG1j4,45559
144
146
  pyedb/grpc/database/definition/n_port_component_model.py,sha256=8dC636At0iyfAWShugHGDOerytpoV6cvShPEGkXH89I,1543
145
147
  pyedb/grpc/database/definition/package_def.py,sha256=4fcngmcnyXSwO-0qMlzcCLZT-H_NnPcf83YhIozUNmM,8134
146
148
  pyedb/grpc/database/definition/padstack_def.py,sha256=8eFJOVlwX4GQIaoeOOwfv9mVFLfclFUlRdzXpfdX8CY,29903
@@ -153,7 +155,7 @@ pyedb/grpc/database/hierarchy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
153
155
  pyedb/grpc/database/hierarchy/component.py,sha256=UOQU_ElULVTH-4NDeXAjbiGZT3V5VIIZ9XoQs1oKKI8,41984
154
156
  pyedb/grpc/database/hierarchy/model.py,sha256=H3I2S6BxWorFBaRlvIPBTQUqpXXAdch4KZqpRXjNtI4,1413
155
157
  pyedb/grpc/database/hierarchy/netlist_model.py,sha256=VtXxTTTArojCOOLShHVlGOS1OTx30YZ8_UdSZWaKaEA,1432
156
- pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=C76iVvPgXQAxMvOZvbqgaKslCuWDE4XC9qvgCekoOLU,3555
158
+ pyedb/grpc/database/hierarchy/pin_pair_model.py,sha256=amxnbR5dZ3a7rORzZSS_gE1p4yjLjhzCZvE9gLYuc9o,3555
157
159
  pyedb/grpc/database/hierarchy/pingroup.py,sha256=Dp0-layi8EqZXRDNnAwPfZbEIbyR7ju-DrDCnQQy0VQ,8046
158
160
  pyedb/grpc/database/hierarchy/s_parameter_model.py,sha256=gMCPTznjpT_6WVJaIMOItdpo5zhV-QPC3CUHEtMqVm4,1535
159
161
  pyedb/grpc/database/hierarchy/spice_model.py,sha256=pyKr5mQrezhUzJtaArvWa8fODNiTPza5gFSSEiSmLAI,2022
@@ -165,7 +167,7 @@ pyedb/grpc/database/layout/cell.py,sha256=5qMqEBvIruIE3Ru1JBYMkGlS31uOJShWm3J3OM
165
167
  pyedb/grpc/database/layout/layout.py,sha256=Zb-UrNeWUqL958io8EbKaijJ79nqRf_eNQS1or1r6-0,9267
166
168
  pyedb/grpc/database/layout/voltage_regulator.py,sha256=OiZ6M6bFBUPX9XGFzAU3s_OYAlwSQ4TcoH7k3e6M58o,5200
167
169
  pyedb/grpc/database/net/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
168
- pyedb/grpc/database/net/differential_pair.py,sha256=wVKMsLqtZCPwq_TE_F33hnNPnudNBOmu3gWKgO5i0Sk,4715
170
+ pyedb/grpc/database/net/differential_pair.py,sha256=68rP66PlS02e3vHs8t6vdk4Qq5TxjoVJXW_KIM3v7Xg,4716
169
171
  pyedb/grpc/database/net/extended_net.py,sha256=uoilyrLSOBq7mU4CjI4l7odlF0K7B8gb-AtrQGplSjo,12936
170
172
  pyedb/grpc/database/net/net.py,sha256=HBEt4tQ3ys9bLMFmgBxnFQmvU-F692usrisfwdxdmR8,7769
171
173
  pyedb/grpc/database/net/net_class.py,sha256=ojoEZ_7YJW0cEhRWIc9hLBHILBhrVPuRpRjrrBJux3c,2961
@@ -194,6 +196,7 @@ pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py,sha256=mo2zHB
194
196
  pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py,sha256=Sp-r6W87FjsWZYY1ugqTCGZ-KMXzCZ96FMl1fj3mdrU,1499
195
197
  pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py,sha256=sgyYyVCm6kzURojfGvr8n7bBSsvKeljrD8mQKSGL_wo,2412
196
198
  pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py,sha256=31ELFhO6TFB4-tg3rqTsfGkTsozEPq-4gCZucIO061c,4791
199
+ pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py,sha256=DdcAG0F60WxTAEMUnInvB8nwIuaYF0M-55aW4IrCUyQ,36006
197
200
  pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py,sha256=--LrmRx54PkvgzKEc7HbmVtttir3uOAjJaehilasMaA,1524
198
201
  pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py,sha256=dAT5T2YY0FTvLw-bLmNsbSeVya5q8QhQNKDapboDQCM,6499
199
202
  pyedb/grpc/database/simulation_setup/sweep_data.py,sha256=NfoUdUdgRFTw9SqR0UZhxaFA13MLpicDa7JXhgkBsug,1897
@@ -282,7 +285,9 @@ pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py,sha256=YmYI6WTQulL5Uf8Wx
282
285
  pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py,sha256=KHa-UqcXuabiVfT2CV-UvWl5Q2qGYHF2Ye9azcAlnXc,3966
283
286
  pyedb/modeler/geometry_operators.py,sha256=YhR-QE0dvIkbp4SsjWp309KDE1OZa6wUzr8a634MuJ4,74195
284
287
  pyedb/siwave_core/icepak.py,sha256=WnZ-t8mik7LDY06V8hZFV-TxRZJQWK7bu_8Ichx-oBs,5206
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,,
288
+ pyedb/siwave_core/product_properties.py,sha256=m7HIMeYKJZqfzWbJklEOKqi3KJHwhj7W0SRbkRCng_c,5660
289
+ pyedb/siwave_core/cpa/simulation_setup_data_model.py,sha256=hQsDCvfSDGv3kdDdkTjJYlQqrP1mT4_-_sR0_iQFxi8,5577
290
+ pyedb-0.53.0.dist-info/licenses/LICENSE,sha256=qQWivZ12ETN5l3QxvTARY-QI5eoRRlyHdwLlAj0Bg5I,1089
291
+ pyedb-0.53.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
292
+ pyedb-0.53.0.dist-info/METADATA,sha256=IvhWQhlV9Mk4WmMwqLj4MkFR8rND1JAJCqCN3py3WUI,8744
293
+ pyedb-0.53.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: flit 3.10.1
2
+ Generator: flit 3.12.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any