pyedb 0.37.0__py3-none-any.whl → 0.39.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/common/nets.py +53 -139
- pyedb/configuration/cfg_common.py +1 -1
- pyedb/configuration/cfg_components.py +229 -201
- pyedb/configuration/cfg_data.py +3 -1
- pyedb/configuration/cfg_general.py +4 -2
- pyedb/configuration/cfg_modeler.py +7 -7
- pyedb/configuration/cfg_package_definition.py +1 -1
- pyedb/configuration/cfg_padstacks.py +346 -290
- pyedb/configuration/cfg_ports_sources.py +243 -65
- pyedb/configuration/configuration.py +23 -3
- 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 +19 -19
- 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 +60 -73
- 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 +17 -16
- 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 +18 -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 +4 -4
- 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 +4 -3
- pyedb/dotnet/{edb_core → database}/utilities/siwave_simulation_setup.py +6 -6
- pyedb/dotnet/edb.py +118 -113
- pyedb/extensions/pre_layout_design_toolkit/via_design.py +1151 -0
- 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 +4151 -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 +52 -20
- pyedb/ipc2581/ipc2581.py +47 -49
- pyedb/modeler/geometry_operators.py +1 -1
- {pyedb-0.37.0.dist-info → pyedb-0.39.0.dist-info}/METADATA +9 -6
- pyedb-0.39.0.dist-info/RECORD +288 -0
- pyedb-0.37.0.dist-info/RECORD +0 -194
- /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.37.0.dist-info → pyedb-0.39.0.dist-info}/LICENSE +0 -0
- {pyedb-0.37.0.dist-info → pyedb-0.39.0.dist-info}/WHEEL +0 -0
pyedb/dotnet/edb.py
CHANGED
|
@@ -42,18 +42,18 @@ from zipfile import ZipFile as zpf
|
|
|
42
42
|
import rtree
|
|
43
43
|
|
|
44
44
|
from pyedb.configuration.configuration import Configuration
|
|
45
|
-
from pyedb.dotnet.
|
|
46
|
-
from pyedb.dotnet.
|
|
47
|
-
from pyedb.dotnet.
|
|
48
|
-
from pyedb.dotnet.
|
|
49
|
-
from pyedb.dotnet.
|
|
50
|
-
from pyedb.dotnet.
|
|
45
|
+
from pyedb.dotnet.database.Variables import decompose_variable_value
|
|
46
|
+
from pyedb.dotnet.database.cell.layout import Layout
|
|
47
|
+
from pyedb.dotnet.database.cell.terminal.terminal import Terminal
|
|
48
|
+
from pyedb.dotnet.database.components import Components
|
|
49
|
+
from pyedb.dotnet.database.dotnet.database import Database
|
|
50
|
+
from pyedb.dotnet.database.edb_data.control_file import (
|
|
51
51
|
ControlFile,
|
|
52
52
|
convert_technology_file,
|
|
53
53
|
)
|
|
54
|
-
from pyedb.dotnet.
|
|
55
|
-
from pyedb.dotnet.
|
|
56
|
-
from pyedb.dotnet.
|
|
54
|
+
from pyedb.dotnet.database.edb_data.design_options import EdbDesignOptions
|
|
55
|
+
from pyedb.dotnet.database.edb_data.edbvalue import EdbValue
|
|
56
|
+
from pyedb.dotnet.database.edb_data.ports import (
|
|
57
57
|
BundleWavePort,
|
|
58
58
|
CircuitPort,
|
|
59
59
|
CoaxPort,
|
|
@@ -61,37 +61,37 @@ from pyedb.dotnet.edb_core.edb_data.ports import (
|
|
|
61
61
|
GapPort,
|
|
62
62
|
WavePort,
|
|
63
63
|
)
|
|
64
|
-
from pyedb.dotnet.
|
|
64
|
+
from pyedb.dotnet.database.edb_data.raptor_x_simulation_setup_data import (
|
|
65
65
|
RaptorXSimulationSetup,
|
|
66
66
|
)
|
|
67
|
-
from pyedb.dotnet.
|
|
67
|
+
from pyedb.dotnet.database.edb_data.simulation_configuration import (
|
|
68
68
|
SimulationConfiguration,
|
|
69
69
|
)
|
|
70
|
-
from pyedb.dotnet.
|
|
71
|
-
from pyedb.dotnet.
|
|
72
|
-
from pyedb.dotnet.
|
|
70
|
+
from pyedb.dotnet.database.edb_data.sources import SourceType
|
|
71
|
+
from pyedb.dotnet.database.edb_data.variables import Variable
|
|
72
|
+
from pyedb.dotnet.database.general import (
|
|
73
73
|
LayoutObjType,
|
|
74
74
|
Primitives,
|
|
75
75
|
convert_py_list_to_net_list,
|
|
76
76
|
)
|
|
77
|
-
from pyedb.dotnet.
|
|
78
|
-
from pyedb.dotnet.
|
|
79
|
-
from pyedb.dotnet.
|
|
80
|
-
from pyedb.dotnet.
|
|
81
|
-
from pyedb.dotnet.
|
|
77
|
+
from pyedb.dotnet.database.hfss import EdbHfss
|
|
78
|
+
from pyedb.dotnet.database.layout_validation import LayoutValidation
|
|
79
|
+
from pyedb.dotnet.database.materials import Materials
|
|
80
|
+
from pyedb.dotnet.database.modeler import Modeler
|
|
81
|
+
from pyedb.dotnet.database.net_class import (
|
|
82
82
|
EdbDifferentialPairs,
|
|
83
83
|
EdbExtendedNets,
|
|
84
84
|
EdbNetClasses,
|
|
85
85
|
)
|
|
86
|
-
from pyedb.dotnet.
|
|
87
|
-
from pyedb.dotnet.
|
|
88
|
-
from pyedb.dotnet.
|
|
89
|
-
from pyedb.dotnet.
|
|
90
|
-
from pyedb.dotnet.
|
|
86
|
+
from pyedb.dotnet.database.nets import EdbNets
|
|
87
|
+
from pyedb.dotnet.database.padstack import EdbPadstacks
|
|
88
|
+
from pyedb.dotnet.database.siwave import EdbSiwave
|
|
89
|
+
from pyedb.dotnet.database.stackup import Stackup
|
|
90
|
+
from pyedb.dotnet.database.utilities.hfss_simulation_setup import (
|
|
91
91
|
HFSSPISimulationSetup,
|
|
92
92
|
HfssSimulationSetup,
|
|
93
93
|
)
|
|
94
|
-
from pyedb.dotnet.
|
|
94
|
+
from pyedb.dotnet.database.utilities.siwave_simulation_setup import (
|
|
95
95
|
SiwaveDCSimulationSetup,
|
|
96
96
|
SiwaveSimulationSetup,
|
|
97
97
|
)
|
|
@@ -296,7 +296,7 @@ class Edb(Database):
|
|
|
296
296
|
|
|
297
297
|
Returns
|
|
298
298
|
-------
|
|
299
|
-
variable object : :class:`pyedb.dotnet.
|
|
299
|
+
variable object : :class:`pyedb.dotnet.database.edb_data.variables.Variable`
|
|
300
300
|
|
|
301
301
|
"""
|
|
302
302
|
if self.variable_exists(variable_name)[0]:
|
|
@@ -374,6 +374,11 @@ class Edb(Database):
|
|
|
374
374
|
self._stackup2 = self._stackup
|
|
375
375
|
self._materials = Materials(self)
|
|
376
376
|
|
|
377
|
+
@property
|
|
378
|
+
def grpc(self):
|
|
379
|
+
"""grpc flag."""
|
|
380
|
+
return False
|
|
381
|
+
|
|
377
382
|
@property
|
|
378
383
|
def cell_names(self):
|
|
379
384
|
"""Cell name container.
|
|
@@ -393,7 +398,7 @@ class Edb(Database):
|
|
|
393
398
|
|
|
394
399
|
Returns
|
|
395
400
|
-------
|
|
396
|
-
variable dictionary : Dict[str, :class:`pyedb.dotnet.
|
|
401
|
+
variable dictionary : Dict[str, :class:`pyedb.dotnet.database.edb_data.variables.Variable`]
|
|
397
402
|
"""
|
|
398
403
|
d_var = dict()
|
|
399
404
|
for i in self.active_cell.GetVariableServer().GetAllVariableNames():
|
|
@@ -406,7 +411,7 @@ class Edb(Database):
|
|
|
406
411
|
|
|
407
412
|
Returns
|
|
408
413
|
-------
|
|
409
|
-
variables dictionary : Dict[str, :class:`pyedb.dotnet.
|
|
414
|
+
variables dictionary : Dict[str, :class:`pyedb.dotnet.database.edb_data.variables.Variable`]
|
|
410
415
|
|
|
411
416
|
"""
|
|
412
417
|
p_var = dict()
|
|
@@ -416,11 +421,11 @@ class Edb(Database):
|
|
|
416
421
|
|
|
417
422
|
@property
|
|
418
423
|
def layout_validation(self):
|
|
419
|
-
""":class:`pyedb.dotnet.
|
|
424
|
+
""":class:`pyedb.dotnet.database.edb_data.layout_validation.LayoutValidation`.
|
|
420
425
|
|
|
421
426
|
Returns
|
|
422
427
|
-------
|
|
423
|
-
layout validation object : :class: 'pyedb.dotnet.
|
|
428
|
+
layout validation object : :class: 'pyedb.dotnet.database.layout_validation.LayoutValidation'
|
|
424
429
|
"""
|
|
425
430
|
return LayoutValidation(self)
|
|
426
431
|
|
|
@@ -430,7 +435,7 @@ class Edb(Database):
|
|
|
430
435
|
|
|
431
436
|
Returns
|
|
432
437
|
-------
|
|
433
|
-
variables dictionary : Dict[str, :class:`pyedb.dotnet.
|
|
438
|
+
variables dictionary : Dict[str, :class:`pyedb.dotnet.database.edb_data.variables.Variable`]
|
|
434
439
|
|
|
435
440
|
"""
|
|
436
441
|
all_vars = dict()
|
|
@@ -469,8 +474,8 @@ class Edb(Database):
|
|
|
469
474
|
|
|
470
475
|
Returns
|
|
471
476
|
-------
|
|
472
|
-
port dictionary : Dict[str, [:class:`pyedb.dotnet.
|
|
473
|
-
:class:`pyedb.dotnet.
|
|
477
|
+
port dictionary : Dict[str, [:class:`pyedb.dotnet.database.edb_data.ports.GapPort`,
|
|
478
|
+
:class:`pyedb.dotnet.database.edb_data.ports.WavePort`,]]
|
|
474
479
|
|
|
475
480
|
"""
|
|
476
481
|
temp = [term for term in self.layout.terminals if not term.is_reference_terminal]
|
|
@@ -765,7 +770,7 @@ class Edb(Database):
|
|
|
765
770
|
|
|
766
771
|
Returns
|
|
767
772
|
-------
|
|
768
|
-
Instance of :class:`pyedb.dotnet.
|
|
773
|
+
Instance of :class:`pyedb.dotnet.database.Components.Components`
|
|
769
774
|
|
|
770
775
|
Examples
|
|
771
776
|
--------
|
|
@@ -782,7 +787,7 @@ class Edb(Database):
|
|
|
782
787
|
|
|
783
788
|
Returns
|
|
784
789
|
-------
|
|
785
|
-
Instance of :class:`pyedb.dotnet.
|
|
790
|
+
Instance of :class:`pyedb.dotnet.database.components.Components`
|
|
786
791
|
|
|
787
792
|
Examples
|
|
788
793
|
--------
|
|
@@ -815,7 +820,7 @@ class Edb(Database):
|
|
|
815
820
|
|
|
816
821
|
Returns
|
|
817
822
|
-------
|
|
818
|
-
Instance of :class:`pyedb.dotnet.
|
|
823
|
+
Instance of :class:`pyedb.dotnet.database.edb_data.design_options.EdbDesignOptions`
|
|
819
824
|
"""
|
|
820
825
|
return EdbDesignOptions(self.active_cell)
|
|
821
826
|
|
|
@@ -825,7 +830,7 @@ class Edb(Database):
|
|
|
825
830
|
|
|
826
831
|
Returns
|
|
827
832
|
-------
|
|
828
|
-
Instance of :class: 'pyedb.dotnet.
|
|
833
|
+
Instance of :class: 'pyedb.dotnet.database.Stackup`
|
|
829
834
|
|
|
830
835
|
Examples
|
|
831
836
|
--------
|
|
@@ -843,7 +848,7 @@ class Edb(Database):
|
|
|
843
848
|
|
|
844
849
|
Returns
|
|
845
850
|
-------
|
|
846
|
-
Instance of :class: `pyedb.dotnet.
|
|
851
|
+
Instance of :class: `pyedb.dotnet.database.Materials`
|
|
847
852
|
|
|
848
853
|
Examples
|
|
849
854
|
--------
|
|
@@ -867,7 +872,7 @@ class Edb(Database):
|
|
|
867
872
|
|
|
868
873
|
Returns
|
|
869
874
|
-------
|
|
870
|
-
Instance of :class: `pyedb.dotnet.
|
|
875
|
+
Instance of :class: `pyedb.dotnet.database.padstack.EdbPadstack`
|
|
871
876
|
|
|
872
877
|
Examples
|
|
873
878
|
--------
|
|
@@ -889,7 +894,7 @@ class Edb(Database):
|
|
|
889
894
|
|
|
890
895
|
Returns
|
|
891
896
|
-------
|
|
892
|
-
Instance of :class: `legacy.
|
|
897
|
+
Instance of :class: `legacy.database.padstack.EdbPadstack`
|
|
893
898
|
|
|
894
899
|
Examples
|
|
895
900
|
--------
|
|
@@ -914,7 +919,7 @@ class Edb(Database):
|
|
|
914
919
|
|
|
915
920
|
Returns
|
|
916
921
|
-------
|
|
917
|
-
Instance of :class: `pyedb.dotnet.
|
|
922
|
+
Instance of :class: `pyedb.dotnet.database.siwave.EdbSiwave`
|
|
918
923
|
|
|
919
924
|
Examples
|
|
920
925
|
--------
|
|
@@ -931,7 +936,7 @@ class Edb(Database):
|
|
|
931
936
|
|
|
932
937
|
Returns
|
|
933
938
|
-------
|
|
934
|
-
Instance of :class: `pyedb.dotnet.
|
|
939
|
+
Instance of :class: `pyedb.dotnet.database.siwave.EdbSiwave`
|
|
935
940
|
|
|
936
941
|
Examples
|
|
937
942
|
--------
|
|
@@ -952,7 +957,7 @@ class Edb(Database):
|
|
|
952
957
|
|
|
953
958
|
Returns
|
|
954
959
|
-------
|
|
955
|
-
Instance of :class:`legacy.
|
|
960
|
+
Instance of :class:`legacy.database.hfss.EdbHfss`
|
|
956
961
|
|
|
957
962
|
Examples
|
|
958
963
|
--------
|
|
@@ -969,11 +974,11 @@ class Edb(Database):
|
|
|
969
974
|
|
|
970
975
|
Returns
|
|
971
976
|
-------
|
|
972
|
-
:class:`pyedb.dotnet.
|
|
977
|
+
:class:`pyedb.dotnet.database.hfss.EdbHfss`
|
|
973
978
|
|
|
974
979
|
See Also
|
|
975
980
|
--------
|
|
976
|
-
:class:`legacy.
|
|
981
|
+
:class:`legacy.database.edb_data.simulation_configuration.SimulationConfiguration`
|
|
977
982
|
|
|
978
983
|
Examples
|
|
979
984
|
--------
|
|
@@ -996,7 +1001,7 @@ class Edb(Database):
|
|
|
996
1001
|
|
|
997
1002
|
Returns
|
|
998
1003
|
-------
|
|
999
|
-
:class:`pyedb.dotnet.
|
|
1004
|
+
:class:`pyedb.dotnet.database.nets.EdbNets`
|
|
1000
1005
|
|
|
1001
1006
|
Examples
|
|
1002
1007
|
--------
|
|
@@ -1014,7 +1019,7 @@ class Edb(Database):
|
|
|
1014
1019
|
|
|
1015
1020
|
Returns
|
|
1016
1021
|
-------
|
|
1017
|
-
:class:`legacy.
|
|
1022
|
+
:class:`legacy.database.nets.EdbNets`
|
|
1018
1023
|
|
|
1019
1024
|
Examples
|
|
1020
1025
|
--------
|
|
@@ -1035,7 +1040,7 @@ class Edb(Database):
|
|
|
1035
1040
|
|
|
1036
1041
|
Returns
|
|
1037
1042
|
-------
|
|
1038
|
-
:class:`legacy.
|
|
1043
|
+
:class:`legacy.database.nets.EdbNetClasses`
|
|
1039
1044
|
|
|
1040
1045
|
Examples
|
|
1041
1046
|
--------
|
|
@@ -1053,7 +1058,7 @@ class Edb(Database):
|
|
|
1053
1058
|
|
|
1054
1059
|
Returns
|
|
1055
1060
|
-------
|
|
1056
|
-
:class:`legacy.
|
|
1061
|
+
:class:`legacy.database.nets.EdbExtendedNets`
|
|
1057
1062
|
|
|
1058
1063
|
Examples
|
|
1059
1064
|
--------
|
|
@@ -1071,7 +1076,7 @@ class Edb(Database):
|
|
|
1071
1076
|
|
|
1072
1077
|
Returns
|
|
1073
1078
|
-------
|
|
1074
|
-
:class:`legacy.
|
|
1079
|
+
:class:`legacy.database.nets.EdbDifferentialPairs`
|
|
1075
1080
|
|
|
1076
1081
|
Examples
|
|
1077
1082
|
--------
|
|
@@ -1093,7 +1098,7 @@ class Edb(Database):
|
|
|
1093
1098
|
|
|
1094
1099
|
Returns
|
|
1095
1100
|
-------
|
|
1096
|
-
Instance of :class: `legacy.
|
|
1101
|
+
Instance of :class: `legacy.database.layout.EdbLayout`
|
|
1097
1102
|
|
|
1098
1103
|
Examples
|
|
1099
1104
|
--------
|
|
@@ -1110,7 +1115,7 @@ class Edb(Database):
|
|
|
1110
1115
|
|
|
1111
1116
|
Returns
|
|
1112
1117
|
-------
|
|
1113
|
-
Instance of :class: `legacy.
|
|
1118
|
+
Instance of :class: `legacy.database.layout.EdbLayout`
|
|
1114
1119
|
|
|
1115
1120
|
Examples
|
|
1116
1121
|
--------
|
|
@@ -1128,7 +1133,7 @@ class Edb(Database):
|
|
|
1128
1133
|
|
|
1129
1134
|
Returns
|
|
1130
1135
|
-------
|
|
1131
|
-
:class:`legacy.
|
|
1136
|
+
:class:`legacy.database.dotnet.layout.Layout`
|
|
1132
1137
|
"""
|
|
1133
1138
|
return Layout(self, self._active_cell.GetLayout())
|
|
1134
1139
|
|
|
@@ -1163,7 +1168,7 @@ class Edb(Database):
|
|
|
1163
1168
|
):
|
|
1164
1169
|
obj_type = i.GetObjType().ToString()
|
|
1165
1170
|
if obj_type == LayoutObjType.PadstackInstance.name:
|
|
1166
|
-
from pyedb.dotnet.
|
|
1171
|
+
from pyedb.dotnet.database.edb_data.padstacks_data import (
|
|
1167
1172
|
EDBPadstackInstance,
|
|
1168
1173
|
)
|
|
1169
1174
|
|
|
@@ -1171,21 +1176,21 @@ class Edb(Database):
|
|
|
1171
1176
|
elif obj_type == LayoutObjType.Primitive.name:
|
|
1172
1177
|
prim_type = i.GetPrimitiveType().ToString()
|
|
1173
1178
|
if prim_type == Primitives.Path.name:
|
|
1174
|
-
from pyedb.dotnet.
|
|
1179
|
+
from pyedb.dotnet.database.cell.primitive.path import Path
|
|
1175
1180
|
|
|
1176
1181
|
temp.append(Path(self, i))
|
|
1177
1182
|
elif prim_type == Primitives.Rectangle.name:
|
|
1178
|
-
from pyedb.dotnet.
|
|
1183
|
+
from pyedb.dotnet.database.edb_data.primitives_data import (
|
|
1179
1184
|
EdbRectangle,
|
|
1180
1185
|
)
|
|
1181
1186
|
|
|
1182
1187
|
temp.append(EdbRectangle(i, self))
|
|
1183
1188
|
elif prim_type == Primitives.Circle.name:
|
|
1184
|
-
from pyedb.dotnet.
|
|
1189
|
+
from pyedb.dotnet.database.edb_data.primitives_data import EdbCircle
|
|
1185
1190
|
|
|
1186
1191
|
temp.append(EdbCircle(i, self))
|
|
1187
1192
|
elif prim_type == Primitives.Polygon.name:
|
|
1188
|
-
from pyedb.dotnet.
|
|
1193
|
+
from pyedb.dotnet.database.edb_data.primitives_data import (
|
|
1189
1194
|
EdbPolygon,
|
|
1190
1195
|
)
|
|
1191
1196
|
|
|
@@ -1205,7 +1210,7 @@ class Edb(Database):
|
|
|
1205
1210
|
|
|
1206
1211
|
Returns
|
|
1207
1212
|
-------
|
|
1208
|
-
dic[str, :class:`legacy.
|
|
1213
|
+
dic[str, :class:`legacy.database.edb_data.definitions.EDBPadstackInstance`]
|
|
1209
1214
|
Dictionary of EDBPadstackInstance Components.
|
|
1210
1215
|
|
|
1211
1216
|
|
|
@@ -3178,7 +3183,7 @@ class Edb(Database):
|
|
|
3178
3183
|
|
|
3179
3184
|
Returns
|
|
3180
3185
|
-------
|
|
3181
|
-
:class:`pyedb.dotnet.
|
|
3186
|
+
:class:`pyedb.dotnet.database.edb_data.edbvalue.EdbValue`
|
|
3182
3187
|
"""
|
|
3183
3188
|
var_server = self.variable_exists(variable_name)
|
|
3184
3189
|
if var_server[0]:
|
|
@@ -3322,7 +3327,7 @@ class Edb(Database):
|
|
|
3322
3327
|
|
|
3323
3328
|
Parameters
|
|
3324
3329
|
----------
|
|
3325
|
-
simulation_setup : :class:`pyedb.dotnet.
|
|
3330
|
+
simulation_setup : :class:`pyedb.dotnet.database.edb_data.simulation_configuration.SimulationConfiguration`.
|
|
3326
3331
|
SimulationConfiguration object that can be instantiated or directly loaded with a
|
|
3327
3332
|
configuration file.
|
|
3328
3333
|
|
|
@@ -3335,7 +3340,7 @@ class Edb(Database):
|
|
|
3335
3340
|
--------
|
|
3336
3341
|
|
|
3337
3342
|
>>> from pyedb import Edb
|
|
3338
|
-
>>> from pyedb.dotnet.
|
|
3343
|
+
>>> from pyedb.dotnet.database.edb_data.simulation_configuration import SimulationConfiguration
|
|
3339
3344
|
>>> config_file = path_configuration_file
|
|
3340
3345
|
>>> source_file = path_to_edb_folder
|
|
3341
3346
|
>>> edb = Edb(source_file)
|
|
@@ -3608,7 +3613,7 @@ class Edb(Database):
|
|
|
3608
3613
|
|
|
3609
3614
|
Returns
|
|
3610
3615
|
-------
|
|
3611
|
-
:class:`legacy.
|
|
3616
|
+
:class:`legacy.database.edb_data.simulation_configuration.SimulationConfiguration`
|
|
3612
3617
|
"""
|
|
3613
3618
|
return SimulationConfiguration(filename, self)
|
|
3614
3619
|
|
|
@@ -3618,9 +3623,9 @@ class Edb(Database):
|
|
|
3618
3623
|
|
|
3619
3624
|
Returns
|
|
3620
3625
|
-------
|
|
3621
|
-
Dict[str, :class:`legacy.
|
|
3622
|
-
Dict[str, :class:`legacy.
|
|
3623
|
-
Dict[str, :class:`legacy.
|
|
3626
|
+
Dict[str, :class:`legacy.database.edb_data.hfss_simulation_setup_data.HfssSimulationSetup`] or
|
|
3627
|
+
Dict[str, :class:`legacy.database.edb_data.siwave_simulation_setup_data.SiwaveDCSimulationSetup`] or
|
|
3628
|
+
Dict[str, :class:`legacy.database.edb_data.siwave_simulation_setup_data.SiwaveSYZSimulationSetup`]
|
|
3624
3629
|
|
|
3625
3630
|
"""
|
|
3626
3631
|
setups = {}
|
|
@@ -3643,7 +3648,7 @@ class Edb(Database):
|
|
|
3643
3648
|
|
|
3644
3649
|
Returns
|
|
3645
3650
|
-------
|
|
3646
|
-
Dict[str, :class:`legacy.
|
|
3651
|
+
Dict[str, :class:`legacy.database.edb_data.hfss_simulation_setup_data.HfssSimulationSetup`]
|
|
3647
3652
|
|
|
3648
3653
|
"""
|
|
3649
3654
|
return {name: i for name, i in self.setups.items() if i.setup_type == "kHFSS"}
|
|
@@ -3654,7 +3659,7 @@ class Edb(Database):
|
|
|
3654
3659
|
|
|
3655
3660
|
Returns
|
|
3656
3661
|
-------
|
|
3657
|
-
Dict[str, :class:`legacy.
|
|
3662
|
+
Dict[str, :class:`legacy.database.edb_data.siwave_simulation_setup_data.SiwaveDCSimulationSetup`]
|
|
3658
3663
|
"""
|
|
3659
3664
|
return {name: i for name, i in self.setups.items() if isinstance(i, SiwaveDCSimulationSetup)}
|
|
3660
3665
|
|
|
@@ -3664,7 +3669,7 @@ class Edb(Database):
|
|
|
3664
3669
|
|
|
3665
3670
|
Returns
|
|
3666
3671
|
-------
|
|
3667
|
-
Dict[str, :class:`legacy.
|
|
3672
|
+
Dict[str, :class:`legacy.database.edb_data.siwave_simulation_setup_data.SiwaveSYZSimulationSetup`]
|
|
3668
3673
|
"""
|
|
3669
3674
|
return {name: i for name, i in self.setups.items() if isinstance(i, SiwaveSimulationSetup)}
|
|
3670
3675
|
|
|
@@ -3678,7 +3683,7 @@ class Edb(Database):
|
|
|
3678
3683
|
|
|
3679
3684
|
Returns
|
|
3680
3685
|
-------
|
|
3681
|
-
:class:`legacy.
|
|
3686
|
+
:class:`legacy.database.edb_data.hfss_simulation_setup_data.HfssSimulationSetup`
|
|
3682
3687
|
|
|
3683
3688
|
Examples
|
|
3684
3689
|
--------
|
|
@@ -3706,7 +3711,7 @@ class Edb(Database):
|
|
|
3706
3711
|
|
|
3707
3712
|
Returns
|
|
3708
3713
|
-------
|
|
3709
|
-
:class:`legacy.
|
|
3714
|
+
:class:`legacy.database.edb_data.raptor_x_simulation_setup_data.RaptorXSimulationSetup`
|
|
3710
3715
|
|
|
3711
3716
|
"""
|
|
3712
3717
|
if name in self.setups:
|
|
@@ -3730,7 +3735,7 @@ class Edb(Database):
|
|
|
3730
3735
|
|
|
3731
3736
|
Returns
|
|
3732
3737
|
-------
|
|
3733
|
-
:class:`legacy.
|
|
3738
|
+
:class:`legacy.database.edb_data.hfss_pi_simulation_setup_data.HFSSPISimulationSetup when succeeded, ``False``
|
|
3734
3739
|
when failed.
|
|
3735
3740
|
|
|
3736
3741
|
"""
|
|
@@ -3753,7 +3758,7 @@ class Edb(Database):
|
|
|
3753
3758
|
|
|
3754
3759
|
Returns
|
|
3755
3760
|
-------
|
|
3756
|
-
:class:`pyedb.dotnet.
|
|
3761
|
+
:class:`pyedb.dotnet.database.edb_data.siwave_simulation_setup_data.SiwaveSYZSimulationSetup`
|
|
3757
3762
|
|
|
3758
3763
|
Examples
|
|
3759
3764
|
--------
|
|
@@ -3785,7 +3790,7 @@ class Edb(Database):
|
|
|
3785
3790
|
|
|
3786
3791
|
Returns
|
|
3787
3792
|
-------
|
|
3788
|
-
:class:`legacy.
|
|
3793
|
+
:class:`legacy.database.edb_data.siwave_simulation_setup_data.SiwaveSYZSimulationSetup`
|
|
3789
3794
|
|
|
3790
3795
|
Examples
|
|
3791
3796
|
--------
|
|
@@ -4022,15 +4027,15 @@ class Edb(Database):
|
|
|
4022
4027
|
|
|
4023
4028
|
Parameters
|
|
4024
4029
|
----------
|
|
4025
|
-
terminal : class:`pyedb.dotnet.
|
|
4026
|
-
class:`pyedb.dotnet.
|
|
4027
|
-
class:`pyedb.dotnet.
|
|
4028
|
-
class:`pyedb.dotnet.
|
|
4030
|
+
terminal : class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`,
|
|
4031
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4032
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`,
|
|
4033
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`,
|
|
4029
4034
|
Positive terminal of the port.
|
|
4030
|
-
ref_terminal : class:`pyedb.dotnet.
|
|
4031
|
-
class:`pyedb.dotnet.
|
|
4032
|
-
class:`pyedb.dotnet.
|
|
4033
|
-
class:`pyedb.dotnet.
|
|
4035
|
+
ref_terminal : class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`,
|
|
4036
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4037
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`,
|
|
4038
|
+
class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`,
|
|
4034
4039
|
optional
|
|
4035
4040
|
Negative terminal of the port.
|
|
4036
4041
|
is_circuit_port : bool, optional
|
|
@@ -4039,8 +4044,8 @@ class Edb(Database):
|
|
|
4039
4044
|
Name of the created port. The default is None, a random name is generated.
|
|
4040
4045
|
Returns
|
|
4041
4046
|
-------
|
|
4042
|
-
list: [:class:`pyedb.dotnet.
|
|
4043
|
-
:class:`pyedb.dotnet.
|
|
4047
|
+
list: [:class:`pyedb.dotnet.database.edb_data.ports.GapPort`,
|
|
4048
|
+
:class:`pyedb.dotnet.database.edb_data.ports.WavePort`,].
|
|
4044
4049
|
"""
|
|
4045
4050
|
|
|
4046
4051
|
terminal.boundary_type = "PortBoundary"
|
|
@@ -4058,20 +4063,20 @@ class Edb(Database):
|
|
|
4058
4063
|
|
|
4059
4064
|
Parameters
|
|
4060
4065
|
----------
|
|
4061
|
-
terminal : :class:`pyedb.dotnet.
|
|
4062
|
-
:class:`pyedb.dotnet.
|
|
4063
|
-
:class:`pyedb.dotnet.
|
|
4064
|
-
:class:`pyedb.dotnet.
|
|
4066
|
+
terminal : :class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`,
|
|
4067
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4068
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`,
|
|
4069
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`,
|
|
4065
4070
|
Positive terminal of the port.
|
|
4066
|
-
ref_terminal : :class:`pyedb.dotnet.
|
|
4067
|
-
:class:`pyedb.dotnet.
|
|
4068
|
-
:class:`pyedb.dotnet.
|
|
4069
|
-
:class:`pyedb.dotnet.
|
|
4071
|
+
ref_terminal : :class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`,
|
|
4072
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4073
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`,
|
|
4074
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`,
|
|
4070
4075
|
Negative terminal of the probe.
|
|
4071
4076
|
|
|
4072
4077
|
Returns
|
|
4073
4078
|
-------
|
|
4074
|
-
pyedb.dotnet.
|
|
4079
|
+
pyedb.dotnet.database.edb_data.terminals.Terminal
|
|
4075
4080
|
"""
|
|
4076
4081
|
term = Terminal(self, terminal._edb_object)
|
|
4077
4082
|
term.boundary_type = "kVoltageProbe"
|
|
@@ -4087,26 +4092,26 @@ class Edb(Database):
|
|
|
4087
4092
|
|
|
4088
4093
|
Parameters
|
|
4089
4094
|
----------
|
|
4090
|
-
terminal : :class:`pyedb.dotnet.
|
|
4091
|
-
:class:`pyedb.dotnet.
|
|
4092
|
-
:class:`pyedb.dotnet.
|
|
4093
|
-
:class:`pyedb.dotnet.
|
|
4095
|
+
terminal : :class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`, \
|
|
4096
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`, \
|
|
4097
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`, \
|
|
4098
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`
|
|
4094
4099
|
Positive terminal of the port.
|
|
4095
|
-
ref_terminal : class:`pyedb.dotnet.
|
|
4096
|
-
:class:`pyedb.dotnet.
|
|
4097
|
-
:class:`pyedb.dotnet.
|
|
4098
|
-
:class:`pyedb.dotnet.
|
|
4100
|
+
ref_terminal : class:`pyedb.dotnet.database.edb_data.terminals.EdgeTerminal`, \
|
|
4101
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PadstackInstanceTerminal`, \
|
|
4102
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`, \
|
|
4103
|
+
:class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`
|
|
4099
4104
|
Negative terminal of the source.
|
|
4100
4105
|
|
|
4101
4106
|
Returns
|
|
4102
4107
|
-------
|
|
4103
|
-
class:`legacy.
|
|
4108
|
+
class:`legacy.database.edb_data.ports.ExcitationSources`
|
|
4104
4109
|
"""
|
|
4105
4110
|
term = Terminal(self, terminal._edb_object)
|
|
4106
4111
|
term.boundary_type = "kVoltageSource"
|
|
4107
4112
|
|
|
4108
4113
|
ref_term = Terminal(self, ref_terminal._edb_object)
|
|
4109
|
-
ref_term.boundary_type = "
|
|
4114
|
+
ref_term.boundary_type = "kVoltageSource"
|
|
4110
4115
|
|
|
4111
4116
|
term.ref_terminal = ref_terminal
|
|
4112
4117
|
return self.sources[term.name]
|
|
@@ -4116,15 +4121,15 @@ class Edb(Database):
|
|
|
4116
4121
|
|
|
4117
4122
|
Parameters
|
|
4118
4123
|
----------
|
|
4119
|
-
terminal : :class:`legacy.
|
|
4120
|
-
:class:`legacy.
|
|
4121
|
-
:class:`legacy.
|
|
4122
|
-
:class:`legacy.
|
|
4124
|
+
terminal : :class:`legacy.database.edb_data.terminals.EdgeTerminal`,
|
|
4125
|
+
:class:`legacy.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4126
|
+
:class:`legacy.database.edb_data.terminals.PointTerminal`,
|
|
4127
|
+
:class:`legacy.database.edb_data.terminals.PinGroupTerminal`,
|
|
4123
4128
|
Positive terminal of the port.
|
|
4124
|
-
ref_terminal : class:`legacy.
|
|
4125
|
-
:class:`legacy.
|
|
4126
|
-
:class:`legacy.
|
|
4127
|
-
:class:`legacy.
|
|
4129
|
+
ref_terminal : class:`legacy.database.edb_data.terminals.EdgeTerminal`,
|
|
4130
|
+
:class:`legacy.database.edb_data.terminals.PadstackInstanceTerminal`,
|
|
4131
|
+
:class:`legacy.database.edb_data.terminals.PointTerminal`,
|
|
4132
|
+
:class:`legacy.database.edb_data.terminals.PinGroupTerminal`,
|
|
4128
4133
|
Negative terminal of the source.
|
|
4129
4134
|
|
|
4130
4135
|
Returns
|
|
@@ -4158,7 +4163,7 @@ class Edb(Database):
|
|
|
4158
4163
|
-------
|
|
4159
4164
|
:class:`legacy.edb_core.edb_data.terminals.PointTerminal`
|
|
4160
4165
|
"""
|
|
4161
|
-
from pyedb.dotnet.
|
|
4166
|
+
from pyedb.dotnet.database.cell.terminal.point_terminal import PointTerminal
|
|
4162
4167
|
|
|
4163
4168
|
point_terminal = PointTerminal(self)
|
|
4164
4169
|
return point_terminal.create(name, net_name, location, layer)
|
|
@@ -4605,7 +4610,7 @@ class Edb(Database):
|
|
|
4605
4610
|
@property
|
|
4606
4611
|
def definitions(self):
|
|
4607
4612
|
"""Definitions class."""
|
|
4608
|
-
from pyedb.dotnet.
|
|
4613
|
+
from pyedb.dotnet.database.definition.definitions import Definitions
|
|
4609
4614
|
|
|
4610
4615
|
return Definitions(self)
|
|
4611
4616
|
|