pyedb 0.59.0__tar.gz → 0.61.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.59.0 → pyedb-0.61.0}/LICENSE +7 -7
- {pyedb-0.59.0 → pyedb-0.61.0}/PKG-INFO +7 -4
- {pyedb-0.59.0 → pyedb-0.61.0}/pyproject.toml +6 -3
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/__init__.py +23 -1
- pyedb-0.61.0/src/pyedb/common/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/common/nets.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/component_libraries/ansys_components.py +22 -0
- pyedb-0.61.0/src/pyedb/configuration/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_boundaries.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_common.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_components.py +36 -8
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_general.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_modeler.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_nets.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_operations.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_package_definition.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_padstacks.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_pin_groups.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_ports_sources.py +3 -2
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_s_parameter_models.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_setup.py +5 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_spice_models.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_stackup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/cfg_terminals.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/configuration/configuration.py +6 -5
- pyedb-0.61.0/src/pyedb/dotnet/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/clr_module.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/Variables.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/__init__.py +23 -0
- pyedb-0.61.0/src/pyedb/dotnet/database/cell/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/connectable.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/cell/hierarchy/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/hierarchy/component.py +9 -7
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/hierarchy/hierarchy_obj.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/hierarchy/model.py +2 -29
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/hierarchy/netlist_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/hierarchy/pin_pair_model.py +1 -1
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/hierarchy/spice_model.py → pyedb-0.61.0/src/pyedb/dotnet/database/cell/hierarchy/s_parameter_model.py +12 -9
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/hierarchy/s_parameter_model.py → pyedb-0.61.0/src/pyedb/dotnet/database/cell/hierarchy/spice_model.py +13 -14
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/layout.py +5 -4
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/layout_obj.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/cell/primitive/__init__.py +25 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/primitive/bondwire.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/primitive/path.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/primitive/primitive.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/cell/terminal/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/bundle_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/edge_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/pingroup_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/point_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/terminal/terminal.py +7 -2
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/cell/voltage_regulator.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/components.py +6 -2
- pyedb-0.61.0/src/pyedb/dotnet/database/definition/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/definition/component_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/definition/component_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/definition/definition_obj.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/definition/definitions.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/definition/package_def.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/dotnet/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/dotnet/database.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/dotnet/primitive.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/edb_data/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/control_file.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/design_options.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/edbvalue.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/hfss_extent_info.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/layer_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/nets_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/padstacks_data.py +6 -4
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/ports.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/primitives_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/simulation_configuration.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/sources.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/utilities.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/edb_data/variables.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/general.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/geometry/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/geometry/point_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/geometry/polygon_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/hfss.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/layout_obj_instance.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/layout_validation.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/materials.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/modeler.py +3 -2
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/net_class.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/nets.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/padstack.py +188 -2
- pyedb-0.61.0/src/pyedb/dotnet/database/sim_setup_data/__init__.py +25 -0
- pyedb-0.61.0/src/pyedb/dotnet/database/sim_setup_data/data/__init__.py +25 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/adaptive_frequency_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/mesh_operation.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/sim_setup_info.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/simulation_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/siw_dc_ir_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/data/sweep_data.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/sim_setup_data/io/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/sim_setup_data/io/siwave.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/siwave.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/stackup.py +1 -1
- pyedb-0.61.0/src/pyedb/dotnet/database/utilities/__init__.py +25 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/heatsink.py +23 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/hfss_simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/obj_base.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/siwave_simulation_setup.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/database/utilities/value.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/dotnet/edb.py +119 -123
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/edb_logger.py +1 -1
- pyedb-0.61.0/src/pyedb/exceptions.py +27 -0
- pyedb-0.61.0/src/pyedb/extensions/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/extensions/create_cell_array.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/extensions/via_design_backend.py +22 -0
- pyedb-0.61.0/src/pyedb/generic/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/constants.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/data_handlers.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/design_types.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/filesystem.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/general_methods.py +22 -1
- pyedb-0.61.0/src/pyedb/generic/grpc_warnings.py +27 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/plot.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/process.py +29 -2
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/generic/settings.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/grpc/database/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/grpc/database/_typing.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/components.py +9 -8
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/control_file.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/definition/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/component_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/component_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/component_pin.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/materials.py +2 -2
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/n_port_component_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/package_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definition/padstack_def.py +17 -10
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/definitions.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/general.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/geometry/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/geometry/arc_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/geometry/point_3d_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/geometry/point_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/geometry/polygon_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hfss.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/hierarchy/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/component.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/netlist_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/pin_pair_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/pingroup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/s_parameter_model.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/hierarchy/spice_model.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/layers/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layers/layer.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layers/stackup_layer.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/layout/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layout/cell.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layout/layout.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layout/voltage_regulator.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/layout_validation.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/modeler.py +31 -9
- pyedb-0.61.0/src/pyedb/grpc/database/net/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/net/differential_pair.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/net/extended_net.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/net/net.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/net/net_class.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/nets.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/padstacks.py +209 -9
- pyedb-0.61.0/src/pyedb/grpc/database/ports/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/ports/ports.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/primitive/__init__.py +25 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/bondwire.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/circle.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/padstack_instance.py +111 -16
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/path.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/polygon.py +6 -4
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/primitive.py +1 -6
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/primitive/rectangle.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/simulation_setup/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/adaptive_frequency.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_general_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_settings_options.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/hfss_solver_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/mesh_operation.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/simulation_setup/sweep_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/siwave.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/source_excitations.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/stackup.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/terminal/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/bundle_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/edge_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/padstack_instance_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/pingroup_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/point_terminal.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/terminal/terminal.py +1 -1
- pyedb-0.61.0/src/pyedb/grpc/database/utility/__init__.py +25 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/constants.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/heat_sink.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/hfss_extent_info.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/layout_statistics.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/rlc.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/sources.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/sweep_data_distribution.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/value.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/database/utility/xml_control_file.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/edb.py +230 -990
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/edb_init.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/grpc/rpc_session.py +17 -4
- pyedb-0.61.0/src/pyedb/ipc2581/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/ipc2581/bom/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/bom/bom.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/bom/bom_item.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/bom/characteristics.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/bom/refdes.py +1 -1
- pyedb-0.61.0/src/pyedb/ipc2581/content/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/color.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/content.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/dictionary_color.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/dictionary_fill.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/dictionary_line.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/entry_color.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/entry_line.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/fill.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/layer_ref.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +1 -1
- pyedb-0.61.0/src/pyedb/ipc2581/ecad/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/ipc2581/ecad/cad_data/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/component.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/drill.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/feature.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/layer.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/outline.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/package.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/path.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/pin.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/polygon.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/profile.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/stackup.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_data/step.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/cad_header.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/ecad.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ecad/spec.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/history_record.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/ipc2581.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/ipc2581/logistic_header.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/libraries/common.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/libraries/rf_libraries/base_functions.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/libraries/rf_libraries/planar_antennas.py +1 -1
- pyedb-0.61.0/src/pyedb/misc/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/aedtlib_personalib_install.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/decorators.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/downloads.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/misc.py +1 -1
- pyedb-0.61.0/src/pyedb/misc/siw_feature_config/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/net.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/pins.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/utilities.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/modeler/geometry_operators.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/siwave.py +22 -0
- pyedb-0.61.0/src/pyedb/siwave_core/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/siwave_core/cpa/__init__.py +21 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/siwave_core/cpa/simulation_setup_data_model.py +22 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/siwave_core/icepak.py +1 -1
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/siwave_core/product_properties.py +23 -0
- pyedb-0.61.0/src/pyedb/workflow.py +54 -0
- pyedb-0.61.0/src/pyedb/workflows/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/job_manager_handler.py +910 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/job_submission.py +1169 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/service.py +1663 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/start_service.py +86 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/submit_job_on_scheduler.py +168 -0
- pyedb-0.61.0/src/pyedb/workflows/job_manager/backend/submit_local_job.py +166 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/workflows/sipi/hfss_auto_configuration.py +1 -1
- pyedb-0.61.0/src/pyedb/workflows/utilities/__init__.py +21 -0
- pyedb-0.61.0/src/pyedb/workflows/utilities/cutout.py +1428 -0
- pyedb-0.61.0/src/pyedb/workflows/utilities/hfss_log_parser.py +446 -0
- pyedb-0.59.0/src/pyedb/common/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/configuration/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/__init__.py +0 -1
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/hierarchy/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/primitive/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/dotnet/database/cell/terminal/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/definition/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/dotnet/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/edb_data/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/geometry/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/sim_setup_data/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/dotnet/database/sim_setup_data/data/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/dotnet/database/sim_setup_data/io/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/dotnet/database/utilities/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/exceptions.py +0 -5
- pyedb-0.59.0/src/pyedb/extensions/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/generic/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/generic/grpc_warnings.py +0 -5
- pyedb-0.59.0/src/pyedb/grpc/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/_typing.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/definition/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/geometry/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/hierarchy/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/layers/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/layout/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/net/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/ports/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/primitive/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/grpc/database/simulation_setup/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/terminal/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/grpc/database/utility/__init__.py +0 -3
- pyedb-0.59.0/src/pyedb/ipc2581/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/ipc2581/bom/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/ipc2581/content/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/ipc2581/ecad/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/ipc2581/ecad/cad_data/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/misc/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/misc/siw_feature_config/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/siwave_core/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/siwave_core/cpa/__init__.py +0 -0
- pyedb-0.59.0/src/pyedb/workflow.py +0 -32
- {pyedb-0.59.0 → pyedb-0.61.0}/README.md +0 -0
- {pyedb-0.59.0 → pyedb-0.61.0}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2023 ANSYS, Inc.
|
|
3
|
+
Copyright (c) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
4
4
|
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
10
|
+
so, subject to the following conditions:
|
|
11
11
|
|
|
12
12
|
The above copyright notice and this permission notice shall be included in all
|
|
13
13
|
copies or substantial portions of the Software.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.61.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>
|
|
@@ -22,7 +22,7 @@ Requires-Dist: ansys-pythonnet >= 3.1.0rc4
|
|
|
22
22
|
Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
|
|
23
23
|
Requires-Dist: numpy>=1.20.0,<3
|
|
24
24
|
Requires-Dist: pandas>=1.1.0,<2.4
|
|
25
|
-
Requires-Dist: pydantic>=2.6.4,<2.
|
|
25
|
+
Requires-Dist: pydantic>=2.6.4,<2.13
|
|
26
26
|
Requires-Dist: Rtree >= 1.2.0
|
|
27
27
|
Requires-Dist: toml == 0.10.2
|
|
28
28
|
Requires-Dist: shapely
|
|
@@ -31,15 +31,18 @@ Requires-Dist: ansys-edb-core>=0.2.0
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: defusedxml>=0.7,<8.0
|
|
33
33
|
Requires-Dist: matplotlib>=3.5.0,<3.11
|
|
34
|
+
Requires-Dist: aiohttp>=3.8
|
|
35
|
+
Requires-Dist: python-socketio>=5.10
|
|
36
|
+
Requires-Dist: requests>=2.32,<3.0
|
|
34
37
|
Requires-Dist: ansys-sphinx-theme>=1.0.0,<1.5 ; extra == "doc"
|
|
35
38
|
Requires-Dist: imageio>=2.30.0,<2.38 ; extra == "doc"
|
|
36
39
|
Requires-Dist: ipython>=8.13.0,<8.32 ; extra == "doc"
|
|
37
40
|
Requires-Dist: jupyterlab>=4.0.0,<4.5 ; extra == "doc"
|
|
38
|
-
Requires-Dist: jupytext>=1.16.0,<1.
|
|
41
|
+
Requires-Dist: jupytext>=1.16.0,<1.19 ; extra == "doc"
|
|
39
42
|
Requires-Dist: matplotlib>=3.5.0,<3.11 ; extra == "doc"
|
|
40
43
|
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
41
44
|
Requires-Dist: nbconvert < 7.17 ; extra == "doc"
|
|
42
|
-
Requires-Dist: numpydoc
|
|
45
|
+
Requires-Dist: numpydoc==1.5.0 ; extra == "doc"
|
|
43
46
|
Requires-Dist: pypandoc>=1.10.0,<1.16 ; extra == "doc"
|
|
44
47
|
Requires-Dist: recommonmark ; extra == "doc"
|
|
45
48
|
Requires-Dist: Sphinx>=7.1.0,<8.2 ; extra == "doc"
|
|
@@ -31,7 +31,7 @@ dependencies = [
|
|
|
31
31
|
"dotnetcore2 ==3.1.23;platform_system=='Linux'",
|
|
32
32
|
"numpy>=1.20.0,<3",
|
|
33
33
|
"pandas>=1.1.0,<2.4",
|
|
34
|
-
"pydantic>=2.6.4,<2.
|
|
34
|
+
"pydantic>=2.6.4,<2.13",
|
|
35
35
|
"Rtree >= 1.2.0",
|
|
36
36
|
"toml == 0.10.2",
|
|
37
37
|
"shapely",
|
|
@@ -40,6 +40,9 @@ dependencies = [
|
|
|
40
40
|
"psutil",
|
|
41
41
|
"defusedxml>=0.7,<8.0",
|
|
42
42
|
"matplotlib>=3.5.0,<3.11",
|
|
43
|
+
"aiohttp>=3.8",
|
|
44
|
+
"python-socketio>=5.10",
|
|
45
|
+
"requests>=2.32,<3.0",
|
|
43
46
|
]
|
|
44
47
|
|
|
45
48
|
[project.optional-dependencies]
|
|
@@ -57,11 +60,11 @@ doc = [
|
|
|
57
60
|
"imageio>=2.30.0,<2.38",
|
|
58
61
|
"ipython>=8.13.0,<8.32",
|
|
59
62
|
"jupyterlab>=4.0.0,<4.5",
|
|
60
|
-
"jupytext>=1.16.0,<1.
|
|
63
|
+
"jupytext>=1.16.0,<1.19",
|
|
61
64
|
"matplotlib>=3.5.0,<3.11",
|
|
62
65
|
"nbsphinx>=0.9.0,<0.10",
|
|
63
66
|
"nbconvert < 7.17",
|
|
64
|
-
"numpydoc
|
|
67
|
+
"numpydoc==1.5.0",
|
|
65
68
|
"pypandoc>=1.10.0,<1.16",
|
|
66
69
|
# NOTE: Remove recommonmark once examples are reworked.
|
|
67
70
|
"recommonmark",
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
# -*- coding: utf-8 -*-
|
|
2
24
|
import os
|
|
3
25
|
import sys
|
|
@@ -37,7 +59,7 @@ deprecation_warning()
|
|
|
37
59
|
#
|
|
38
60
|
|
|
39
61
|
pyedb_path = os.path.dirname(__file__)
|
|
40
|
-
__version__ = "0.
|
|
62
|
+
__version__ = "0.61.0"
|
|
41
63
|
version = __version__
|
|
42
64
|
|
|
43
65
|
#
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
import math
|
|
2
24
|
import time
|
|
3
25
|
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
import struct
|
|
2
24
|
|
|
3
25
|
import numpy as np
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2023 -
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
#
|
|
4
4
|
#
|
|
@@ -98,14 +98,42 @@ class CfgComponent(CfgBase):
|
|
|
98
98
|
m = self._pedb._edb.Cell.Hierarchy.PinPairModel()
|
|
99
99
|
for i in self.pin_pair_model:
|
|
100
100
|
p = self._pedb._edb.Utility.PinPair(str(i["first_pin"]), str(i["second_pin"]))
|
|
101
|
+
res = i.get("resistance")
|
|
102
|
+
if res is None:
|
|
103
|
+
# If resistance is not defined, set it to 0 and disable it
|
|
104
|
+
res = "0ohm"
|
|
105
|
+
en_res = False
|
|
106
|
+
else:
|
|
107
|
+
# If resistance is defined, use the provided value and enabled status
|
|
108
|
+
res = i["resistance"]
|
|
109
|
+
en_res = i.get("resistance_enabled", True)
|
|
110
|
+
ind = i.get("inductance")
|
|
111
|
+
if ind is None:
|
|
112
|
+
# If inductance is not defined, set it to 0 and disable it
|
|
113
|
+
ind = "0nH"
|
|
114
|
+
en_ind = False
|
|
115
|
+
else:
|
|
116
|
+
# If inductance is defined, use the provided value and enabled status
|
|
117
|
+
ind = i["inductance"]
|
|
118
|
+
en_ind = i.get("inductance_enabled", True)
|
|
119
|
+
cap = i.get("capacitance")
|
|
120
|
+
if cap is None:
|
|
121
|
+
# If capacitance is not defined, set it to 0 and disable it
|
|
122
|
+
cap = "0pF"
|
|
123
|
+
en_cap = False
|
|
124
|
+
else:
|
|
125
|
+
# If capacitance is defined, use the provided value and enabled status
|
|
126
|
+
cap = i["capacitance"]
|
|
127
|
+
en_cap = i.get("capacitance_enabled", True)
|
|
128
|
+
|
|
101
129
|
rlc = self._pedb._edb.Utility.Rlc(
|
|
102
|
-
self._pedb.edb_value(
|
|
103
|
-
|
|
104
|
-
self._pedb.edb_value(
|
|
105
|
-
|
|
106
|
-
self._pedb.edb_value(
|
|
107
|
-
|
|
108
|
-
i
|
|
130
|
+
self._pedb.edb_value(res),
|
|
131
|
+
en_res,
|
|
132
|
+
self._pedb.edb_value(ind),
|
|
133
|
+
en_ind,
|
|
134
|
+
self._pedb.edb_value(cap),
|
|
135
|
+
en_cap,
|
|
136
|
+
i.get("is_parallel", False),
|
|
109
137
|
)
|
|
110
138
|
m.SetPinPairRlc(p, rlc)
|
|
111
139
|
c_p.SetModel(m)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2023 -
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
#
|
|
4
4
|
#
|
|
@@ -356,11 +356,12 @@ class CfgCircuitElement(CfgBase):
|
|
|
356
356
|
else:
|
|
357
357
|
pos_objs.update(pins)
|
|
358
358
|
elif pos_type == "pin_group":
|
|
359
|
-
pins = self._get_pins(pos_type, pos_value, self.positive_terminal_info.reference_designator)
|
|
360
359
|
if self.distributed:
|
|
360
|
+
pins = self._get_pins(pos_type, pos_value, self.positive_terminal_info.reference_designator)
|
|
361
361
|
pos_objs.update(pins)
|
|
362
362
|
self._elem_num = len(pos_objs)
|
|
363
363
|
elif self.positive_terminal_info.contact_type in ["quad", "inline"]:
|
|
364
|
+
pins = self._get_pins(pos_type, pos_value, self.positive_terminal_info.reference_designator)
|
|
364
365
|
for _, pin in pins.items():
|
|
365
366
|
contact_type = self.positive_terminal_info.contact_type
|
|
366
367
|
radius = self.positive_terminal_info.contact_radius
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2023 -
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
#
|
|
4
4
|
#
|
|
@@ -137,6 +137,9 @@ class CfgHFSSSetup(CfgSetup):
|
|
|
137
137
|
|
|
138
138
|
self.apply_freq_sweep(edb_setup)
|
|
139
139
|
|
|
140
|
+
if self.auto_mesh_operation:
|
|
141
|
+
edb_setup.auto_mesh_operation(**self.auto_mesh_operation)
|
|
142
|
+
|
|
140
143
|
for i in self.mesh_operations:
|
|
141
144
|
edb_setup.add_length_mesh_operation(
|
|
142
145
|
name=i["name"],
|
|
@@ -178,6 +181,7 @@ class CfgHFSSSetup(CfgSetup):
|
|
|
178
181
|
self.max_num_passes = kwargs.get("max_num_passes")
|
|
179
182
|
self.max_mag_delta_s = kwargs.get("max_mag_delta_s")
|
|
180
183
|
|
|
184
|
+
self.auto_mesh_operation = kwargs.get("auto_mesh_operation", None)
|
|
181
185
|
self.mesh_operations = kwargs.get("mesh_operations", [])
|
|
182
186
|
|
|
183
187
|
def to_dict(self):
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
from typing import List, Literal, Optional, Union
|
|
2
24
|
|
|
3
25
|
from pydantic import BaseModel
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2023 -
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
2
|
# SPDX-License-Identifier: MIT
|
|
3
3
|
#
|
|
4
4
|
#
|
|
@@ -132,7 +132,6 @@ class Configuration:
|
|
|
132
132
|
self.__apply_with_logging("Updating components", self.cfg_data.components.apply)
|
|
133
133
|
self.__apply_with_logging("Creating pin groups", self.cfg_data.pin_groups.apply)
|
|
134
134
|
self.__apply_with_logging("Placing sources", self.cfg_data.sources.apply)
|
|
135
|
-
self.__apply_with_logging("Creating setups", self.cfg_data.setups.apply)
|
|
136
135
|
|
|
137
136
|
self.__apply_with_logging("Applying materials", self.apply_materials)
|
|
138
137
|
self.__apply_with_logging("Updating stackup", self.apply_stackup)
|
|
@@ -151,6 +150,7 @@ class Configuration:
|
|
|
151
150
|
self.apply_terminals()
|
|
152
151
|
self.__apply_with_logging("Placing probes", self.cfg_data.probes.apply)
|
|
153
152
|
self.apply_operations()
|
|
153
|
+
self.cfg_data.setups.apply()
|
|
154
154
|
|
|
155
155
|
return True
|
|
156
156
|
|
|
@@ -249,9 +249,10 @@ class Configuration:
|
|
|
249
249
|
c.pyedb_obj = obj
|
|
250
250
|
c.set_parameters_to_edb()
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
i
|
|
252
|
+
if len([i for i in modeler.primitives_to_delete.values() if len(i) > 0]):
|
|
253
|
+
primitives = self._pedb.layout.find_primitive(**modeler.primitives_to_delete)
|
|
254
|
+
for i in primitives:
|
|
255
|
+
i.delete()
|
|
255
256
|
|
|
256
257
|
def apply_variables(self):
|
|
257
258
|
"""Set variables into database."""
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
1
23
|
import os
|
|
2
24
|
from pathlib import Path
|
|
3
25
|
import pkgutil
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
22
|
+
|
|
23
|
+
from __future__ import absolute_import # noreorder
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates.
|
|
2
|
+
# SPDX-License-Identifier: MIT
|
|
3
|
+
#
|
|
4
|
+
#
|
|
5
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
# of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
# in the Software without restriction, including without limitation the rights
|
|
8
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
# copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
# furnished to do so, subject to the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
# copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
# SOFTWARE.
|