pyedb 0.25.0__tar.gz → 0.26.0__tar.gz
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-0.25.0 → pyedb-0.26.0}/PKG-INFO +4 -4
- {pyedb-0.25.0 → pyedb-0.26.0}/pyproject.toml +3 -3
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/__init__.py +1 -1
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/primitive/primitive.py +5 -2
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py +7 -2
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/pingroup_terminal.py +7 -1
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/point_terminal.py +7 -1
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/layer_data.py +7 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/stackup.py +12 -6
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/siwave.py +18 -4
- {pyedb-0.25.0 → pyedb-0.26.0}/LICENSE +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/README.md +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/component_libraries/ansys_components.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_boundaries.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_common.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_components.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_general.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_nets.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_operations.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_package_definition.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_padstacks.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_pin_groups.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_ports_sources.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_s_parameter_models.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_setup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_spice_models.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/cfg_stackup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/configuration/configuration.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/application/Variables.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/application/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/clr_module.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/connectable.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/component.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/hierarchy_obj.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/netlist_model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/pin_pair_model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/s_parameter_model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/spice_model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/layout.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/layout_obj.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/primitive/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/primitive/bondwire.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/primitive/path.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/bundle_terminal.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/edge_terminal.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/terminal.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/voltage_regulator.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/components.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/component_def.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/component_model.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/definition_obj.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/definitions.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/definition/package_def.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/dotnet/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/dotnet/database.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/dotnet/primitive.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/control_file.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/design_options.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/edbvalue.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/nets_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/padstacks_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/ports.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/primitives_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/simulation_configuration.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/sources.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/utilities.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/variables.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/general.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/geometry/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/geometry/point_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/geometry/polygon_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/hfss.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/layout_obj_instance.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/layout_validation.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/materials.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/modeler.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/net_class.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/nets.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/padstack.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/adaptive_frequency_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/settings.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/io/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/siwave.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/heatsink.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/obj_base.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/simulation_setup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/edb_logger.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/exceptions.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/constants.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/data_handlers.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/design_types.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/filesystem.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/general_methods.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/plot.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/process.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/generic/settings.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/bom/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/bom/bom.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/bom/bom_item.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/bom/characteristics.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/bom/refdes.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/color.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/content.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/dictionary_color.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/dictionary_fill.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/dictionary_line.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/entry_color.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/entry_line.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/fill.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/layer_ref.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/component.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/drill.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/feature.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/layer.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/outline.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/package.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/path.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/pin.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/polygon.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/profile.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/stackup.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_data/step.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/cad_header.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/ecad.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ecad/spec.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/history_record.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/ipc2581.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/ipc2581/logistic_header.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/aedtlib_personalib_install.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/downloads.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/misc.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/net.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/pins.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/utilities.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/modeler/geometry_operators.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/siwave_core/icepak.py +0 -0
- {pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/workflow.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.26.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,7 +15,7 @@ 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
|
-
Requires-Dist: cffi>=1.16.0,<1.
|
|
18
|
+
Requires-Dist: cffi>=1.16.0,<1.18; platform_system=='Linux'
|
|
19
19
|
Requires-Dist: pywin32 >= 303;platform_system=='Windows'
|
|
20
20
|
Requires-Dist: ansys-pythonnet >= 3.1.0rc3
|
|
21
21
|
Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
|
|
@@ -26,14 +26,14 @@ Requires-Dist: Rtree >= 1.2.0
|
|
|
26
26
|
Requires-Dist: toml == 0.10.2
|
|
27
27
|
Requires-Dist: scikit-rf
|
|
28
28
|
Requires-Dist: ansys-sphinx-theme>=0.10.0,<1.1 ; extra == "doc"
|
|
29
|
-
Requires-Dist: imageio>=2.30.0,<2.
|
|
29
|
+
Requires-Dist: imageio>=2.30.0,<2.36 ; extra == "doc"
|
|
30
30
|
Requires-Dist: ipython>=8.13.0,<8.27 ; extra == "doc"
|
|
31
31
|
Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
|
|
32
32
|
Requires-Dist: jupytext>=1.16.0,<1.17 ; extra == "doc"
|
|
33
33
|
Requires-Dist: matplotlib>=3.5.0,<3.10 ; extra == "doc"
|
|
34
34
|
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
35
35
|
Requires-Dist: nbconvert < 7.17 ; extra == "doc"
|
|
36
|
-
Requires-Dist: numpydoc>=1.5.0,<1.
|
|
36
|
+
Requires-Dist: numpydoc>=1.5.0,<1.9 ; extra == "doc"
|
|
37
37
|
Requires-Dist: pypandoc>=1.10.0,<1.14 ; extra == "doc"
|
|
38
38
|
Requires-Dist: recommonmark ; extra == "doc"
|
|
39
39
|
Requires-Dist: Sphinx>=7.1.0,<8.1 ; extra == "doc"
|
|
@@ -25,7 +25,7 @@ classifiers = [
|
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
dependencies = [
|
|
28
|
-
"cffi>=1.16.0,<1.
|
|
28
|
+
"cffi>=1.16.0,<1.18; platform_system=='Linux'",
|
|
29
29
|
"pywin32 >= 303;platform_system=='Windows'",
|
|
30
30
|
"ansys-pythonnet >= 3.1.0rc3",
|
|
31
31
|
"dotnetcore2 ==3.1.23;platform_system=='Linux'",
|
|
@@ -48,14 +48,14 @@ tests = [
|
|
|
48
48
|
]
|
|
49
49
|
doc = [
|
|
50
50
|
"ansys-sphinx-theme>=0.10.0,<1.1",
|
|
51
|
-
"imageio>=2.30.0,<2.
|
|
51
|
+
"imageio>=2.30.0,<2.36",
|
|
52
52
|
"ipython>=8.13.0,<8.27",
|
|
53
53
|
"jupyterlab>=4.0.0,<4.3",
|
|
54
54
|
"jupytext>=1.16.0,<1.17",
|
|
55
55
|
"matplotlib>=3.5.0,<3.10",
|
|
56
56
|
"nbsphinx>=0.9.0,<0.10",
|
|
57
57
|
"nbconvert < 7.17",
|
|
58
|
-
"numpydoc>=1.5.0,<1.
|
|
58
|
+
"numpydoc>=1.5.0,<1.9",
|
|
59
59
|
"pypandoc>=1.10.0,<1.14",
|
|
60
60
|
# NOTE: Remove recommonmark once examples are reworked.
|
|
61
61
|
"recommonmark",
|
|
@@ -113,8 +113,11 @@ class Primitive(Connectable):
|
|
|
113
113
|
@property
|
|
114
114
|
def layer(self):
|
|
115
115
|
"""Get the primitive edb layer object."""
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
obj = self._edb_object.GetLayer()
|
|
117
|
+
if obj.IsNull():
|
|
118
|
+
return None
|
|
119
|
+
else:
|
|
120
|
+
return self._pedb.stackup.find_layer_by_name(obj.GetName())
|
|
118
121
|
|
|
119
122
|
@property
|
|
120
123
|
def layer_name(self):
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py
RENAMED
|
@@ -84,8 +84,13 @@ class PadstackInstanceTerminal(Terminal):
|
|
|
84
84
|
isRef=is_ref,
|
|
85
85
|
)
|
|
86
86
|
terminal = PadstackInstanceTerminal(self._pedb, terminal)
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
if terminal.is_null:
|
|
88
|
+
msg = f"Failed to create terminal. "
|
|
89
|
+
if name in self._pedb.terminals:
|
|
90
|
+
msg += f"Terminal {name} already exists."
|
|
91
|
+
raise Exception(msg)
|
|
92
|
+
else:
|
|
93
|
+
return terminal
|
|
89
94
|
|
|
90
95
|
def _get_parameters(self):
|
|
91
96
|
"""Gets the parameters of the padstack instance terminal."""
|
|
@@ -56,7 +56,13 @@ class PinGroupTerminal(Terminal):
|
|
|
56
56
|
is_ref,
|
|
57
57
|
)
|
|
58
58
|
term = PinGroupTerminal(self._pedb, term)
|
|
59
|
-
|
|
59
|
+
if term.is_null:
|
|
60
|
+
msg = f"Failed to create terminal. "
|
|
61
|
+
if name in self._pedb.terminals:
|
|
62
|
+
msg += f"Terminal {name} already exists."
|
|
63
|
+
raise Exception(msg)
|
|
64
|
+
else:
|
|
65
|
+
return term
|
|
60
66
|
|
|
61
67
|
def pin_group(self):
|
|
62
68
|
"""Gets the pin group the terminal refers to."""
|
|
@@ -59,4 +59,10 @@ class PointTerminal(Terminal):
|
|
|
59
59
|
is_ref,
|
|
60
60
|
)
|
|
61
61
|
terminal = PointTerminal(self._pedb, terminal)
|
|
62
|
-
|
|
62
|
+
if terminal.is_null:
|
|
63
|
+
msg = f"Failed to create terminal. "
|
|
64
|
+
if name in self._pedb.terminals:
|
|
65
|
+
msg += f"Terminal {name} already exists."
|
|
66
|
+
raise Exception(msg)
|
|
67
|
+
else:
|
|
68
|
+
return terminal
|
|
@@ -23,6 +23,13 @@
|
|
|
23
23
|
from __future__ import absolute_import
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
def layer_cast(pedb, edb_object):
|
|
27
|
+
if edb_object.IsStackupLayer():
|
|
28
|
+
return StackupLayerEdbClass(pedb, edb_object.Clone(), name=edb_object.GetName())
|
|
29
|
+
else:
|
|
30
|
+
return LayerEdbClass(pedb, edb_object.Clone(), name=edb_object.GetName())
|
|
31
|
+
|
|
32
|
+
|
|
26
33
|
class LayerEdbClass(object):
|
|
27
34
|
"""Manages Edb Layers. Replaces EDBLayer."""
|
|
28
35
|
|
|
@@ -36,6 +36,7 @@ import warnings
|
|
|
36
36
|
from pyedb.dotnet.edb_core.edb_data.layer_data import (
|
|
37
37
|
LayerEdbClass,
|
|
38
38
|
StackupLayerEdbClass,
|
|
39
|
+
layer_cast,
|
|
39
40
|
)
|
|
40
41
|
from pyedb.dotnet.edb_core.general import convert_py_list_to_net_list
|
|
41
42
|
from pyedb.generic.general_methods import ET, generate_unique_name
|
|
@@ -284,10 +285,7 @@ class LayerCollection(object):
|
|
|
284
285
|
layer_list = list(self._edb_object.Layers(self._pedb.edb_api.cell.layer_type_set.AllLayerSet))
|
|
285
286
|
temp = dict()
|
|
286
287
|
for i in layer_list:
|
|
287
|
-
|
|
288
|
-
obj = StackupLayerEdbClass(self._pedb, i.Clone(), name=i.GetName())
|
|
289
|
-
else:
|
|
290
|
-
obj = LayerEdbClass(self._pedb, i.Clone(), name=i.GetName())
|
|
288
|
+
obj = layer_cast(self._pedb, i)
|
|
291
289
|
temp[obj.name] = obj
|
|
292
290
|
return temp
|
|
293
291
|
|
|
@@ -306,12 +304,20 @@ class LayerCollection(object):
|
|
|
306
304
|
"""
|
|
307
305
|
return {name: obj for name, obj in self.all_layers.items() if obj.is_stackup_layer}
|
|
308
306
|
|
|
307
|
+
def find_layer_by_name(self, name: str):
|
|
308
|
+
"""Finds a layer with the given name."""
|
|
309
|
+
obj = self._pedb.edb_api.cell._cell.Layer.FindByName(self._edb_object, name)
|
|
310
|
+
if obj.IsNull():
|
|
311
|
+
raise ValueError("Layer with name '{}' was not found.".format(name))
|
|
312
|
+
else:
|
|
313
|
+
return layer_cast(self._pedb, obj.Clone())
|
|
314
|
+
|
|
309
315
|
|
|
310
316
|
class Stackup(LayerCollection):
|
|
311
317
|
"""Manages EDB methods for stackup accessible from `Edb.stackup` property."""
|
|
312
318
|
|
|
313
319
|
def __getitem__(self, item):
|
|
314
|
-
return self.
|
|
320
|
+
return self.find_layer_by_name(item)
|
|
315
321
|
|
|
316
322
|
def __init__(self, pedb, edb_object=None):
|
|
317
323
|
super().__init__(pedb, edb_object)
|
|
@@ -1800,7 +1806,7 @@ class Stackup(LayerCollection):
|
|
|
1800
1806
|
temp_data = {name: 0 for name, _ in self.signal_layers.items()}
|
|
1801
1807
|
outline_area = 0
|
|
1802
1808
|
for i in self._pedb.modeler.primitives:
|
|
1803
|
-
layer_name = i.
|
|
1809
|
+
layer_name = i._edb_object.GetLayer().GetName()
|
|
1804
1810
|
if layer_name.lower() == "outline":
|
|
1805
1811
|
if i.area() > outline_area:
|
|
1806
1812
|
outline_area = i.area()
|
|
@@ -266,6 +266,16 @@ class Siwave(object): # pragma no cover
|
|
|
266
266
|
else:
|
|
267
267
|
return False
|
|
268
268
|
|
|
269
|
+
@property
|
|
270
|
+
def file_dir(self) -> str:
|
|
271
|
+
"""Directory path of the open project."""
|
|
272
|
+
return self.oproject.GetFileDir()
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
def file_path(self) -> str:
|
|
276
|
+
"""Path of the open project file."""
|
|
277
|
+
return self.oproject.GetFilePath()
|
|
278
|
+
|
|
269
279
|
def save_project(self, projectpath=None, projectName=None):
|
|
270
280
|
"""Save the project.
|
|
271
281
|
|
|
@@ -283,7 +293,9 @@ class Siwave(object): # pragma no cover
|
|
|
283
293
|
|
|
284
294
|
"""
|
|
285
295
|
if projectName and projectpath:
|
|
286
|
-
|
|
296
|
+
if not projectName.endswith(".siw"):
|
|
297
|
+
projectName = projectName + ".siw"
|
|
298
|
+
self.oproject.ScrSaveProjectAs(os.path.join(projectpath, projectName))
|
|
287
299
|
else:
|
|
288
300
|
self.oproject.Save()
|
|
289
301
|
return True
|
|
@@ -476,6 +488,7 @@ class Siwave(object): # pragma no cover
|
|
|
476
488
|
if isinstance(file_path, Path):
|
|
477
489
|
file_path = str(file_path)
|
|
478
490
|
flag = self.oproject.ScrImportEDB(file_path)
|
|
491
|
+
# self.save_project(self.di)
|
|
479
492
|
if flag == 0:
|
|
480
493
|
self._logger.info(f"Importing EDB to {file_path}.")
|
|
481
494
|
return True
|
|
@@ -493,11 +506,12 @@ class Siwave(object): # pragma no cover
|
|
|
493
506
|
if isinstance(file_path, Path):
|
|
494
507
|
file_path = str(file_path)
|
|
495
508
|
|
|
496
|
-
temp_folder = tempfile.TemporaryDirectory(suffix=".ansys")
|
|
497
|
-
temp_edb = os.path.join(temp_folder.name, "temp.aedb")
|
|
509
|
+
# temp_folder = tempfile.TemporaryDirectory(suffix=".ansys")
|
|
510
|
+
# temp_edb = os.path.join(temp_folder.name, "temp.aedb")
|
|
511
|
+
|
|
512
|
+
temp_edb = os.path.join(self.file_dir, "temp.aedb")
|
|
498
513
|
|
|
499
514
|
self.export_edb(temp_edb)
|
|
500
|
-
self.save_project()
|
|
501
515
|
self.oproject.ScrCloseProject()
|
|
502
516
|
edbapp = Edb(temp_edb, edbversion=self.current_version)
|
|
503
517
|
edbapp.configuration.load(file_path)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py
RENAMED
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/edb_data/simulation_configuration.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py
RENAMED
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py
RENAMED
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py
RENAMED
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py
RENAMED
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.25.0 → pyedb-0.26.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|