pyedb 0.38.0__py3-none-any.whl → 0.39.1__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/common/nets.py +53 -139
- pyedb/configuration/cfg_components.py +1 -1
- pyedb/configuration/cfg_general.py +4 -2
- pyedb/configuration/cfg_modeler.py +1 -1
- pyedb/configuration/cfg_package_definition.py +1 -1
- pyedb/configuration/cfg_padstacks.py +1 -1
- pyedb/configuration/cfg_ports_sources.py +56 -23
- pyedb/configuration/configuration.py +18 -1
- pyedb/dotnet/{application → database}/Variables.py +21 -21
- pyedb/dotnet/{edb_core → database}/cell/connectable.py +5 -5
- pyedb/dotnet/{edb_core → database}/cell/hierarchy/component.py +11 -11
- pyedb/dotnet/{edb_core → database}/cell/hierarchy/hierarchy_obj.py +1 -1
- pyedb/dotnet/{edb_core → database}/cell/hierarchy/model.py +1 -1
- pyedb/dotnet/{edb_core → database}/cell/layout.py +17 -17
- pyedb/dotnet/{edb_core → database}/cell/layout_obj.py +3 -3
- pyedb/dotnet/{edb_core → database}/cell/primitive/bondwire.py +1 -1
- pyedb/dotnet/{edb_core → database}/cell/primitive/path.py +4 -4
- pyedb/dotnet/{edb_core → database}/cell/primitive/primitive.py +14 -14
- pyedb/dotnet/{edb_core → database}/cell/terminal/bundle_terminal.py +2 -2
- pyedb/dotnet/{edb_core → database}/cell/terminal/edge_terminal.py +4 -4
- pyedb/dotnet/{edb_core → database}/cell/terminal/padstack_instance_terminal.py +2 -2
- pyedb/dotnet/{edb_core → database}/cell/terminal/pingroup_terminal.py +2 -2
- pyedb/dotnet/{edb_core → database}/cell/terminal/point_terminal.py +2 -2
- pyedb/dotnet/{edb_core → database}/cell/terminal/terminal.py +11 -11
- pyedb/dotnet/{edb_core → database}/cell/voltage_regulator.py +2 -2
- pyedb/dotnet/{edb_core → database}/components.py +101 -124
- pyedb/dotnet/{edb_core → database}/definition/component_def.py +5 -5
- pyedb/dotnet/{edb_core → database}/definition/component_model.py +1 -1
- pyedb/dotnet/{edb_core → database}/definition/definition_obj.py +1 -1
- pyedb/dotnet/{edb_core → database}/definition/definitions.py +2 -2
- pyedb/dotnet/{edb_core → database}/definition/package_def.py +4 -4
- pyedb/dotnet/{edb_core → database}/dotnet/database.py +8 -8
- pyedb/dotnet/{edb_core → database}/dotnet/primitive.py +9 -9
- pyedb/dotnet/{edb_core → database}/edb_data/control_file.py +12 -12
- pyedb/dotnet/{edb_core → database}/edb_data/hfss_extent_info.py +7 -7
- pyedb/dotnet/{edb_core → database}/edb_data/nets_data.py +10 -13
- pyedb/dotnet/{edb_core → database}/edb_data/padstacks_data.py +16 -16
- pyedb/dotnet/{edb_core → database}/edb_data/ports.py +4 -4
- pyedb/dotnet/{edb_core → database}/edb_data/primitives_data.py +5 -5
- pyedb/dotnet/{edb_core → database}/edb_data/raptor_x_simulation_setup_data.py +4 -4
- pyedb/dotnet/{edb_core → database}/edb_data/simulation_configuration.py +10 -10
- pyedb/dotnet/{edb_core → database}/edb_data/sources.py +4 -4
- pyedb/dotnet/{edb_core → database}/edb_data/variables.py +1 -1
- pyedb/dotnet/{edb_core → database}/geometry/polygon_data.py +4 -4
- pyedb/dotnet/{edb_core → database}/hfss.py +8 -8
- pyedb/dotnet/{edb_core → database}/layout_obj_instance.py +1 -1
- pyedb/dotnet/{edb_core → database}/layout_validation.py +2 -2
- pyedb/dotnet/{edb_core → database}/materials.py +23 -8
- pyedb/dotnet/{edb_core → database}/modeler.py +27 -27
- pyedb/dotnet/{edb_core → database}/net_class.py +8 -8
- pyedb/dotnet/{edb_core → database}/nets.py +12 -12
- pyedb/dotnet/{edb_core → database}/padstack.py +15 -15
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/mesh_operation.py +1 -1
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/settings.py +3 -3
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/sim_setup_info.py +2 -2
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/simulation_settings.py +1 -1
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/siw_dc_ir_settings.py +1 -1
- pyedb/dotnet/{edb_core → database}/sim_setup_data/data/sweep_data.py +1 -1
- pyedb/dotnet/{edb_core → database}/siwave.py +10 -10
- pyedb/dotnet/{edb_core → database}/stackup.py +12 -12
- pyedb/dotnet/{edb_core → database}/utilities/hfss_simulation_setup.py +15 -15
- pyedb/dotnet/{edb_core → database}/utilities/obj_base.py +1 -1
- pyedb/dotnet/{edb_core → database}/utilities/simulation_setup.py +3 -3
- pyedb/dotnet/{edb_core → database}/utilities/siwave_simulation_setup.py +6 -6
- pyedb/dotnet/edb.py +117 -112
- pyedb/generic/design_types.py +26 -19
- pyedb/generic/general_methods.py +1 -1
- pyedb/generic/plot.py +0 -2
- pyedb/grpc/database/__init__.py +1 -0
- pyedb/grpc/database/components.py +2354 -0
- pyedb/grpc/database/control_file.py +1277 -0
- pyedb/grpc/database/definition/component_def.py +218 -0
- pyedb/grpc/database/definition/component_model.py +39 -0
- pyedb/grpc/database/definition/component_pin.py +32 -0
- pyedb/grpc/database/definition/materials.py +1207 -0
- pyedb/grpc/database/definition/n_port_component_model.py +34 -0
- pyedb/grpc/database/definition/package_def.py +227 -0
- pyedb/grpc/database/definition/padstack_def.py +842 -0
- pyedb/grpc/database/definitions.py +70 -0
- pyedb/grpc/database/general.py +43 -0
- pyedb/grpc/database/geometry/__init__.py +0 -0
- pyedb/grpc/database/geometry/arc_data.py +93 -0
- pyedb/grpc/database/geometry/point_3d_data.py +79 -0
- pyedb/grpc/database/geometry/point_data.py +30 -0
- pyedb/grpc/database/geometry/polygon_data.py +133 -0
- pyedb/grpc/database/hfss.py +1279 -0
- pyedb/grpc/database/hierarchy/__init__.py +0 -0
- pyedb/grpc/database/hierarchy/component.py +1301 -0
- pyedb/grpc/database/hierarchy/model.py +31 -0
- pyedb/grpc/database/hierarchy/netlist_model.py +30 -0
- pyedb/grpc/database/hierarchy/pin_pair_model.py +128 -0
- pyedb/grpc/database/hierarchy/pingroup.py +245 -0
- pyedb/grpc/database/hierarchy/s_parameter_model.py +33 -0
- pyedb/grpc/database/hierarchy/spice_model.py +48 -0
- pyedb/grpc/database/layers/__init__.py +0 -0
- pyedb/grpc/database/layers/layer.py +57 -0
- pyedb/grpc/database/layers/stackup_layer.py +410 -0
- pyedb/grpc/database/layout/__init__.py +0 -0
- pyedb/grpc/database/layout/cell.py +30 -0
- pyedb/grpc/database/layout/layout.py +196 -0
- pyedb/grpc/database/layout/voltage_regulator.py +149 -0
- pyedb/grpc/database/layout_validation.py +319 -0
- pyedb/grpc/database/modeler.py +1468 -0
- pyedb/grpc/database/net/__init__.py +0 -0
- pyedb/grpc/database/net/differential_pair.py +138 -0
- pyedb/grpc/database/net/extended_net.py +340 -0
- pyedb/grpc/database/net/net.py +198 -0
- pyedb/grpc/database/net/net_class.py +93 -0
- pyedb/grpc/database/nets.py +633 -0
- pyedb/grpc/database/padstacks.py +1500 -0
- pyedb/grpc/database/ports/__init__.py +0 -0
- pyedb/grpc/database/ports/ports.py +396 -0
- pyedb/grpc/database/primitive/__init__.py +3 -0
- pyedb/grpc/database/primitive/bondwire.py +181 -0
- pyedb/grpc/database/primitive/circle.py +75 -0
- pyedb/grpc/database/primitive/padstack_instance.py +1116 -0
- pyedb/grpc/database/primitive/path.py +346 -0
- pyedb/grpc/database/primitive/polygon.py +276 -0
- pyedb/grpc/database/primitive/primitive.py +739 -0
- pyedb/grpc/database/primitive/rectangle.py +146 -0
- pyedb/grpc/database/simulation_setup/__init__.py +0 -0
- pyedb/grpc/database/simulation_setup/adaptive_frequency.py +33 -0
- pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py +32 -0
- pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +59 -0
- pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py +35 -0
- pyedb/grpc/database/simulation_setup/hfss_general_settings.py +61 -0
- pyedb/grpc/database/simulation_setup/hfss_settings_options.py +78 -0
- pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +118 -0
- pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +355 -0
- pyedb/grpc/database/simulation_setup/hfss_solver_settings.py +34 -0
- pyedb/grpc/database/simulation_setup/mesh_operation.py +34 -0
- pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py +34 -0
- pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py +33 -0
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +64 -0
- pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +125 -0
- pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py +34 -0
- pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +119 -0
- pyedb/grpc/database/simulation_setup/sweep_data.py +32 -0
- pyedb/grpc/database/siwave.py +1023 -0
- pyedb/grpc/database/source_excitations.py +2572 -0
- pyedb/grpc/database/stackup.py +2574 -0
- pyedb/grpc/database/terminal/__init__.py +0 -0
- pyedb/grpc/database/terminal/bundle_terminal.py +218 -0
- pyedb/grpc/database/terminal/edge_terminal.py +51 -0
- pyedb/grpc/database/terminal/padstack_instance_terminal.py +171 -0
- pyedb/grpc/database/terminal/pingroup_terminal.py +162 -0
- pyedb/grpc/database/terminal/point_terminal.py +99 -0
- pyedb/grpc/database/terminal/terminal.py +470 -0
- pyedb/grpc/database/utility/__init__.py +3 -0
- pyedb/grpc/database/utility/constants.py +25 -0
- pyedb/grpc/database/utility/heat_sink.py +124 -0
- pyedb/grpc/database/utility/hfss_extent_info.py +448 -0
- pyedb/grpc/database/utility/layout_statistics.py +277 -0
- pyedb/grpc/database/utility/rlc.py +80 -0
- pyedb/grpc/database/utility/simulation_configuration.py +3305 -0
- pyedb/grpc/database/utility/sources.py +388 -0
- pyedb/grpc/database/utility/sweep_data_distribution.py +83 -0
- pyedb/grpc/database/utility/xml_control_file.py +1277 -0
- pyedb/grpc/edb.py +4152 -0
- pyedb/grpc/edb_init.py +481 -0
- pyedb/grpc/rpc_session.py +177 -0
- pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +3 -2
- pyedb/ipc2581/ecad/cad_data/feature.py +4 -3
- pyedb/ipc2581/ecad/cad_data/layer_feature.py +32 -20
- pyedb/ipc2581/ecad/cad_data/outline.py +3 -2
- pyedb/ipc2581/ecad/cad_data/package.py +4 -3
- pyedb/ipc2581/ecad/cad_data/path.py +82 -31
- pyedb/ipc2581/ecad/cad_data/polygon.py +122 -60
- pyedb/ipc2581/ecad/cad_data/profile.py +13 -12
- pyedb/ipc2581/ecad/cad_data/step.py +53 -21
- pyedb/ipc2581/ipc2581.py +47 -49
- pyedb/modeler/geometry_operators.py +1 -1
- {pyedb-0.38.0.dist-info → pyedb-0.39.1.dist-info}/METADATA +5 -2
- pyedb-0.39.1.dist-info/RECORD +288 -0
- pyedb-0.38.0.dist-info/RECORD +0 -195
- /pyedb/dotnet/{edb_core → database}/__init__.py +0 -0
- /pyedb/dotnet/{application → database/cell}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core/cell → database/cell/hierarchy}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/cell/hierarchy/netlist_model.py +0 -0
- /pyedb/dotnet/{edb_core → database}/cell/hierarchy/pin_pair_model.py +0 -0
- /pyedb/dotnet/{edb_core → database}/cell/hierarchy/s_parameter_model.py +0 -0
- /pyedb/dotnet/{edb_core → database}/cell/hierarchy/spice_model.py +0 -0
- /pyedb/dotnet/{edb_core → database}/cell/primitive/__init__.py +0 -0
- /pyedb/dotnet/{edb_core/cell/hierarchy → database/cell/terminal}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core/cell/terminal → database/definition}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core/definition → database/dotnet}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core/dotnet → database/edb_data}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/edb_data/design_options.py +0 -0
- /pyedb/dotnet/{edb_core → database}/edb_data/edbvalue.py +0 -0
- /pyedb/dotnet/{edb_core → database}/edb_data/layer_data.py +0 -0
- /pyedb/dotnet/{edb_core → database}/edb_data/utilities.py +0 -0
- /pyedb/dotnet/{edb_core → database}/general.py +0 -0
- /pyedb/dotnet/{edb_core/edb_data → database/geometry}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/geometry/point_data.py +0 -0
- /pyedb/dotnet/{edb_core → database}/sim_setup_data/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/sim_setup_data/data/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/sim_setup_data/data/adaptive_frequency_data.py +0 -0
- /pyedb/dotnet/{edb_core/geometry → database/sim_setup_data/io}/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/sim_setup_data/io/siwave.py +0 -0
- /pyedb/dotnet/{edb_core → database}/utilities/__init__.py +0 -0
- /pyedb/dotnet/{edb_core → database}/utilities/heatsink.py +0 -0
- /pyedb/{dotnet/edb_core/sim_setup_data/io → grpc/database/definition}/__init__.py +0 -0
- {pyedb-0.38.0.dist-info → pyedb-0.39.1.dist-info}/LICENSE +0 -0
- {pyedb-0.38.0.dist-info → pyedb-0.39.1.dist-info}/WHEEL +0 -0
|
@@ -279,7 +279,7 @@ class ControlFileStackup:
|
|
|
279
279
|
|
|
280
280
|
Returns
|
|
281
281
|
-------
|
|
282
|
-
list of :class:`pyedb.dotnet.
|
|
282
|
+
list of :class:`pyedb.dotnet.database.edb_data.control_file.ControlFileVia`
|
|
283
283
|
|
|
284
284
|
"""
|
|
285
285
|
return self._vias
|
|
@@ -290,7 +290,7 @@ class ControlFileStackup:
|
|
|
290
290
|
|
|
291
291
|
Returns
|
|
292
292
|
-------
|
|
293
|
-
list of :class:`pyedb.dotnet.
|
|
293
|
+
list of :class:`pyedb.dotnet.database.edb_data.control_file.ControlFileMaterial`
|
|
294
294
|
|
|
295
295
|
"""
|
|
296
296
|
return self._materials
|
|
@@ -301,7 +301,7 @@ class ControlFileStackup:
|
|
|
301
301
|
|
|
302
302
|
Returns
|
|
303
303
|
-------
|
|
304
|
-
list of :class:`pyedb.dotnet.
|
|
304
|
+
list of :class:`pyedb.dotnet.database.edb_data.control_file.ControlFileLayer`
|
|
305
305
|
|
|
306
306
|
"""
|
|
307
307
|
return self._dielectrics
|
|
@@ -312,7 +312,7 @@ class ControlFileStackup:
|
|
|
312
312
|
|
|
313
313
|
Returns
|
|
314
314
|
-------
|
|
315
|
-
list of :class:`pyedb.dotnet.
|
|
315
|
+
list of :class:`pyedb.dotnet.database.edb_data.control_file.ControlFileLayer`
|
|
316
316
|
|
|
317
317
|
"""
|
|
318
318
|
return self._layers
|
|
@@ -346,7 +346,7 @@ class ControlFileStackup:
|
|
|
346
346
|
|
|
347
347
|
Returns
|
|
348
348
|
-------
|
|
349
|
-
:class:`pyedb.dotnet.
|
|
349
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileMaterial`
|
|
350
350
|
"""
|
|
351
351
|
if isinstance(properties, dict):
|
|
352
352
|
self._materials[material_name] = ControlFileMaterial(material_name, properties)
|
|
@@ -400,7 +400,7 @@ class ControlFileStackup:
|
|
|
400
400
|
|
|
401
401
|
Returns
|
|
402
402
|
-------
|
|
403
|
-
:class:`pyedb.dotnet.
|
|
403
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileLayer`
|
|
404
404
|
"""
|
|
405
405
|
if isinstance(properties, dict):
|
|
406
406
|
self._layers.append(ControlFileLayer(layer_name, properties))
|
|
@@ -453,7 +453,7 @@ class ControlFileStackup:
|
|
|
453
453
|
|
|
454
454
|
Returns
|
|
455
455
|
-------
|
|
456
|
-
:class:`pyedb.dotnet.
|
|
456
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileDielectric`
|
|
457
457
|
"""
|
|
458
458
|
if isinstance(properties, dict):
|
|
459
459
|
self._dielectrics.append(ControlFileDielectric(layer_name, properties))
|
|
@@ -531,7 +531,7 @@ class ControlFileStackup:
|
|
|
531
531
|
|
|
532
532
|
Returns
|
|
533
533
|
-------
|
|
534
|
-
:class:`pyedb.dotnet.
|
|
534
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileVia`
|
|
535
535
|
"""
|
|
536
536
|
if isinstance(properties, dict):
|
|
537
537
|
self._vias.append(ControlFileVia(layer_name, properties))
|
|
@@ -817,7 +817,7 @@ class ControlFileBoundaries:
|
|
|
817
817
|
|
|
818
818
|
Returns
|
|
819
819
|
-------
|
|
820
|
-
:class:`pyedb.dotnet.
|
|
820
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlCircuitPt`
|
|
821
821
|
"""
|
|
822
822
|
self.ports[name] = ControlCircuitPt(name, str(x1), str(y1), layer1, str(x2), str(y2), layer2, str(z0))
|
|
823
823
|
return self.ports[name]
|
|
@@ -1004,7 +1004,7 @@ class ControlFileSetup:
|
|
|
1004
1004
|
|
|
1005
1005
|
Returns
|
|
1006
1006
|
-------
|
|
1007
|
-
:class:`pyedb.dotnet.
|
|
1007
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileSweep`
|
|
1008
1008
|
"""
|
|
1009
1009
|
self.sweeps.append(ControlFileSweep(name, start, stop, step, sweep_type, step_type, use_q3d))
|
|
1010
1010
|
return self.sweeps[-1]
|
|
@@ -1025,7 +1025,7 @@ class ControlFileSetup:
|
|
|
1025
1025
|
|
|
1026
1026
|
Returns
|
|
1027
1027
|
-------
|
|
1028
|
-
:class:`pyedb.dotnet.
|
|
1028
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileMeshOp`
|
|
1029
1029
|
|
|
1030
1030
|
"""
|
|
1031
1031
|
mop = ControlFileMeshOp(name, region, type, nets_layers)
|
|
@@ -1099,7 +1099,7 @@ class ControlFileSetups:
|
|
|
1099
1099
|
|
|
1100
1100
|
Returns
|
|
1101
1101
|
-------
|
|
1102
|
-
:class:`pyedb.dotnet.
|
|
1102
|
+
:class:`pyedb.dotnet.database.edb_data.control_file.ControlFileSetup`
|
|
1103
1103
|
"""
|
|
1104
1104
|
setup = ControlFileSetup(name, adapt_freq, maxdelta, maxpasses)
|
|
1105
1105
|
self.setups.append(setup)
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
-
from pyedb.dotnet.
|
|
24
|
-
from pyedb.dotnet.
|
|
25
|
-
from pyedb.dotnet.
|
|
23
|
+
from pyedb.dotnet.database.edb_data.edbvalue import EdbValue
|
|
24
|
+
from pyedb.dotnet.database.edb_data.primitives_data import cast
|
|
25
|
+
from pyedb.dotnet.database.general import convert_pytuple_to_nettuple, pascal_to_snake
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
class HfssExtentInfo:
|
|
@@ -75,7 +75,7 @@ class HfssExtentInfo:
|
|
|
75
75
|
"""Size of horizontal extent for the air box.
|
|
76
76
|
|
|
77
77
|
Returns:
|
|
78
|
-
dotnet.
|
|
78
|
+
dotnet.database.edb_data.edbvalue.EdbValue
|
|
79
79
|
"""
|
|
80
80
|
return self._edb_hfss_extent_info.AirBoxHorizontalExtent.Item1
|
|
81
81
|
|
|
@@ -141,7 +141,7 @@ class HfssExtentInfo:
|
|
|
141
141
|
|
|
142
142
|
Returns
|
|
143
143
|
-------
|
|
144
|
-
:class:`dotnet.
|
|
144
|
+
:class:`dotnet.database.edb_data.primitives_data.EDBPrimitive`
|
|
145
145
|
"""
|
|
146
146
|
return cast(self._edb_hfss_extent_info.BasePolygon, self._pedb)
|
|
147
147
|
|
|
@@ -157,7 +157,7 @@ class HfssExtentInfo:
|
|
|
157
157
|
|
|
158
158
|
Returns
|
|
159
159
|
-------
|
|
160
|
-
:class:`dotnet.
|
|
160
|
+
:class:`dotnet.database.edb_data.primitives_data.EDBPrimitive`
|
|
161
161
|
"""
|
|
162
162
|
return cast(self._edb_hfss_extent_info.DielectricBasePolygon, self._pedb)
|
|
163
163
|
|
|
@@ -251,7 +251,7 @@ class HfssExtentInfo:
|
|
|
251
251
|
|
|
252
252
|
Returns
|
|
253
253
|
-------
|
|
254
|
-
pyedb.dotnet.
|
|
254
|
+
pyedb.dotnet.database.edb_data.edbvalue.EdbValue
|
|
255
255
|
"""
|
|
256
256
|
return EdbValue(self._edb_hfss_extent_info.OperatingFreq)
|
|
257
257
|
|
|
@@ -19,13 +19,13 @@
|
|
|
19
19
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
|
-
from pyedb.dotnet.
|
|
22
|
+
from pyedb.dotnet.database.dotnet.database import (
|
|
23
23
|
DifferentialPairDotNet,
|
|
24
24
|
ExtendedNetDotNet,
|
|
25
25
|
NetClassDotNet,
|
|
26
26
|
NetDotNet,
|
|
27
27
|
)
|
|
28
|
-
from pyedb.dotnet.
|
|
28
|
+
from pyedb.dotnet.database.edb_data.padstacks_data import EDBPadstackInstance
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class EDBNetsData(NetDotNet):
|
|
@@ -55,9 +55,9 @@ class EDBNetsData(NetDotNet):
|
|
|
55
55
|
|
|
56
56
|
Returns
|
|
57
57
|
-------
|
|
58
|
-
list of :class:`pyedb.dotnet.
|
|
58
|
+
list of :class:`pyedb.dotnet.database.edb_data.primitives_data.EDBPrimitives`
|
|
59
59
|
"""
|
|
60
|
-
from pyedb.dotnet.
|
|
60
|
+
from pyedb.dotnet.database.cell.layout import primitive_cast
|
|
61
61
|
|
|
62
62
|
return [primitive_cast(self._app, i) for i in self.net_object.Primitives if i]
|
|
63
63
|
# return [self._app.layout.find_object_by_id(i.GetId()) for i in self.net_object.Primitives]
|
|
@@ -68,7 +68,7 @@ class EDBNetsData(NetDotNet):
|
|
|
68
68
|
|
|
69
69
|
Returns
|
|
70
70
|
-------
|
|
71
|
-
list of :class:`pyedb.dotnet.
|
|
71
|
+
list of :class:`pyedb.dotnet.database.edb_data.padstacks_data.EDBPadstackInstance`"""
|
|
72
72
|
# name = self.name
|
|
73
73
|
# return [
|
|
74
74
|
# EDBPadstackInstance(i, self._app) for i in self.net_object.PadstackInstances if i.GetNet().GetName() == name
|
|
@@ -81,7 +81,7 @@ class EDBNetsData(NetDotNet):
|
|
|
81
81
|
|
|
82
82
|
Returns
|
|
83
83
|
-------
|
|
84
|
-
dict[str, :class:`pyedb.dotnet.
|
|
84
|
+
dict[str, :class:`pyedb.dotnet.database.cell.hierarchy.component.EDBComponent`]
|
|
85
85
|
"""
|
|
86
86
|
comps = {}
|
|
87
87
|
for p in self.padstack_instances:
|
|
@@ -113,9 +113,8 @@ class EDBNetsData(NetDotNet):
|
|
|
113
113
|
show_legend=True,
|
|
114
114
|
save_plot=None,
|
|
115
115
|
outline=None,
|
|
116
|
-
size=(
|
|
116
|
+
size=(2000, 1000),
|
|
117
117
|
show=True,
|
|
118
|
-
plot_vias=True,
|
|
119
118
|
):
|
|
120
119
|
"""Plot a net to Matplotlib 2D chart.
|
|
121
120
|
|
|
@@ -135,9 +134,6 @@ class EDBNetsData(NetDotNet):
|
|
|
135
134
|
Image size in pixel (width, height).
|
|
136
135
|
show : bool, optional
|
|
137
136
|
Whether to show the plot or not. Default is `True`.
|
|
138
|
-
plot_vias : bool, optional
|
|
139
|
-
Whether to plot vias or not. It may impact on performances.
|
|
140
|
-
Default is `True`.
|
|
141
137
|
"""
|
|
142
138
|
|
|
143
139
|
return self._app.nets.plot(
|
|
@@ -148,7 +144,8 @@ class EDBNetsData(NetDotNet):
|
|
|
148
144
|
outline=outline,
|
|
149
145
|
size=size,
|
|
150
146
|
show=show,
|
|
151
|
-
plot_vias=
|
|
147
|
+
plot_vias=True,
|
|
148
|
+
plot_components=True,
|
|
152
149
|
)
|
|
153
150
|
|
|
154
151
|
def get_smallest_trace_width(self):
|
|
@@ -173,7 +170,7 @@ class EDBNetsData(NetDotNet):
|
|
|
173
170
|
|
|
174
171
|
Returns
|
|
175
172
|
-------
|
|
176
|
-
:class:` :class:`pyedb.dotnet.
|
|
173
|
+
:class:` :class:`pyedb.dotnet.database.edb_data.nets_data.EDBExtendedNetData`
|
|
177
174
|
|
|
178
175
|
Examples
|
|
179
176
|
--------
|
|
@@ -25,16 +25,16 @@ import math
|
|
|
25
25
|
import warnings
|
|
26
26
|
|
|
27
27
|
from pyedb.dotnet.clr_module import String
|
|
28
|
-
from pyedb.dotnet.
|
|
29
|
-
from pyedb.dotnet.
|
|
30
|
-
from pyedb.dotnet.
|
|
31
|
-
from pyedb.dotnet.
|
|
28
|
+
from pyedb.dotnet.database.cell.primitive.primitive import Primitive
|
|
29
|
+
from pyedb.dotnet.database.dotnet.database import PolygonDataDotNet
|
|
30
|
+
from pyedb.dotnet.database.edb_data.edbvalue import EdbValue
|
|
31
|
+
from pyedb.dotnet.database.general import (
|
|
32
32
|
PadGeometryTpe,
|
|
33
33
|
convert_py_list_to_net_list,
|
|
34
34
|
pascal_to_snake,
|
|
35
35
|
snake_to_pascal,
|
|
36
36
|
)
|
|
37
|
-
from pyedb.dotnet.
|
|
37
|
+
from pyedb.dotnet.database.geometry.polygon_data import PolygonData
|
|
38
38
|
from pyedb.generic.general_methods import generate_unique_name
|
|
39
39
|
from pyedb.modeler.geometry_operators import GeometryOperators
|
|
40
40
|
|
|
@@ -931,7 +931,7 @@ class EDBPadstack(object):
|
|
|
931
931
|
|
|
932
932
|
Returns
|
|
933
933
|
-------
|
|
934
|
-
List of :class:`pyedb.dotnet.
|
|
934
|
+
List of :class:`pyedb.dotnet.database.padstackEDBPadstack`
|
|
935
935
|
"""
|
|
936
936
|
if self.via_start_layer == self.via_stop_layer:
|
|
937
937
|
self._ppadstack._pedb.logger.error("Microvias cannot be applied when Start and Stop Layers are the same.")
|
|
@@ -1200,13 +1200,13 @@ class EDBPadstackInstance(Primitive):
|
|
|
1200
1200
|
|
|
1201
1201
|
Returns
|
|
1202
1202
|
-------
|
|
1203
|
-
:class:`pyedb.dotnet.
|
|
1203
|
+
:class:`pyedb.dotnet.database.edb_data.terminals`
|
|
1204
1204
|
"""
|
|
1205
1205
|
warnings.warn("Use new property :func:`terminal` instead.", DeprecationWarning)
|
|
1206
1206
|
if create_new_terminal:
|
|
1207
1207
|
term = self._create_terminal(name)
|
|
1208
1208
|
else:
|
|
1209
|
-
from pyedb.dotnet.
|
|
1209
|
+
from pyedb.dotnet.database.cell.terminal.padstack_instance_terminal import (
|
|
1210
1210
|
PadstackInstanceTerminal,
|
|
1211
1211
|
)
|
|
1212
1212
|
|
|
@@ -1217,7 +1217,7 @@ class EDBPadstackInstance(Primitive):
|
|
|
1217
1217
|
@property
|
|
1218
1218
|
def terminal(self):
|
|
1219
1219
|
"""Terminal."""
|
|
1220
|
-
from pyedb.dotnet.
|
|
1220
|
+
from pyedb.dotnet.database.cell.terminal.padstack_instance_terminal import (
|
|
1221
1221
|
PadstackInstanceTerminal,
|
|
1222
1222
|
)
|
|
1223
1223
|
|
|
@@ -1231,7 +1231,7 @@ class EDBPadstackInstance(Primitive):
|
|
|
1231
1231
|
|
|
1232
1232
|
def create_terminal(self, name=None):
|
|
1233
1233
|
"""Create a padstack instance terminal"""
|
|
1234
|
-
from pyedb.dotnet.
|
|
1234
|
+
from pyedb.dotnet.database.cell.terminal.padstack_instance_terminal import (
|
|
1235
1235
|
PadstackInstanceTerminal,
|
|
1236
1236
|
)
|
|
1237
1237
|
|
|
@@ -1251,9 +1251,9 @@ class EDBPadstackInstance(Primitive):
|
|
|
1251
1251
|
----------
|
|
1252
1252
|
name : str, optional
|
|
1253
1253
|
Name of the port. The default is ``None``, in which case a name is automatically assigned.
|
|
1254
|
-
reference : class:`pyedb.dotnet.
|
|
1255
|
-
class:`pyedb.dotnet.
|
|
1256
|
-
class:`pyedb.dotnet.
|
|
1254
|
+
reference : class:`pyedb.dotnet.database.edb_data.nets_data.EDBNetsData`, \
|
|
1255
|
+
class:`pyedb.dotnet.database.edb_data.padstacks_data.EDBPadstackInstance`, \
|
|
1256
|
+
class:`pyedb.dotnet.database.edb_data.sources.PinGroup`, optional
|
|
1257
1257
|
Negative terminal of the port.
|
|
1258
1258
|
is_circuit_port : bool, optional
|
|
1259
1259
|
Whether it is a circuit port.
|
|
@@ -1657,7 +1657,7 @@ class EDBPadstackInstance(Primitive):
|
|
|
1657
1657
|
@property
|
|
1658
1658
|
def component(self):
|
|
1659
1659
|
"""Component."""
|
|
1660
|
-
from pyedb.dotnet.
|
|
1660
|
+
from pyedb.dotnet.database.cell.hierarchy.component import EDBComponent
|
|
1661
1661
|
|
|
1662
1662
|
comp = EDBComponent(self._pedb, self._edb_object.GetComponent())
|
|
1663
1663
|
return comp if not comp.is_null else False
|
|
@@ -1927,7 +1927,7 @@ class EDBPadstackInstance(Primitive):
|
|
|
1927
1927
|
|
|
1928
1928
|
Returns
|
|
1929
1929
|
-------
|
|
1930
|
-
bool, List, :class:`pyedb.dotnet.
|
|
1930
|
+
bool, List, :class:`pyedb.dotnet.database.edb_data.primitives.EDBPrimitives`
|
|
1931
1931
|
Polygon when successful, ``False`` when failed, list of list if `return_points=True`.
|
|
1932
1932
|
|
|
1933
1933
|
Examples
|
|
@@ -2125,7 +2125,7 @@ class EDBPadstackInstance(Primitive):
|
|
|
2125
2125
|
Returns
|
|
2126
2126
|
-------
|
|
2127
2127
|
list
|
|
2128
|
-
List of :class:`dotnet.
|
|
2128
|
+
List of :class:`dotnet.database.edb_data.padstacks_data.EDBPadstackInstance`.
|
|
2129
2129
|
|
|
2130
2130
|
Examples
|
|
2131
2131
|
--------
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
-
from pyedb.dotnet.
|
|
24
|
-
from pyedb.dotnet.
|
|
25
|
-
from pyedb.dotnet.
|
|
23
|
+
from pyedb.dotnet.database.cell.terminal.bundle_terminal import BundleTerminal
|
|
24
|
+
from pyedb.dotnet.database.cell.terminal.edge_terminal import EdgeTerminal
|
|
25
|
+
from pyedb.dotnet.database.cell.terminal.padstack_instance_terminal import (
|
|
26
26
|
PadstackInstanceTerminal,
|
|
27
27
|
)
|
|
28
|
-
from pyedb.dotnet.
|
|
28
|
+
from pyedb.dotnet.database.cell.terminal.terminal import Terminal
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
class GapPort(EdgeTerminal):
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
|
|
23
23
|
import math
|
|
24
24
|
|
|
25
|
-
from pyedb.dotnet.
|
|
26
|
-
from pyedb.dotnet.
|
|
25
|
+
from pyedb.dotnet.database.cell.primitive.primitive import Primitive
|
|
26
|
+
from pyedb.dotnet.database.dotnet.primitive import (
|
|
27
27
|
BondwireDotNet,
|
|
28
28
|
CircleDotNet,
|
|
29
29
|
RectangleDotNet,
|
|
30
30
|
TextDotNet,
|
|
31
31
|
)
|
|
32
|
-
from pyedb.dotnet.
|
|
32
|
+
from pyedb.dotnet.database.geometry.polygon_data import PolygonData
|
|
33
33
|
from pyedb.modeler.geometry_operators import GeometryOperators
|
|
34
34
|
|
|
35
35
|
|
|
@@ -283,7 +283,7 @@ class EdbPolygon(Primitive):
|
|
|
283
283
|
#
|
|
284
284
|
# Parameters
|
|
285
285
|
# ----------
|
|
286
|
-
# point_list : list or :class:`dotnet.
|
|
286
|
+
# point_list : list or :class:`dotnet.database.edb_data.primitives_data.Primitive` or EDB Primitive Object
|
|
287
287
|
# Point list in the format of `[[x1,y1], [x2,y2],..,[xn,yn]]`.
|
|
288
288
|
#
|
|
289
289
|
# Returns
|
|
@@ -308,7 +308,7 @@ class EdbPolygon(Primitive):
|
|
|
308
308
|
|
|
309
309
|
@property
|
|
310
310
|
def polygon_data(self):
|
|
311
|
-
""":class:`pyedb.dotnet.
|
|
311
|
+
""":class:`pyedb.dotnet.database.dotnet.database.PolygonDataDotNet`: Outer contour of the Polygon object."""
|
|
312
312
|
return PolygonData(self._pedb, self._edb_object.GetPolygonData())
|
|
313
313
|
|
|
314
314
|
@polygon_data.setter
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
|
-
from pyedb.dotnet.
|
|
23
|
-
from pyedb.dotnet.
|
|
24
|
-
from pyedb.dotnet.
|
|
22
|
+
from pyedb.dotnet.database.general import convert_py_list_to_net_list
|
|
23
|
+
from pyedb.dotnet.database.sim_setup_data.data.sweep_data import SweepData
|
|
24
|
+
from pyedb.dotnet.database.utilities.simulation_setup import SimulationSetup
|
|
25
25
|
from pyedb.generic.general_methods import generate_unique_name
|
|
26
26
|
|
|
27
27
|
|
|
@@ -80,7 +80,7 @@ class RaptorXSimulationSetup(SimulationSetup):
|
|
|
80
80
|
|
|
81
81
|
Returns
|
|
82
82
|
-------
|
|
83
|
-
:class:`pyedb.dotnet.
|
|
83
|
+
:class:`pyedb.dotnet.database.edb_data.simulation_setup.EdbFrequencySweep`
|
|
84
84
|
|
|
85
85
|
Examples
|
|
86
86
|
--------
|
|
@@ -25,8 +25,8 @@ import json
|
|
|
25
25
|
import os
|
|
26
26
|
|
|
27
27
|
from pyedb.dotnet.clr_module import Dictionary
|
|
28
|
-
from pyedb.dotnet.
|
|
29
|
-
from pyedb.dotnet.
|
|
28
|
+
from pyedb.dotnet.database.edb_data.sources import Source, SourceType
|
|
29
|
+
from pyedb.dotnet.database.utilities.simulation_setup import AdaptiveType
|
|
30
30
|
from pyedb.generic.constants import (
|
|
31
31
|
BasisOrder,
|
|
32
32
|
CutoutSubdesignType,
|
|
@@ -513,7 +513,7 @@ class SimulationConfigurationBatch(object):
|
|
|
513
513
|
|
|
514
514
|
Returns
|
|
515
515
|
-------
|
|
516
|
-
:class:`dotnet.
|
|
516
|
+
:class:`dotnet.database.edb_data.sources.Source`
|
|
517
517
|
"""
|
|
518
518
|
return self._sources
|
|
519
519
|
|
|
@@ -530,7 +530,7 @@ class SimulationConfigurationBatch(object):
|
|
|
530
530
|
|
|
531
531
|
Parameters
|
|
532
532
|
----------
|
|
533
|
-
source : :class:`pyedb.dotnet.
|
|
533
|
+
source : :class:`pyedb.dotnet.database.edb_data.sources.Source`
|
|
534
534
|
|
|
535
535
|
"""
|
|
536
536
|
if isinstance(source, Source):
|
|
@@ -1911,7 +1911,7 @@ class SimulationConfigurationAc(object):
|
|
|
1911
1911
|
|
|
1912
1912
|
Returns
|
|
1913
1913
|
-------
|
|
1914
|
-
class: pyedb.dotnet.
|
|
1914
|
+
class: pyedb.dotnet.database.edb_data.simulation_setup.AdaptiveType
|
|
1915
1915
|
"""
|
|
1916
1916
|
return self._adaptive_type
|
|
1917
1917
|
|
|
@@ -2328,7 +2328,7 @@ class SimulationConfiguration(object):
|
|
|
2328
2328
|
|
|
2329
2329
|
Returns
|
|
2330
2330
|
-------
|
|
2331
|
-
:class:`pyedb.dotnet.
|
|
2331
|
+
:class:`pyedb.dotnet.database.edb_data.simulation_configuration.SimulationConfigurationDc`
|
|
2332
2332
|
"""
|
|
2333
2333
|
return self._dc_settings
|
|
2334
2334
|
|
|
@@ -2339,7 +2339,7 @@ class SimulationConfiguration(object):
|
|
|
2339
2339
|
|
|
2340
2340
|
Returns
|
|
2341
2341
|
-------
|
|
2342
|
-
:class:`pyedb.dotnet.
|
|
2342
|
+
:class:`pyedb.dotnet.database.edb_data.simulation_configuration.SimulationConfigurationAc`
|
|
2343
2343
|
"""
|
|
2344
2344
|
return self._ac_settings
|
|
2345
2345
|
|
|
@@ -2350,7 +2350,7 @@ class SimulationConfiguration(object):
|
|
|
2350
2350
|
|
|
2351
2351
|
Returns
|
|
2352
2352
|
-------
|
|
2353
|
-
:class:`pyedb.dotnet.
|
|
2353
|
+
:class:`pyedb.dotnet.database.edb_data.simulation_configuration.SimulationConfigurationBatch`
|
|
2354
2354
|
"""
|
|
2355
2355
|
return self._batch_solve_settings
|
|
2356
2356
|
|
|
@@ -2699,7 +2699,7 @@ class SimulationConfiguration(object):
|
|
|
2699
2699
|
Examples
|
|
2700
2700
|
--------
|
|
2701
2701
|
|
|
2702
|
-
>>> from dotnet.
|
|
2702
|
+
>>> from dotnet.database.edb_data.simulation_configuration import SimulationConfiguration
|
|
2703
2703
|
>>> config = SimulationConfiguration()
|
|
2704
2704
|
>>> config.export_json(r"C:\Temp\test_json\test.json")
|
|
2705
2705
|
"""
|
|
@@ -2727,7 +2727,7 @@ class SimulationConfiguration(object):
|
|
|
2727
2727
|
|
|
2728
2728
|
Examples
|
|
2729
2729
|
--------
|
|
2730
|
-
>>> from dotnet.
|
|
2730
|
+
>>> from dotnet.database.edb_data.simulation_configuration import SimulationConfiguration
|
|
2731
2731
|
>>> test = SimulationConfiguration()
|
|
2732
2732
|
>>> test.import_json(r"C:\Temp\test_json\test.json")
|
|
2733
2733
|
"""
|
|
@@ -279,7 +279,7 @@ class PinGroup(object):
|
|
|
279
279
|
@property
|
|
280
280
|
def pins(self):
|
|
281
281
|
"""Gets the pins belong to this pin group."""
|
|
282
|
-
from pyedb.dotnet.
|
|
282
|
+
from pyedb.dotnet.database.edb_data.padstacks_data import EDBPadstackInstance
|
|
283
283
|
|
|
284
284
|
return {i.GetName(): EDBPadstackInstance(i, self._pedb) for i in list(self._edb_object.GetPins())}
|
|
285
285
|
|
|
@@ -317,7 +317,7 @@ class PinGroup(object):
|
|
|
317
317
|
@property
|
|
318
318
|
def terminal(self):
|
|
319
319
|
"""Terminal."""
|
|
320
|
-
from pyedb.dotnet.
|
|
320
|
+
from pyedb.dotnet.database.cell.terminal.pingroup_terminal import (
|
|
321
321
|
PinGroupTerminal,
|
|
322
322
|
)
|
|
323
323
|
|
|
@@ -335,7 +335,7 @@ class PinGroup(object):
|
|
|
335
335
|
|
|
336
336
|
Returns
|
|
337
337
|
-------
|
|
338
|
-
:class:`pyedb.dotnet.
|
|
338
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`
|
|
339
339
|
"""
|
|
340
340
|
warnings.warn("`_create_terminal` is deprecated. Use `create_terminal` instead.", DeprecationWarning)
|
|
341
341
|
|
|
@@ -355,7 +355,7 @@ class PinGroup(object):
|
|
|
355
355
|
"""
|
|
356
356
|
if not name:
|
|
357
357
|
name = generate_unique_name(self.name)
|
|
358
|
-
from pyedb.dotnet.
|
|
358
|
+
from pyedb.dotnet.database.cell.terminal.pingroup_terminal import (
|
|
359
359
|
PinGroupTerminal,
|
|
360
360
|
)
|
|
361
361
|
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
from typing import Union
|
|
23
23
|
|
|
24
|
-
from pyedb.dotnet.
|
|
25
|
-
from pyedb.dotnet.
|
|
26
|
-
from pyedb.dotnet.
|
|
24
|
+
from pyedb.dotnet.database.general import convert_py_list_to_net_list
|
|
25
|
+
from pyedb.dotnet.database.geometry.point_data import PointData
|
|
26
|
+
from pyedb.dotnet.database.utilities.obj_base import BBox
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
class PolygonData:
|
|
@@ -68,7 +68,7 @@ class PolygonData:
|
|
|
68
68
|
@property
|
|
69
69
|
def arcs(self):
|
|
70
70
|
"""Get the Primitive Arc Data."""
|
|
71
|
-
from pyedb.dotnet.
|
|
71
|
+
from pyedb.dotnet.database.edb_data.primitives_data import EDBArcs
|
|
72
72
|
|
|
73
73
|
arcs = [EDBArcs(self._pedb, i) for i in self._edb_object.GetArcData()]
|
|
74
74
|
return arcs
|
|
@@ -25,13 +25,13 @@ This module contains the ``EdbHfss`` class.
|
|
|
25
25
|
"""
|
|
26
26
|
import math
|
|
27
27
|
|
|
28
|
-
from pyedb.dotnet.
|
|
29
|
-
from pyedb.dotnet.
|
|
30
|
-
from pyedb.dotnet.
|
|
31
|
-
from pyedb.dotnet.
|
|
28
|
+
from pyedb.dotnet.database.edb_data.hfss_extent_info import HfssExtentInfo
|
|
29
|
+
from pyedb.dotnet.database.edb_data.ports import BundleWavePort, WavePort
|
|
30
|
+
from pyedb.dotnet.database.edb_data.primitives_data import Primitive
|
|
31
|
+
from pyedb.dotnet.database.edb_data.simulation_configuration import (
|
|
32
32
|
SimulationConfiguration,
|
|
33
33
|
)
|
|
34
|
-
from pyedb.dotnet.
|
|
34
|
+
from pyedb.dotnet.database.general import (
|
|
35
35
|
convert_py_list_to_net_list,
|
|
36
36
|
convert_pytuple_to_nettuple,
|
|
37
37
|
)
|
|
@@ -514,7 +514,7 @@ class EdbHfss(object):
|
|
|
514
514
|
Returns
|
|
515
515
|
-------
|
|
516
516
|
tuple
|
|
517
|
-
The tuple contains: (port_name, pyedb.dotnet.
|
|
517
|
+
The tuple contains: (port_name, pyedb.dotnet.database.edb_data.sources.ExcitationDifferential).
|
|
518
518
|
|
|
519
519
|
Examples
|
|
520
520
|
--------
|
|
@@ -584,7 +584,7 @@ class EdbHfss(object):
|
|
|
584
584
|
Returns
|
|
585
585
|
-------
|
|
586
586
|
tuple
|
|
587
|
-
The tuple contains: (port_name, pyedb.egacy.
|
|
587
|
+
The tuple contains: (port_name, pyedb.egacy.database.edb_data.sources.ExcitationDifferential).
|
|
588
588
|
|
|
589
589
|
Examples
|
|
590
590
|
--------
|
|
@@ -789,7 +789,7 @@ class EdbHfss(object):
|
|
|
789
789
|
Returns
|
|
790
790
|
-------
|
|
791
791
|
tuple
|
|
792
|
-
The tuple contains: (Port name, pyedb.dotnet.
|
|
792
|
+
The tuple contains: (Port name, pyedb.dotnet.database.edb_data.sources.Excitation).
|
|
793
793
|
|
|
794
794
|
Examples
|
|
795
795
|
--------
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
-
from pyedb.dotnet.
|
|
23
|
+
from pyedb.dotnet.database.utilities.obj_base import ObjBase
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
class LayoutObjInstance(ObjBase):
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
import re
|
|
24
24
|
|
|
25
25
|
from pyedb.dotnet.clr_module import String
|
|
26
|
-
from pyedb.dotnet.
|
|
27
|
-
from pyedb.dotnet.
|
|
26
|
+
from pyedb.dotnet.database.edb_data.padstacks_data import EDBPadstackInstance
|
|
27
|
+
from pyedb.dotnet.database.edb_data.primitives_data import Primitive
|
|
28
28
|
from pyedb.generic.general_methods import generate_unique_name
|
|
29
29
|
|
|
30
30
|
|