pyedb 0.7.0__tar.gz → 0.8.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.7.0 → pyedb-0.8.0}/PKG-INFO +31 -53
- {pyedb-0.7.0 → pyedb-0.8.0}/README.md +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/pyproject.toml +30 -51
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/__init__.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/clr_module.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb.py +7 -7
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/model.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/components.py +15 -12
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/configuration.py +232 -25
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/component_def.py +10 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/component_model.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/definition_obj.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/definitions.py +8 -2
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/package_def.py +61 -15
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/dotnet/database.py +5 -4
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/components_data.py +3 -2
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/connectable.py +1 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/hfss_extent_info.py +14 -13
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/hfss_simulation_setup_data.py +2 -2
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/layer_data.py +9 -3
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/padstacks_data.py +6 -5
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/primitives_data.py +16 -13
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/siwave_simulation_setup_data.py +7 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/sources.py +10 -0
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/geometry/point_data.py +37 -0
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/geometry/polygon_data.py +77 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/layout.py +59 -0
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/materials.py +1078 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/nets.py +3 -3
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/obj_base.py +94 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/padstack.py +57 -6
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/siwave.py +11 -4
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/stackup.py +152 -131
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/utilities/__init__.py +3 -0
- pyedb-0.8.0/src/pyedb/dotnet/edb_core/utilities/heatsink.py +69 -0
- pyedb-0.7.0/src/pyedb/dotnet/edb_core/edb_data/obj_base.py → pyedb-0.8.0/src/pyedb/dotnet/sim_setup_data/data/siw_dc_ir_settings.py +18 -23
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/edb_logger.py +15 -1
- pyedb-0.8.0/src/pyedb/exceptions.py +6 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/filesystem.py +7 -3
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/general_methods.py +4 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/process.py +4 -1
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/settings.py +30 -8
- pyedb-0.8.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/siwave.py +50 -1
- pyedb-0.7.0/src/pyedb/dotnet/edb_core/materials.py +0 -960
- {pyedb-0.7.0 → pyedb-0.8.0}/LICENSE +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/application/Variables.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/application/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/cell/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/cell/hierarchy/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/definition/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/dotnet/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/dotnet/layout.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/dotnet/primitive.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/control_file.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/design_options.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/edbvalue.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/nets_data.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/ports.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/simulation_configuration.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/terminals.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/utilities.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/edb_data/variables.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/general.py +0 -0
- {pyedb-0.7.0/src/pyedb/generic → pyedb-0.8.0/src/pyedb/dotnet/edb_core/geometry}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/hfss.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/layout_validation.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/dotnet/edb_core/net_class.py +0 -0
- {pyedb-0.7.0/src/pyedb/dotnet/edb_core/edb_data → pyedb-0.8.0/src/pyedb/dotnet/edb_core/utilities}/simulation_setup.py +0 -0
- {pyedb-0.7.0/src/pyedb/ipc2581 → pyedb-0.8.0/src/pyedb/generic}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/constants.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/data_handlers.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/design_types.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/generic/plot.py +0 -0
- {pyedb-0.7.0/src/pyedb/ipc2581/bom → pyedb-0.8.0/src/pyedb/ipc2581}/__init__.py +0 -0
- {pyedb-0.7.0/src/pyedb/ipc2581/content → pyedb-0.8.0/src/pyedb/ipc2581/bom}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/bom/bom.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/bom/bom_item.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/bom/characteristics.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/bom/refdes.py +0 -0
- {pyedb-0.7.0/src/pyedb/ipc2581/ecad → pyedb-0.8.0/src/pyedb/ipc2581/content}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/color.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/content.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/dictionary_color.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/dictionary_fill.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/dictionary_line.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/entry_color.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/entry_line.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/fill.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/layer_ref.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +0 -0
- {pyedb-0.7.0/src/pyedb/ipc2581/ecad/cad_data → pyedb-0.8.0/src/pyedb/ipc2581/ecad}/__init__.py +0 -0
- {pyedb-0.7.0/src/pyedb/misc → pyedb-0.8.0/src/pyedb/ipc2581/ecad/cad_data}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/component.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/drill.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/feature.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/layer.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/outline.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/package.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/path.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/pin.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/polygon.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/profile.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/stackup.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_data/step.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/cad_header.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/ecad.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ecad/spec.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/history_record.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/ipc2581.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/ipc2581/logistic_header.py +0 -0
- {pyedb-0.7.0/src/pyedb/misc/siw_feature_config → pyedb-0.8.0/src/pyedb/misc}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/aedtlib_personalib_install.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/downloads.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/misc.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
- {pyedb-0.7.0/src/pyedb/misc/siw_feature_config/emc → pyedb-0.8.0/src/pyedb/misc/siw_feature_config}/__init__.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/misc/utilities.py +0 -0
- {pyedb-0.7.0 → pyedb-0.8.0}/src/pyedb/modeler/geometry_operators.py +0 -0
|
@@ -1,73 +1,51 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyedb
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.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>
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.8,<4
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Classifier: Development Status :: 4 - Beta
|
|
10
10
|
Classifier: Intended Audience :: Science/Research
|
|
11
11
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.8
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.10
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
Requires-Dist: cffi
|
|
20
|
-
Requires-Dist: cffi == 1.16.0;platform_system=='Linux' and python_version > '3.7'
|
|
18
|
+
Requires-Dist: cffi>=1.16.0,<1.17; platform_system=='Linux'
|
|
21
19
|
Requires-Dist: pywin32 >= 303;platform_system=='Windows'
|
|
22
20
|
Requires-Dist: ansys-pythonnet >= 3.1.0rc3
|
|
23
21
|
Requires-Dist: dotnetcore2 ==3.1.23;platform_system=='Linux'
|
|
24
|
-
Requires-Dist:
|
|
25
|
-
Requires-Dist:
|
|
26
|
-
Requires-Dist:
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist: ipython
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist:
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
Requires-Dist:
|
|
37
|
-
Requires-Dist:
|
|
38
|
-
Requires-Dist:
|
|
39
|
-
Requires-Dist:
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
43
|
-
Requires-Dist:
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist:
|
|
46
|
-
Requires-Dist:
|
|
47
|
-
Requires-Dist:
|
|
48
|
-
Requires-Dist:
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist:
|
|
51
|
-
Requires-Dist: matplotlib==3.5.3 ; extra == "full" and ( python_version == '3.7')
|
|
52
|
-
Requires-Dist: matplotlib==3.7.3 ; extra == "full" and ( python_version == '3.8')
|
|
53
|
-
Requires-Dist: matplotlib==3.8.2 ; extra == "full" and ( python_version > '3.8')
|
|
54
|
-
Requires-Dist: numpy==1.21.6 ; extra == "full" and ( python_version <= '3.9')
|
|
55
|
-
Requires-Dist: numpy==1.26.0 ; extra == "full" and ( python_version > '3.9')
|
|
56
|
-
Requires-Dist: pandas==1.3.5 ; extra == "full" and ( python_version == '3.7')
|
|
57
|
-
Requires-Dist: pandas==2.0.3 ; extra == "full" and ( python_version == '3.9')
|
|
58
|
-
Requires-Dist: pandas==2.1.1 ; extra == "full" and ( python_version > '3.9')
|
|
59
|
-
Requires-Dist: matplotlib==3.5.3 ; extra == "tests" and ( python_version == '3.7')
|
|
60
|
-
Requires-Dist: matplotlib==3.7.3 ; extra == "tests" and ( python_version == '3.8')
|
|
61
|
-
Requires-Dist: matplotlib==3.8.2 ; extra == "tests" and ( python_version > '3.8')
|
|
62
|
-
Requires-Dist: numpy==1.21.6 ; extra == "tests" and ( python_version <= '3.9')
|
|
63
|
-
Requires-Dist: numpy==1.26.0 ; extra == "tests" and ( python_version > '3.9')
|
|
64
|
-
Requires-Dist: mock ; extra == "tests"
|
|
65
|
-
Requires-Dist: pandas==1.3.5 ; extra == "tests" and ( python_version == '3.7')
|
|
66
|
-
Requires-Dist: pandas==2.0.3 ; extra == "tests" and ( python_version == '3.8')
|
|
67
|
-
Requires-Dist: pandas==2.1.1 ; extra == "tests" and ( python_version > '3.9')
|
|
68
|
-
Requires-Dist: pytest==7.4.3 ; extra == "tests"
|
|
69
|
-
Requires-Dist: pytest-cov==4.1.0 ; extra == "tests"
|
|
70
|
-
Requires-Dist: pytest-xdist==3.3.1 ; extra == "tests"
|
|
22
|
+
Requires-Dist: pydantic>=2.6.4,<2.8
|
|
23
|
+
Requires-Dist: toml == 0.10.2
|
|
24
|
+
Requires-Dist: ansys-sphinx-theme>=0.10.0,<0.16 ; extra == "doc"
|
|
25
|
+
Requires-Dist: imageio>=2.30.0,<2.35 ; extra == "doc"
|
|
26
|
+
Requires-Dist: ipython>=8.13.0,<8.24 ; extra == "doc"
|
|
27
|
+
Requires-Dist: jupyterlab>=4.0.0,<4.3 ; extra == "doc"
|
|
28
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "doc"
|
|
29
|
+
Requires-Dist: nbsphinx>=0.9.0,<0.10 ; extra == "doc"
|
|
30
|
+
Requires-Dist: numpydoc>=1.5.0,<1.8 ; extra == "doc"
|
|
31
|
+
Requires-Dist: pypandoc>=1.10.0,<1.14 ; extra == "doc"
|
|
32
|
+
Requires-Dist: recommonmark ; extra == "doc"
|
|
33
|
+
Requires-Dist: Sphinx>=7.1.0,<7.4 ; extra == "doc"
|
|
34
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version == '3.8')
|
|
35
|
+
Requires-Dist: sphinx-autobuild==2024.2.4 ; extra == "doc" and ( python_version > '3.8')
|
|
36
|
+
Requires-Dist: sphinx-copybutton>=0.5.0,<0.6 ; extra == "doc"
|
|
37
|
+
Requires-Dist: sphinx-gallery>=0.14.0,<0.16 ; extra == "doc"
|
|
38
|
+
Requires-Dist: sphinx_design>=0.4.0,<0.6 ; extra == "doc"
|
|
39
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "full"
|
|
40
|
+
Requires-Dist: numpy>=1.20.0,<2 ; extra == "full"
|
|
41
|
+
Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "full"
|
|
42
|
+
Requires-Dist: matplotlib>=3.5.0,<3.9 ; extra == "tests"
|
|
43
|
+
Requires-Dist: numpy>=1.20.0,<2 ; extra == "tests"
|
|
44
|
+
Requires-Dist: mock>=5.1.0,<5.2 ; extra == "tests"
|
|
45
|
+
Requires-Dist: pandas>=1.1.0,<2.3 ; extra == "tests"
|
|
46
|
+
Requires-Dist: pytest>=7.4.0,<8.2 ; extra == "tests"
|
|
47
|
+
Requires-Dist: pytest-cov>=4.0.0,<5.1 ; extra == "tests"
|
|
48
|
+
Requires-Dist: pytest-xdist>=3.5.0,<3.6 ; extra == "tests"
|
|
71
49
|
Project-URL: Bugs, https://github.com/ansys/pyedb/issues
|
|
72
50
|
Project-URL: Discussions, https://github.com/ansys/pyedb/discussions
|
|
73
51
|
Project-URL: Documentation, https://edb.docs.pyansys.com
|
|
@@ -87,7 +65,7 @@ Provides-Extra: tests
|
|
|
87
65
|
# PyEDB
|
|
88
66
|
|
|
89
67
|
[](https://docs.pyansys.com/)
|
|
90
|
-
[](https://www.python.org/downloads/)
|
|
91
69
|
[](https://opensource.org/licenses/MIT)
|
|
92
70
|
|
|
93
71
|
## What is PyEDB?
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# PyEDB
|
|
9
9
|
|
|
10
10
|
[](https://docs.pyansys.com/)
|
|
11
|
-
[](https://www.python.org/downloads/)
|
|
12
12
|
[](https://opensource.org/licenses/MIT)
|
|
13
13
|
|
|
14
14
|
## What is PyEDB?
|
|
@@ -8,7 +8,7 @@ name = "pyedb"
|
|
|
8
8
|
dynamic = ["version"]
|
|
9
9
|
description = "Higher-Level Pythonic Ansys Electronics Data Base"
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.8,<4"
|
|
12
12
|
license = {file = "LICENSE"}
|
|
13
13
|
authors = [{name = "ANSYS, Inc.", email = "pyansys.core@ansys.com"}]
|
|
14
14
|
maintainers = [{name = "PyEDB developers", email = "simon.vandenbrouck@ansys.com"}]
|
|
@@ -18,7 +18,6 @@ classifiers = [
|
|
|
18
18
|
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
19
19
|
"License :: OSI Approved :: MIT License",
|
|
20
20
|
"Operating System :: OS Independent",
|
|
21
|
-
"Programming Language :: Python :: 3.7",
|
|
22
21
|
"Programming Language :: Python :: 3.8",
|
|
23
22
|
"Programming Language :: Python :: 3.9",
|
|
24
23
|
"Programming Language :: Python :: 3.10",
|
|
@@ -26,66 +25,46 @@ classifiers = [
|
|
|
26
25
|
]
|
|
27
26
|
|
|
28
27
|
dependencies = [
|
|
29
|
-
"cffi
|
|
30
|
-
"cffi == 1.16.0;platform_system=='Linux' and python_version > '3.7'",
|
|
28
|
+
"cffi>=1.16.0,<1.17; platform_system=='Linux'",
|
|
31
29
|
"pywin32 >= 303;platform_system=='Windows'",
|
|
32
30
|
"ansys-pythonnet >= 3.1.0rc3",
|
|
33
31
|
"dotnetcore2 ==3.1.23;platform_system=='Linux'",
|
|
32
|
+
"pydantic>=2.6.4,<2.8",
|
|
33
|
+
"toml == 0.10.2",
|
|
34
34
|
]
|
|
35
35
|
|
|
36
36
|
[project.optional-dependencies]
|
|
37
37
|
tests = [
|
|
38
|
-
"matplotlib
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"pandas==2.0.3; python_version == '3.8'",
|
|
46
|
-
"pandas==2.1.1; python_version > '3.9'",
|
|
47
|
-
"pytest==7.4.3",
|
|
48
|
-
"pytest-cov==4.1.0",
|
|
49
|
-
"pytest-xdist==3.3.1",
|
|
38
|
+
"matplotlib>=3.5.0,<3.9",
|
|
39
|
+
"numpy>=1.20.0,<2",
|
|
40
|
+
"mock>=5.1.0,<5.2",
|
|
41
|
+
"pandas>=1.1.0,<2.3",
|
|
42
|
+
"pytest>=7.4.0,<8.2",
|
|
43
|
+
"pytest-cov>=4.0.0,<5.1",
|
|
44
|
+
"pytest-xdist>=3.5.0,<3.6",
|
|
50
45
|
]
|
|
51
46
|
doc = [
|
|
52
|
-
"ansys-sphinx-theme
|
|
53
|
-
"imageio
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"Sphinx==7.1.2; python_version <= '3.9'",
|
|
69
|
-
"Sphinx==7.2.6; python_version >= '3.9'",
|
|
70
|
-
"sphinx-autobuild==2021.3.14",
|
|
71
|
-
"sphinx-autodoc-typehints==1.24.0",
|
|
72
|
-
"sphinx-copybutton==0.5.2",
|
|
73
|
-
"sphinx-gallery==0.14.0",
|
|
74
|
-
"sphinx-notfound-page==1.0.0",
|
|
75
|
-
"sphinxcontrib-websupport==1.2.4; python_version <= '3.9'",
|
|
76
|
-
"sphinxcontrib-websupport==1.2.5; python_version <= '3.7'",
|
|
77
|
-
"sphinx_design",
|
|
78
|
-
"sphinx_jinja",
|
|
47
|
+
"ansys-sphinx-theme>=0.10.0,<0.16",
|
|
48
|
+
"imageio>=2.30.0,<2.35",
|
|
49
|
+
"ipython>=8.13.0,<8.24",
|
|
50
|
+
"jupyterlab>=4.0.0,<4.3",
|
|
51
|
+
"matplotlib>=3.5.0,<3.9",
|
|
52
|
+
"nbsphinx>=0.9.0,<0.10",
|
|
53
|
+
"numpydoc>=1.5.0,<1.8",
|
|
54
|
+
"pypandoc>=1.10.0,<1.14",
|
|
55
|
+
# NOTE: Remove recommonmark once examples are reworked.
|
|
56
|
+
"recommonmark",
|
|
57
|
+
"Sphinx>=7.1.0,<7.4",
|
|
58
|
+
"sphinx-autobuild==2024.2.4; python_version == '3.8'",
|
|
59
|
+
"sphinx-autobuild==2024.2.4; python_version > '3.8'",
|
|
60
|
+
"sphinx-copybutton>=0.5.0,<0.6",
|
|
61
|
+
"sphinx-gallery>=0.14.0,<0.16",
|
|
62
|
+
"sphinx_design>=0.4.0,<0.6",
|
|
79
63
|
]
|
|
80
64
|
full = [
|
|
81
|
-
"matplotlib
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"numpy==1.21.6; python_version <= '3.9'",
|
|
85
|
-
"numpy==1.26.0; python_version > '3.9'",
|
|
86
|
-
"pandas==1.3.5; python_version == '3.7'",
|
|
87
|
-
"pandas==2.0.3; python_version == '3.9'",
|
|
88
|
-
"pandas==2.1.1; python_version > '3.9'",
|
|
65
|
+
"matplotlib>=3.5.0,<3.9",
|
|
66
|
+
"numpy>=1.20.0,<2",
|
|
67
|
+
"pandas>=1.1.0,<2.3",
|
|
89
68
|
]
|
|
90
69
|
|
|
91
70
|
|
|
@@ -83,7 +83,7 @@ except ImportError: # pragma: no cover
|
|
|
83
83
|
)
|
|
84
84
|
edb_initialized = False
|
|
85
85
|
elif sys.version[0] == 3 and sys.version[1] < 7:
|
|
86
|
-
warnings.warn("EDB requires Linux Python 3.
|
|
86
|
+
warnings.warn("EDB requires Linux Python 3.8 or later.")
|
|
87
87
|
_clr = None
|
|
88
88
|
String = None
|
|
89
89
|
Double = None
|
|
@@ -848,12 +848,11 @@ class Edb(Database):
|
|
|
848
848
|
Examples
|
|
849
849
|
--------
|
|
850
850
|
>>> from pyedb.dotnet.edb import Edb
|
|
851
|
-
>>> edbapp = Edb(
|
|
852
|
-
>>> edbapp.materials
|
|
853
|
-
>>> edbapp.materials.add_debye_material("
|
|
854
|
-
>>> edbapp.materials.add_djordjevicsarkar_material("
|
|
851
|
+
>>> edbapp = Edb()
|
|
852
|
+
>>> edbapp.materials.add_material("air", permittivity=1.0)
|
|
853
|
+
>>> edbapp.materials.add_debye_material("debye_mat", 5, 3, 0.02, 0.05, 1e5, 1e9)
|
|
854
|
+
>>> edbapp.materials.add_djordjevicsarkar_material("djord_mat", 3.3, 0.02, 3.3)
|
|
855
855
|
"""
|
|
856
|
-
|
|
857
856
|
if not self._materials and self.active_db:
|
|
858
857
|
self._materials = Materials(self)
|
|
859
858
|
return self._materials
|
|
@@ -3638,6 +3637,7 @@ class Edb(Database):
|
|
|
3638
3637
|
>>> setup1.hfss_port_settings.max_delta_z0 = 0.5
|
|
3639
3638
|
"""
|
|
3640
3639
|
if name in self.setups:
|
|
3640
|
+
self.logger.info("setup already exists")
|
|
3641
3641
|
return False
|
|
3642
3642
|
setup = HfssSimulationSetup(self).create(name)
|
|
3643
3643
|
return setup
|
|
@@ -4142,8 +4142,8 @@ class Edb(Database):
|
|
|
4142
4142
|
loss_tg_variable = "$loss_tangent_{}".format(mat_name)
|
|
4143
4143
|
loss_tg_variable = self._clean_string_for_variable_name(loss_tg_variable)
|
|
4144
4144
|
if not loss_tg_variable in self.variables:
|
|
4145
|
-
self.add_design_variable(loss_tg_variable, material.
|
|
4146
|
-
material.
|
|
4145
|
+
self.add_design_variable(loss_tg_variable, material.dielectric_loss_tangent)
|
|
4146
|
+
material.dielectric_loss_tangent = loss_tg_variable
|
|
4147
4147
|
parameters.append(loss_tg_variable)
|
|
4148
4148
|
else:
|
|
4149
4149
|
sigma_variable = "$sigma_{}".format(mat_name)
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
21
|
# SOFTWARE.
|
|
22
22
|
|
|
23
|
-
from pyedb.dotnet.edb_core.
|
|
23
|
+
from pyedb.dotnet.edb_core.obj_base import ObjBase
|
|
24
24
|
from pyedb.generic.general_methods import pyedb_function_handler
|
|
25
25
|
|
|
26
26
|
|
|
@@ -38,6 +38,7 @@ from pyedb.dotnet.edb_core.general import convert_py_list_to_net_list
|
|
|
38
38
|
from pyedb.dotnet.edb_core.padstack import EdbPadstacks
|
|
39
39
|
from pyedb.generic.general_methods import (
|
|
40
40
|
_retry_ntimes,
|
|
41
|
+
generate_unique_name,
|
|
41
42
|
get_filename_without_extension,
|
|
42
43
|
pyedb_function_handler,
|
|
43
44
|
)
|
|
@@ -1408,7 +1409,7 @@ class Components(object):
|
|
|
1408
1409
|
|
|
1409
1410
|
@pyedb_function_handler()
|
|
1410
1411
|
def create_rlc_component(
|
|
1411
|
-
self, pins, component_name="", r_value=
|
|
1412
|
+
self, pins, component_name="", r_value=None, c_value=None, l_value=None, is_parallel=False
|
|
1412
1413
|
): # pragma: no cover
|
|
1413
1414
|
"""Create physical Rlc component.
|
|
1414
1415
|
|
|
@@ -1450,13 +1451,13 @@ class Components(object):
|
|
|
1450
1451
|
def create(
|
|
1451
1452
|
self,
|
|
1452
1453
|
pins,
|
|
1453
|
-
component_name,
|
|
1454
|
+
component_name=None,
|
|
1454
1455
|
placement_layer=None,
|
|
1455
1456
|
component_part_name=None,
|
|
1456
1457
|
is_rlc=False,
|
|
1457
|
-
r_value=
|
|
1458
|
-
c_value=
|
|
1459
|
-
l_value=
|
|
1458
|
+
r_value=None,
|
|
1459
|
+
c_value=None,
|
|
1460
|
+
l_value=None,
|
|
1460
1461
|
is_parallel=False,
|
|
1461
1462
|
):
|
|
1462
1463
|
"""Create a component from pins.
|
|
@@ -1496,6 +1497,8 @@ class Components(object):
|
|
|
1496
1497
|
>>> edbapp.components.create(pins, "A1New")
|
|
1497
1498
|
|
|
1498
1499
|
"""
|
|
1500
|
+
if not component_name:
|
|
1501
|
+
component_name = generate_unique_name("Comp_")
|
|
1499
1502
|
if component_part_name:
|
|
1500
1503
|
compdef = self._getComponentDefinition(component_part_name, pins)
|
|
1501
1504
|
else:
|
|
@@ -1523,21 +1526,21 @@ class Components(object):
|
|
|
1523
1526
|
if is_rlc and len(pins) == 2:
|
|
1524
1527
|
rlc = self._edb.utility.utility.Rlc()
|
|
1525
1528
|
rlc.IsParallel = is_parallel
|
|
1526
|
-
if r_value:
|
|
1529
|
+
if r_value is None:
|
|
1530
|
+
rlc.REnabled = False
|
|
1531
|
+
else:
|
|
1527
1532
|
rlc.REnabled = True
|
|
1528
1533
|
rlc.R = self._get_edb_value(r_value)
|
|
1534
|
+
if l_value is None:
|
|
1535
|
+
rlc.LEnabled = False
|
|
1529
1536
|
else:
|
|
1530
|
-
rlc.REnabled = False
|
|
1531
|
-
if l_value:
|
|
1532
1537
|
rlc.LEnabled = True
|
|
1533
1538
|
rlc.L = self._get_edb_value(l_value)
|
|
1539
|
+
if c_value is None:
|
|
1540
|
+
rlc.CEnabled = False
|
|
1534
1541
|
else:
|
|
1535
|
-
rlc.LEnabled = False
|
|
1536
|
-
if c_value:
|
|
1537
1542
|
rlc.CEnabled = True
|
|
1538
1543
|
rlc.C = self._get_edb_value(c_value)
|
|
1539
|
-
else:
|
|
1540
|
-
rlc.CEnabled = False
|
|
1541
1544
|
if rlc.REnabled and not rlc.CEnabled and not rlc.CEnabled:
|
|
1542
1545
|
new_cmp.SetComponentType(self._edb.definition.ComponentType.Resistor)
|
|
1543
1546
|
elif rlc.CEnabled and not rlc.REnabled and not rlc.LEnabled:
|