pyedb 0.20.0__tar.gz → 0.21.1__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.20.0 → pyedb-0.21.1}/PKG-INFO +1 -1
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/__init__.py +1 -1
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb.py +157 -100
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/modeler.py +9 -3
- {pyedb-0.20.0 → pyedb-0.21.1}/LICENSE +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/README.md +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/pyproject.toml +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_boundaries.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_common.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_components.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_general.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_nets.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_operations.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_package_definition.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_padstacks.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_pin_groups.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_ports_sources.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_s_parameter_models.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_setup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_spice_models.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/cfg_stackup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/configuration/configuration.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/application/Variables.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/application/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/clr_module.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/connectable.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/component.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/hierarchy_obj.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/netlist_model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/pin_pair_model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/s_parameter_model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/hierarchy/spice_model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/layout.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/layout_obj.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/primitive.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/bundle_terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/edge_terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/pingroup_terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/point_terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/terminal.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/voltage_regulator.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/components.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/component_def.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/component_model.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/definition_obj.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/definitions.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/definition/package_def.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/dotnet/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/dotnet/database.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/dotnet/primitive.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/control_file.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/design_options.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/edbvalue.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/hfss_pi_simulation_setup_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/layer_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/nets_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/padstacks_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/ports.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/primitives_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/simulation_configuration.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/sources.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/utilities.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/variables.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/general.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/geometry/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/geometry/point_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/geometry/polygon_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/hfss.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/layout_obj_instance.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/layout_validation.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/materials.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/net_class.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/nets.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/padstack.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/adaptive_frequency_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/settings.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/siw_dc_ir_settings.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sweep_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/io/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/io/siwave.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/siwave.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/stackup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/heatsink.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/hfss_simulation_setup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/obj_base.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/simulation_setup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/utilities/siwave_simulation_setup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/edb_logger.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/exceptions.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/constants.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/data_handlers.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/design_types.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/filesystem.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/general_methods.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/plot.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/process.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/generic/settings.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/bom/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/bom/bom.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/bom/bom_item.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/bom/characteristics.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/bom/refdes.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/color.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/content.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/dictionary_color.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/dictionary_fill.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/dictionary_line.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/entry_color.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/entry_line.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/fill.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/layer_ref.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/component.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/drill.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/feature.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/layer.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/outline.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/package.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/path.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/pin.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/polygon.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/profile.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/stackup.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_data/step.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/cad_header.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/ecad.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ecad/spec.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/history_record.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/ipc2581.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/ipc2581/logistic_header.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/aedtlib_personalib_install.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/downloads.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/misc.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/net.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/pins.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/utilities.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/modeler/geometry_operators.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/siwave.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/siwave_core/icepak.py +0 -0
- {pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/workflow.py +0 -0
|
@@ -4097,6 +4097,12 @@ class Edb(Database):
|
|
|
4097
4097
|
material_filter=None,
|
|
4098
4098
|
padstack_definition_filter=None,
|
|
4099
4099
|
trace_net_filter=None,
|
|
4100
|
+
use_single_variable_for_padstack_definitions=True,
|
|
4101
|
+
use_relative_variables=True,
|
|
4102
|
+
output_aedb_path=None,
|
|
4103
|
+
open_aedb_at_end=True,
|
|
4104
|
+
expand_polygons_size=0,
|
|
4105
|
+
expand_voids_size=0,
|
|
4100
4106
|
):
|
|
4101
4107
|
"""Assign automatically design and project variables with current values.
|
|
4102
4108
|
|
|
@@ -4122,27 +4128,56 @@ class Edb(Database):
|
|
|
4122
4128
|
Enable padstack definition filter. Default value is ``None``, all padsatcks are parametrized.
|
|
4123
4129
|
trace_net_filter : str, List(str), optional
|
|
4124
4130
|
Enable nets filter for trace width parametrization. Default value is ``None``, all layers are parametrized.
|
|
4131
|
+
use_single_variable_for_padstack_definitions : bool, optional
|
|
4132
|
+
Whether to use a single design variable for each padstack definition or a variable per pad layer.
|
|
4133
|
+
Default value is ``True``.
|
|
4134
|
+
use_relative_variables : bool, optional
|
|
4135
|
+
Whether if use an absolute variable for each trace, padstacks and layers or a delta variable instead.
|
|
4136
|
+
Default value is ``True``.
|
|
4137
|
+
output_aedb_path : str, optional
|
|
4138
|
+
Full path and name for the new AEDB file. If None, then current aedb will be cutout.
|
|
4139
|
+
open_aedb_at_end : bool, optional
|
|
4140
|
+
Whether to open the cutout at the end. The default is ``True``.
|
|
4125
4141
|
|
|
4126
4142
|
Returns
|
|
4127
4143
|
-------
|
|
4128
4144
|
List(str)
|
|
4129
4145
|
List of all parameters name created.
|
|
4130
4146
|
"""
|
|
4147
|
+
edb_original_path = self.edbpath
|
|
4148
|
+
if output_aedb_path:
|
|
4149
|
+
self.save_edb_as(output_aedb_path)
|
|
4150
|
+
if isinstance(trace_net_filter, str):
|
|
4151
|
+
trace_net_filter = [trace_net_filter]
|
|
4131
4152
|
parameters = []
|
|
4153
|
+
|
|
4154
|
+
def _apply_variable(orig_name, orig_value):
|
|
4155
|
+
if use_relative_variables:
|
|
4156
|
+
var = f"{orig_name}_delta"
|
|
4157
|
+
else:
|
|
4158
|
+
var = f"{orig_name}_value"
|
|
4159
|
+
var = self._clean_string_for_variable_name(var)
|
|
4160
|
+
if var not in self.variables:
|
|
4161
|
+
if use_relative_variables:
|
|
4162
|
+
self.add_design_variable(var, 0.0)
|
|
4163
|
+
else:
|
|
4164
|
+
self.add_design_variable(var, orig_value)
|
|
4165
|
+
if use_relative_variables:
|
|
4166
|
+
return f"{orig_value}+{var}", var
|
|
4167
|
+
else:
|
|
4168
|
+
return var, var
|
|
4169
|
+
|
|
4132
4170
|
if layers:
|
|
4133
4171
|
if not layer_filter:
|
|
4134
|
-
_layers = self.stackup.
|
|
4172
|
+
_layers = self.stackup.layers
|
|
4135
4173
|
else:
|
|
4136
4174
|
if isinstance(layer_filter, str):
|
|
4137
4175
|
layer_filter = [layer_filter]
|
|
4138
|
-
_layers = {k: v for k, v in self.stackup.
|
|
4176
|
+
_layers = {k: v for k, v in self.stackup.layers.items() if k in layer_filter}
|
|
4139
4177
|
for layer_name, layer in _layers.items():
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
self.add_design_variable(thickness_variable, layer.thickness)
|
|
4144
|
-
layer.thickness = thickness_variable
|
|
4145
|
-
parameters.append(thickness_variable)
|
|
4178
|
+
var, val = _apply_variable(f"${layer_name}", layer.thickness)
|
|
4179
|
+
layer.thickness = var
|
|
4180
|
+
parameters.append(val)
|
|
4146
4181
|
if materials:
|
|
4147
4182
|
if not material_filter:
|
|
4148
4183
|
_materials = self.materials.materials
|
|
@@ -4150,117 +4185,139 @@ class Edb(Database):
|
|
|
4150
4185
|
_materials = {k: v for k, v in self.materials.materials.items() if k in material_filter}
|
|
4151
4186
|
for mat_name, material in _materials.items():
|
|
4152
4187
|
if material.conductivity < 1e4:
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
material.
|
|
4158
|
-
parameters.append(
|
|
4159
|
-
loss_tg_variable = "$loss_tangent_{}".format(mat_name)
|
|
4160
|
-
loss_tg_variable = self._clean_string_for_variable_name(loss_tg_variable)
|
|
4161
|
-
if not loss_tg_variable in self.variables:
|
|
4162
|
-
self.add_design_variable(loss_tg_variable, material.dielectric_loss_tangent)
|
|
4163
|
-
material.dielectric_loss_tangent = loss_tg_variable
|
|
4164
|
-
parameters.append(loss_tg_variable)
|
|
4188
|
+
var, val = _apply_variable(f"$epsr_{mat_name}", material.permittivity)
|
|
4189
|
+
material.permittivity = var
|
|
4190
|
+
parameters.append(val)
|
|
4191
|
+
var, val = _apply_variable(f"$loss_tangent_{mat_name}", material.dielectric_loss_tangent)
|
|
4192
|
+
material.dielectric_loss_tangent = var
|
|
4193
|
+
parameters.append(val)
|
|
4165
4194
|
else:
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
self.add_design_variable(sigma_variable, material.conductivity)
|
|
4170
|
-
material.conductivity = sigma_variable
|
|
4171
|
-
parameters.append(sigma_variable)
|
|
4195
|
+
var, val = _apply_variable(f"$sigma_{mat_name}", material.conductivity)
|
|
4196
|
+
material.conductivity = var
|
|
4197
|
+
parameters.append(val)
|
|
4172
4198
|
if traces:
|
|
4173
4199
|
if not trace_net_filter:
|
|
4174
4200
|
paths = self.modeler.paths
|
|
4175
4201
|
else:
|
|
4176
4202
|
paths = [path for path in self.modeler.paths if path.net_name in trace_net_filter]
|
|
4177
4203
|
for path in paths:
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4204
|
+
net_name = path.net_name
|
|
4205
|
+
if use_relative_variables:
|
|
4206
|
+
trace_width_variable = "trace"
|
|
4207
|
+
elif net_name:
|
|
4208
|
+
trace_width_variable = f"{path.net_name}_{path.aedt_name}"
|
|
4209
|
+
else:
|
|
4210
|
+
trace_width_variable = f"{path.aedt_name}"
|
|
4211
|
+
var, val = _apply_variable(trace_width_variable, path.width)
|
|
4212
|
+
path.width = var
|
|
4213
|
+
parameters.append(val)
|
|
4184
4214
|
if not padstack_definition_filter:
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4215
|
+
if trace_net_filter:
|
|
4216
|
+
padstack_defs = {}
|
|
4217
|
+
for net in trace_net_filter:
|
|
4218
|
+
for via in self.nets[net].padstack_instances:
|
|
4219
|
+
padstack_defs[via.padstack_definition] = self.padstacks.definitions[via.padstack_definition]
|
|
4220
|
+
else:
|
|
4221
|
+
used_padsatck_defs = list(
|
|
4222
|
+
set(
|
|
4223
|
+
[padstack_inst.padstack_definition for padstack_inst in list(self.padstacks.instances.values())]
|
|
4224
|
+
)
|
|
4225
|
+
)
|
|
4226
|
+
padstack_defs = {k: v for k, v in self.padstacks.definitions.items() if k in used_padsatck_defs}
|
|
4189
4227
|
else:
|
|
4190
4228
|
padstack_defs = {k: v for k, v in self.padstacks.definitions.items() if k in padstack_definition_filter}
|
|
4229
|
+
|
|
4191
4230
|
for def_name, padstack_def in padstack_defs.items():
|
|
4192
4231
|
if not padstack_def.via_start_layer == padstack_def.via_stop_layer:
|
|
4193
4232
|
if via_holes: # pragma no cover
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4233
|
+
if use_relative_variables:
|
|
4234
|
+
hole_variable = "$hole_diameter"
|
|
4235
|
+
else:
|
|
4236
|
+
hole_variable = f"${def_name}_hole_diameter"
|
|
4237
|
+
var, val = _apply_variable(hole_variable, padstack_def.hole_diameter_string)
|
|
4238
|
+
padstack_def.hole_properties = var
|
|
4239
|
+
parameters.append(val)
|
|
4199
4240
|
if pads:
|
|
4200
4241
|
for layer, pad in padstack_def.pad_by_layer.items():
|
|
4201
|
-
if
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4212
|
-
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
pad.parameters = {"Size": pad_size_variable}
|
|
4216
|
-
parameters.append(pad_size_variable)
|
|
4242
|
+
if use_relative_variables:
|
|
4243
|
+
pad_name = "$pad"
|
|
4244
|
+
elif use_single_variable_for_padstack_definitions:
|
|
4245
|
+
pad_name = f"${def_name}_pad"
|
|
4246
|
+
else:
|
|
4247
|
+
pad_name = f"${def_name}_{layer}_pad"
|
|
4248
|
+
|
|
4249
|
+
if pad.geometry_type in [1, 2]:
|
|
4250
|
+
var, val = _apply_variable(pad_name, pad.parameters_values_string[0])
|
|
4251
|
+
if pad.geometry_type == 1:
|
|
4252
|
+
pad.parameters = {"Diameter": var}
|
|
4253
|
+
else:
|
|
4254
|
+
pad.parameters = {"Size": var}
|
|
4255
|
+
parameters.append(val)
|
|
4217
4256
|
elif pad.geometry_type == 3: # pragma no cover
|
|
4218
|
-
|
|
4219
|
-
"$
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
"$
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
|
|
4257
|
+
if use_relative_variables:
|
|
4258
|
+
pad_name_x = "$pad_x"
|
|
4259
|
+
pad_name_y = "$pad_y"
|
|
4260
|
+
elif use_single_variable_for_padstack_definitions:
|
|
4261
|
+
pad_name_x = f"${def_name}_pad_x"
|
|
4262
|
+
pad_name_y = f"${def_name}_pad_y"
|
|
4263
|
+
else:
|
|
4264
|
+
pad_name_x = f"${def_name}_{layer}_pad_x"
|
|
4265
|
+
pad_name_y = f"${def_name}_pad_y"
|
|
4266
|
+
var, val = _apply_variable(pad_name_x, pad.parameters_values_string[0])
|
|
4267
|
+
var2, val2 = _apply_variable(pad_name_y, pad.parameters_values_string[1])
|
|
4268
|
+
|
|
4269
|
+
pad.parameters = {"XSize": var, "YSize": var2}
|
|
4270
|
+
parameters.append(val)
|
|
4271
|
+
parameters.append(val2)
|
|
4230
4272
|
if antipads:
|
|
4231
4273
|
for layer, antipad in padstack_def.antipad_by_layer.items():
|
|
4232
|
-
if
|
|
4233
|
-
|
|
4234
|
-
|
|
4235
|
-
|
|
4236
|
-
|
|
4237
|
-
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
antipad.parameters = {"Size": antipad_size_variable}
|
|
4247
|
-
parameters.append(antipad_size_variable)
|
|
4274
|
+
if use_relative_variables:
|
|
4275
|
+
pad_name = "$antipad"
|
|
4276
|
+
elif use_single_variable_for_padstack_definitions:
|
|
4277
|
+
pad_name = f"${def_name}_antipad"
|
|
4278
|
+
else:
|
|
4279
|
+
pad_name = f"${def_name}_{layer}_antipad"
|
|
4280
|
+
|
|
4281
|
+
if antipad.geometry_type in [1, 2]:
|
|
4282
|
+
var, val = _apply_variable(pad_name, antipad.parameters_values_string[0])
|
|
4283
|
+
if antipad.geometry_type == 1: # pragma no cover
|
|
4284
|
+
antipad.parameters = {"Diameter": var}
|
|
4285
|
+
else:
|
|
4286
|
+
antipad.parameters = {"Size": var}
|
|
4287
|
+
parameters.append(val)
|
|
4248
4288
|
elif antipad.geometry_type == 3: # pragma no cover
|
|
4249
|
-
|
|
4250
|
-
"$
|
|
4251
|
-
|
|
4252
|
-
|
|
4253
|
-
"$
|
|
4254
|
-
|
|
4255
|
-
|
|
4256
|
-
|
|
4257
|
-
|
|
4258
|
-
|
|
4259
|
-
|
|
4260
|
-
|
|
4261
|
-
antipad.parameters = {"XSize":
|
|
4262
|
-
parameters.append(
|
|
4263
|
-
parameters.append(
|
|
4289
|
+
if use_relative_variables:
|
|
4290
|
+
pad_name_x = "$antipad_x"
|
|
4291
|
+
pad_name_y = "$antipad_y"
|
|
4292
|
+
elif use_single_variable_for_padstack_definitions:
|
|
4293
|
+
pad_name_x = f"${def_name}_antipad_x"
|
|
4294
|
+
pad_name_y = f"${def_name}_antipad_y"
|
|
4295
|
+
else:
|
|
4296
|
+
pad_name_x = f"${def_name}_{layer}_antipad_x"
|
|
4297
|
+
pad_name_y = f"${def_name}_antipad_y"
|
|
4298
|
+
|
|
4299
|
+
var, val = _apply_variable(pad_name_x, antipad.parameters_values_string[0])
|
|
4300
|
+
var2, val2 = _apply_variable(pad_name_y, antipad.parameters_values_string[1])
|
|
4301
|
+
antipad.parameters = {"XSize": var, "YSize": var2}
|
|
4302
|
+
parameters.append(val)
|
|
4303
|
+
parameters.append(val2)
|
|
4304
|
+
if expand_polygons_size:
|
|
4305
|
+
for poly in self.modeler.polygons:
|
|
4306
|
+
if not poly.is_void:
|
|
4307
|
+
poly.expand(expand_polygons_size)
|
|
4308
|
+
if expand_voids_size:
|
|
4309
|
+
for poly in self.modeler.polygons:
|
|
4310
|
+
if poly.is_void:
|
|
4311
|
+
poly.expand(expand_voids_size, round_corners=False)
|
|
4312
|
+
elif poly.has_voids:
|
|
4313
|
+
for void in poly.voids:
|
|
4314
|
+
void.expand(expand_voids_size, round_corners=False)
|
|
4315
|
+
|
|
4316
|
+
if not open_aedb_at_end and self.edbpath != edb_original_path:
|
|
4317
|
+
self.save_edb()
|
|
4318
|
+
self.close_edb()
|
|
4319
|
+
self.edbpath = edb_original_path
|
|
4320
|
+
self.open_edb()
|
|
4264
4321
|
return parameters
|
|
4265
4322
|
|
|
4266
4323
|
def _clean_string_for_variable_name(self, variable_name):
|
|
@@ -1424,9 +1424,9 @@ class Modeler(object):
|
|
|
1424
1424
|
def create_pin_group(
|
|
1425
1425
|
self,
|
|
1426
1426
|
name: str,
|
|
1427
|
-
pins_by_id
|
|
1428
|
-
pins_by_aedt_name
|
|
1429
|
-
pins_by_name
|
|
1427
|
+
pins_by_id=None,
|
|
1428
|
+
pins_by_aedt_name=None,
|
|
1429
|
+
pins_by_name=None,
|
|
1430
1430
|
):
|
|
1431
1431
|
"""Create a PinGroup.
|
|
1432
1432
|
|
|
@@ -1442,6 +1442,8 @@ class Modeler(object):
|
|
|
1442
1442
|
"""
|
|
1443
1443
|
pins = {}
|
|
1444
1444
|
if pins_by_id:
|
|
1445
|
+
if isinstance(pins_by_id, int):
|
|
1446
|
+
pins_by_id = [pins_by_id]
|
|
1445
1447
|
for p in pins_by_id:
|
|
1446
1448
|
edb_pin = self._pedb.layout.find_object_by_id(p)
|
|
1447
1449
|
if edb_pin and not p in pins:
|
|
@@ -1451,6 +1453,10 @@ class Modeler(object):
|
|
|
1451
1453
|
if not pins_by_name:
|
|
1452
1454
|
pins_by_name = []
|
|
1453
1455
|
if pins_by_aedt_name or pins_by_name:
|
|
1456
|
+
if isinstance(pins_by_aedt_name, str):
|
|
1457
|
+
pins_by_aedt_name = [pins_by_aedt_name]
|
|
1458
|
+
if isinstance(pins_by_name, str):
|
|
1459
|
+
pins_by_name = [pins_by_name]
|
|
1454
1460
|
p_inst = self._pedb.layout.padstack_instances
|
|
1455
1461
|
_pins = {
|
|
1456
1462
|
pin.id: pin._edb_object
|
|
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.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/cell/terminal/padstack_instance_terminal.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
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/hfss_pi_simulation_setup_data.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/edb_data/raptor_x_simulation_setup_data.py
RENAMED
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/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
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/mesh_operation.py
RENAMED
|
File without changes
|
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/sim_setup_info.py
RENAMED
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/dotnet/edb_core/sim_setup_data/data/simulation_settings.py
RENAMED
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/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
|
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/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.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py
RENAMED
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py
RENAMED
|
File without changes
|
{pyedb-0.20.0 → pyedb-0.21.1}/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.20.0 → pyedb-0.21.1}/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
|
|
File without changes
|