pyedb 0.53.0__tar.gz → 0.54.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.

Files changed (296) hide show
  1. {pyedb-0.53.0 → pyedb-0.54.0}/PKG-INFO +3 -3
  2. {pyedb-0.53.0 → pyedb-0.54.0}/pyproject.toml +2 -2
  3. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/__init__.py +1 -1
  4. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_ports_sources.py +6 -8
  5. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/configuration.py +2 -1
  6. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/model.py +1 -1
  7. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/layout.py +1 -1
  8. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/layout_obj.py +3 -3
  9. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/primitive/path.py +1 -1
  10. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/primitive/primitive.py +8 -8
  11. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/pingroup_terminal.py +1 -1
  12. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/point_terminal.py +1 -1
  13. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/terminal.py +24 -26
  14. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/components.py +24 -24
  15. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/component_def.py +3 -3
  16. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/component_model.py +1 -1
  17. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/package_def.py +1 -1
  18. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/dotnet/database.py +43 -38
  19. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/dotnet/primitive.py +16 -16
  20. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/hfss_extent_info.py +6 -6
  21. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/layer_data.py +14 -14
  22. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/padstacks_data.py +12 -12
  23. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/primitives_data.py +3 -3
  24. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/sources.py +6 -6
  25. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/variables.py +7 -3
  26. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/geometry/point_data.py +1 -1
  27. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/geometry/polygon_data.py +2 -4
  28. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/hfss.py +7 -7
  29. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/materials.py +2 -2
  30. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/modeler.py +8 -11
  31. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/nets.py +1 -1
  32. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/padstack.py +72 -1
  33. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/settings.py +24 -0
  34. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/io/siwave.py +26 -1
  35. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/siwave.py +5 -5
  36. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/stackup.py +74 -77
  37. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/heatsink.py +4 -4
  38. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/obj_base.py +1 -1
  39. pyedb-0.54.0/src/pyedb/dotnet/database/utilities/value.py +116 -0
  40. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/edb.py +43 -43
  41. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/design_types.py +12 -3
  42. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/components.py +53 -17
  43. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/materials.py +23 -30
  44. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/package_def.py +15 -15
  45. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/padstack_def.py +51 -51
  46. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/geometry/arc_data.py +7 -5
  47. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/geometry/point_3d_data.py +8 -7
  48. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/geometry/polygon_data.py +3 -2
  49. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/component.py +43 -38
  50. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/pin_pair_model.py +15 -14
  51. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/pingroup.py +9 -9
  52. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layers/stackup_layer.py +45 -44
  53. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layout/layout.py +9 -8
  54. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layout/voltage_regulator.py +7 -7
  55. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layout_validation.py +13 -12
  56. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/modeler.py +51 -54
  57. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/nets.py +42 -31
  58. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/padstacks.py +270 -175
  59. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/ports/ports.py +5 -6
  60. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/bondwire.py +8 -7
  61. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/circle.py +4 -4
  62. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/padstack_instance.py +18 -18
  63. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/path.py +7 -7
  64. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/polygon.py +3 -3
  65. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/primitive.py +13 -17
  66. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/rectangle.py +13 -13
  67. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_general_settings.py +1 -1
  68. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_simulation_setup.py +10 -0
  69. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/siwave_simulation_setup.py +17 -1
  70. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/siwave.py +30 -24
  71. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/source_excitations.py +333 -229
  72. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/stackup.py +164 -147
  73. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/bundle_terminal.py +17 -7
  74. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/edge_terminal.py +10 -0
  75. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/padstack_instance_terminal.py +15 -4
  76. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/pingroup_terminal.py +11 -10
  77. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/point_terminal.py +4 -3
  78. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/terminal/terminal.py +9 -9
  79. pyedb-0.54.0/src/pyedb/grpc/database/utility/value.py +109 -0
  80. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/edb.py +59 -38
  81. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/edb_init.py +0 -7
  82. pyedb-0.54.0/src/pyedb/misc/siw_feature_config/emc/__init__.py +0 -0
  83. {pyedb-0.53.0 → pyedb-0.54.0}/LICENSE +0 -0
  84. {pyedb-0.53.0 → pyedb-0.54.0}/README.md +0 -0
  85. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/common/__init__.py +0 -0
  86. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/common/nets.py +0 -0
  87. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/component_libraries/ansys_components.py +0 -0
  88. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/__init__.py +0 -0
  89. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_boundaries.py +0 -0
  90. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_common.py +0 -0
  91. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_components.py +0 -0
  92. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_data.py +0 -0
  93. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_general.py +0 -0
  94. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_modeler.py +0 -0
  95. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_nets.py +0 -0
  96. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_operations.py +0 -0
  97. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_package_definition.py +0 -0
  98. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_padstacks.py +0 -0
  99. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_pin_groups.py +0 -0
  100. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_s_parameter_models.py +0 -0
  101. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_setup.py +0 -0
  102. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_spice_models.py +0 -0
  103. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/configuration/cfg_stackup.py +0 -0
  104. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/__init__.py +0 -0
  105. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/clr_module.py +0 -0
  106. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/Variables.py +0 -0
  107. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/__init__.py +0 -0
  108. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/__init__.py +0 -0
  109. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/connectable.py +0 -0
  110. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/__init__.py +0 -0
  111. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/component.py +0 -0
  112. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/hierarchy_obj.py +0 -0
  113. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/netlist_model.py +0 -0
  114. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/pin_pair_model.py +0 -0
  115. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/s_parameter_model.py +0 -0
  116. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/hierarchy/spice_model.py +0 -0
  117. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/primitive/__init__.py +0 -0
  118. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/primitive/bondwire.py +0 -0
  119. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/__init__.py +0 -0
  120. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/bundle_terminal.py +0 -0
  121. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/edge_terminal.py +0 -0
  122. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/terminal/padstack_instance_terminal.py +0 -0
  123. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/cell/voltage_regulator.py +0 -0
  124. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/__init__.py +0 -0
  125. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/definition_obj.py +0 -0
  126. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/definition/definitions.py +0 -0
  127. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/dotnet/__init__.py +0 -0
  128. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/__init__.py +0 -0
  129. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/control_file.py +0 -0
  130. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/design_options.py +0 -0
  131. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/edbvalue.py +0 -0
  132. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/nets_data.py +0 -0
  133. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/ports.py +0 -0
  134. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/raptor_x_simulation_setup_data.py +0 -0
  135. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/simulation_configuration.py +0 -0
  136. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/edb_data/utilities.py +0 -0
  137. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/general.py +0 -0
  138. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/geometry/__init__.py +0 -0
  139. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/layout_obj_instance.py +0 -0
  140. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/layout_validation.py +0 -0
  141. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/net_class.py +0 -0
  142. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/__init__.py +0 -0
  143. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/__init__.py +0 -0
  144. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/adaptive_frequency_data.py +0 -0
  145. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/mesh_operation.py +0 -0
  146. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/sim_setup_info.py +0 -0
  147. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/simulation_settings.py +0 -0
  148. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/siw_dc_ir_settings.py +0 -0
  149. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/data/sweep_data.py +0 -0
  150. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/sim_setup_data/io/__init__.py +0 -0
  151. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/__init__.py +0 -0
  152. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/hfss_simulation_setup.py +0 -0
  153. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/simulation_setup.py +0 -0
  154. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/siwave_cpa_simulation_setup.py +0 -0
  155. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/dotnet/database/utilities/siwave_simulation_setup.py +0 -0
  156. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/edb_logger.py +0 -0
  157. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/exceptions.py +0 -0
  158. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/extensions/__init__.py +0 -0
  159. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/extensions/via_design_backend.py +0 -0
  160. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/__init__.py +0 -0
  161. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/constants.py +0 -0
  162. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/data_handlers.py +0 -0
  163. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/filesystem.py +0 -0
  164. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/general_methods.py +0 -0
  165. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/grpc_warnings.py +0 -0
  166. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/plot.py +0 -0
  167. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/process.py +0 -0
  168. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/generic/settings.py +0 -0
  169. {pyedb-0.53.0/src/pyedb/grpc/database → pyedb-0.54.0/src/pyedb/grpc}/__init__.py +0 -0
  170. {pyedb-0.53.0/src/pyedb/grpc/database/definition → pyedb-0.54.0/src/pyedb/grpc/database}/__init__.py +0 -0
  171. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/control_file.py +0 -0
  172. {pyedb-0.53.0/src/pyedb/grpc/database/geometry → pyedb-0.54.0/src/pyedb/grpc/database/definition}/__init__.py +0 -0
  173. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/component_def.py +0 -0
  174. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/component_model.py +0 -0
  175. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/component_pin.py +0 -0
  176. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definition/n_port_component_model.py +0 -0
  177. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/definitions.py +0 -0
  178. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/general.py +0 -0
  179. {pyedb-0.53.0/src/pyedb/grpc/database/hierarchy → pyedb-0.54.0/src/pyedb/grpc/database/geometry}/__init__.py +0 -0
  180. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/geometry/point_data.py +0 -0
  181. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hfss.py +0 -0
  182. {pyedb-0.53.0/src/pyedb/grpc/database/layers → pyedb-0.54.0/src/pyedb/grpc/database/hierarchy}/__init__.py +0 -0
  183. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/model.py +0 -0
  184. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/netlist_model.py +0 -0
  185. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/s_parameter_model.py +0 -0
  186. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/hierarchy/spice_model.py +0 -0
  187. {pyedb-0.53.0/src/pyedb/grpc/database/layout → pyedb-0.54.0/src/pyedb/grpc/database/layers}/__init__.py +0 -0
  188. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layers/layer.py +0 -0
  189. {pyedb-0.53.0/src/pyedb/grpc/database/net → pyedb-0.54.0/src/pyedb/grpc/database/layout}/__init__.py +0 -0
  190. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/layout/cell.py +0 -0
  191. {pyedb-0.53.0/src/pyedb/grpc/database/ports → pyedb-0.54.0/src/pyedb/grpc/database/net}/__init__.py +0 -0
  192. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/net/differential_pair.py +0 -0
  193. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/net/extended_net.py +0 -0
  194. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/net/net.py +0 -0
  195. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/net/net_class.py +0 -0
  196. {pyedb-0.53.0/src/pyedb/grpc/database/simulation_setup → pyedb-0.54.0/src/pyedb/grpc/database/ports}/__init__.py +0 -0
  197. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/primitive/__init__.py +0 -0
  198. {pyedb-0.53.0/src/pyedb/grpc/database/terminal → pyedb-0.54.0/src/pyedb/grpc/database/simulation_setup}/__init__.py +0 -0
  199. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/adaptive_frequency.py +0 -0
  200. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_advanced_meshing_settings.py +0 -0
  201. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_advanced_settings.py +0 -0
  202. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_dcr_settings.py +0 -0
  203. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_settings_options.py +0 -0
  204. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_simulation_settings.py +0 -0
  205. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/hfss_solver_settings.py +0 -0
  206. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/mesh_operation.py +0 -0
  207. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_advanced_settings.py +0 -0
  208. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_general_settings.py +0 -0
  209. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_settings.py +0 -0
  210. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/raptor_x_simulation_setup.py +0 -0
  211. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/siwave_cpa_simulation_setup.py +0 -0
  212. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/siwave_dcir_simulation_setup.py +0 -0
  213. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/simulation_setup/sweep_data.py +0 -0
  214. {pyedb-0.53.0/src/pyedb/ipc2581 → pyedb-0.54.0/src/pyedb/grpc/database/terminal}/__init__.py +0 -0
  215. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/__init__.py +0 -0
  216. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/constants.py +0 -0
  217. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/heat_sink.py +0 -0
  218. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/hfss_extent_info.py +0 -0
  219. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/layout_statistics.py +0 -0
  220. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/rlc.py +0 -0
  221. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/sources.py +0 -0
  222. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/sweep_data_distribution.py +0 -0
  223. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/database/utility/xml_control_file.py +0 -0
  224. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/grpc/rpc_session.py +0 -0
  225. {pyedb-0.53.0/src/pyedb/ipc2581/bom → pyedb-0.54.0/src/pyedb/ipc2581}/__init__.py +0 -0
  226. {pyedb-0.53.0/src/pyedb/ipc2581/content → pyedb-0.54.0/src/pyedb/ipc2581/bom}/__init__.py +0 -0
  227. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/bom/bom.py +0 -0
  228. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/bom/bom_item.py +0 -0
  229. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/bom/characteristics.py +0 -0
  230. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/bom/refdes.py +0 -0
  231. {pyedb-0.53.0/src/pyedb/ipc2581/ecad → pyedb-0.54.0/src/pyedb/ipc2581/content}/__init__.py +0 -0
  232. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/color.py +0 -0
  233. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/content.py +0 -0
  234. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/dictionary_color.py +0 -0
  235. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/dictionary_fill.py +0 -0
  236. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/dictionary_line.py +0 -0
  237. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/entry_color.py +0 -0
  238. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/entry_line.py +0 -0
  239. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/fill.py +0 -0
  240. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/layer_ref.py +0 -0
  241. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/content/standard_geometries_dictionary.py +0 -0
  242. {pyedb-0.53.0/src/pyedb/ipc2581/ecad/cad_data → pyedb-0.54.0/src/pyedb/ipc2581/ecad}/__init__.py +0 -0
  243. {pyedb-0.53.0/src/pyedb/misc → pyedb-0.54.0/src/pyedb/ipc2581/ecad/cad_data}/__init__.py +0 -0
  244. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/assembly_drawing.py +0 -0
  245. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/cad_data.py +0 -0
  246. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/component.py +0 -0
  247. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/drill.py +0 -0
  248. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/feature.py +0 -0
  249. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/layer.py +0 -0
  250. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/layer_feature.py +0 -0
  251. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/logical_net.py +0 -0
  252. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/outline.py +0 -0
  253. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/package.py +0 -0
  254. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_def.py +0 -0
  255. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_hole_def.py +0 -0
  256. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_instance.py +0 -0
  257. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/padstack_pad_def.py +0 -0
  258. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/path.py +0 -0
  259. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/phy_net.py +0 -0
  260. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/pin.py +0 -0
  261. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/polygon.py +0 -0
  262. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/profile.py +0 -0
  263. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/stackup.py +0 -0
  264. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_group.py +0 -0
  265. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/stackup_layer.py +0 -0
  266. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_data/step.py +0 -0
  267. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/cad_header.py +0 -0
  268. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/ecad.py +0 -0
  269. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ecad/spec.py +0 -0
  270. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/history_record.py +0 -0
  271. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/ipc2581.py +0 -0
  272. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/ipc2581/logistic_header.py +0 -0
  273. {pyedb-0.53.0/src/pyedb/misc/siw_feature_config → pyedb-0.54.0/src/pyedb/misc}/__init__.py +0 -0
  274. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/aedtlib_personalib_install.py +0 -0
  275. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/downloads.py +0 -0
  276. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/misc.py +0 -0
  277. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/pyedb.runtimeconfig.json +0 -0
  278. {pyedb-0.53.0/src/pyedb/misc/siw_feature_config/emc → pyedb-0.54.0/src/pyedb/misc/siw_feature_config}/__init__.py +0 -0
  279. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/emc/component_tags.py +0 -0
  280. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/emc/net_tags.py +0 -0
  281. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/emc/tag_library.py +0 -0
  282. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/emc/xml_generic.py +0 -0
  283. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/emc_rule_checker_settings.py +0 -0
  284. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/fd_xtalk_scan_config.py +0 -0
  285. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/impedance_scan_config.py +0 -0
  286. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/net.py +0 -0
  287. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/pins.py +0 -0
  288. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/scan_config.py +0 -0
  289. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/siw_feature_config/xtalk_scan/td_xtalk_config.py +0 -0
  290. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/misc/utilities.py +0 -0
  291. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/modeler/geometry_operators.py +0 -0
  292. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/siwave.py +0 -0
  293. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/siwave_core/cpa/simulation_setup_data_model.py +0 -0
  294. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/siwave_core/icepak.py +0 -0
  295. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/siwave_core/product_properties.py +0 -0
  296. {pyedb-0.53.0 → pyedb-0.54.0}/src/pyedb/workflow.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyedb
3
- Version: 0.53.0
3
+ Version: 0.54.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>
@@ -27,8 +27,8 @@ Requires-Dist: Rtree >= 1.2.0
27
27
  Requires-Dist: toml == 0.10.2
28
28
  Requires-Dist: shapely
29
29
  Requires-Dist: scikit-rf
30
- Requires-Dist: ansys-edb-core>=0.2.0.dev0
31
- Requires-Dist: ansys-api-edb>=0.2.0.dev0
30
+ Requires-Dist: ansys-edb-core>=0.2.0
31
+ Requires-Dist: ansys-api-edb>=0.2.0
32
32
  Requires-Dist: psutil
33
33
  Requires-Dist: ansys-sphinx-theme>=1.0.0,<1.5 ; extra == "doc"
34
34
  Requires-Dist: imageio>=2.30.0,<2.38 ; extra == "doc"
@@ -36,8 +36,8 @@ dependencies = [
36
36
  "toml == 0.10.2",
37
37
  "shapely",
38
38
  "scikit-rf",
39
- "ansys-edb-core>=0.2.0.dev0",
40
- "ansys-api-edb>=0.2.0.dev0",
39
+ "ansys-edb-core>=0.2.0",
40
+ "ansys-api-edb>=0.2.0",
41
41
  "psutil",
42
42
  ]
43
43
 
@@ -44,7 +44,7 @@ deprecation_warning()
44
44
  #
45
45
 
46
46
  pyedb_path = os.path.dirname(__file__)
47
- __version__ = "0.53.0"
47
+ __version__ = "0.54.0"
48
48
  version = __version__
49
49
 
50
50
  #
@@ -58,7 +58,7 @@ class CfgTerminalInfo(CfgBase):
58
58
  self.contact_type = kwargs.get("contact_type", "default") # options are full, center, quad, inline
59
59
  contact_radius = "0.1mm" if kwargs.get("contact_radius") is None else kwargs.get("contact_radius")
60
60
 
61
- self.contact_radius = self._pedb.edb_value(contact_radius).ToDouble()
61
+ self.contact_radius = self._pedb.value(contact_radius)
62
62
  self.num_of_contact = kwargs.get("num_of_contact", 4)
63
63
  self.contact_expansion = kwargs.get("contact_expansion", 1)
64
64
 
@@ -678,11 +678,9 @@ class CfgEdgePort:
678
678
  def set_parameters_to_edb(self):
679
679
  point_on_edge = PointData(self._pedb, x=self.point_on_edge[0], y=self.point_on_edge[1])
680
680
  primitive = self._pedb.layout.primitives_by_aedt_name[self.primitive_name]
681
- pos_edge = self._pedb.edb_api.cell.terminal.PrimitiveEdge.Create(
682
- primitive._edb_object, point_on_edge._edb_object
683
- )
684
- pos_edge = convert_py_list_to_net_list(pos_edge, self._pedb.edb_api.cell.terminal.Edge)
685
- edge_term = self._pedb.edb_api.cell.terminal.EdgeTerminal.Create(
681
+ pos_edge = self._pedb.core.cell.terminal.PrimitiveEdge.Create(primitive._edb_object, point_on_edge._edb_object)
682
+ pos_edge = convert_py_list_to_net_list(pos_edge, self._pedb.core.cell.terminal.Edge)
683
+ edge_term = self._pedb.core.cell.terminal.EdgeTerminal.Create(
686
684
  primitive._edb_object.GetLayout(),
687
685
  primitive._edb_object.GetNet(),
688
686
  self.name,
@@ -755,9 +753,9 @@ class CfgDiffWavePort:
755
753
  pos_term = self.positive_port.set_parameters_to_edb()
756
754
  neg_term = self.negative_port.set_parameters_to_edb()
757
755
  edb_list = convert_py_list_to_net_list(
758
- [pos_term._edb_object, neg_term._edb_object], self._pedb.edb_api.cell.terminal.Terminal
756
+ [pos_term._edb_object, neg_term._edb_object], self._pedb.core.cell.terminal.Terminal
759
757
  )
760
- _edb_boundle_terminal = self._pedb.edb_api.cell.terminal.BundleTerminal.Create(edb_list)
758
+ _edb_boundle_terminal = self._pedb.core.cell.terminal.BundleTerminal.Create(edb_list)
761
759
  _edb_boundle_terminal.SetName(self.name)
762
760
  pos, neg = list(_edb_boundle_terminal.GetTerminals())
763
761
  pos.SetName(self.name + ":T1")
@@ -261,6 +261,7 @@ class Configuration:
261
261
 
262
262
  def get_variables(self):
263
263
  """Retrieve variables from database."""
264
+ self.cfg_data.variables.variables = []
264
265
  for name, obj in self._pedb.design_variables.items():
265
266
  self.cfg_data.variables.add_variable(name, obj.value_string, obj.description)
266
267
  for name, obj in self._pedb.project_variables.items():
@@ -422,7 +423,7 @@ class Configuration:
422
423
  if kwargs.get("general", False):
423
424
  data["general"] = self.cfg_data.general.get_data_from_db()
424
425
  if kwargs.get("variables", False):
425
- data["variables"] = self.cfg_data.variables.model_dump(exclude_none=True)
426
+ data.update(self.cfg_data.variables.model_dump(exclude_none=True))
426
427
  if kwargs.get("stackup", False):
427
428
  data["stackup"] = self.cfg_data.stackup.model_dump(exclude_none=True)
428
429
  if kwargs.get("package_definitions", False):
@@ -28,7 +28,7 @@ class Model(ObjBase):
28
28
 
29
29
  def __init__(self, pedb, edb_object):
30
30
  super().__init__(pedb, edb_object)
31
- self._model_type_mapping = {"PinPairModel": self._pedb.edb_api.cell}
31
+ self._model_type_mapping = {"PinPairModel": self._pedb.core.cell}
32
32
 
33
33
  @property
34
34
  def model_type(self):
@@ -102,7 +102,7 @@ class Layout(ObjBase):
102
102
 
103
103
  @property
104
104
  def _edb(self):
105
- return self._pedb.edb_api
105
+ return self._pedb.core
106
106
 
107
107
  def expanded_extent(self, nets, extent, expansion_factor, expansion_unitless, use_round_corner, num_increments):
108
108
  """Get an expanded polygon for the Nets collection.
@@ -38,7 +38,7 @@ class LayoutObj(ObjBase):
38
38
  -------
39
39
  Ansys.Ansoft.Edb
40
40
  """
41
- return self._pedb.edb_api
41
+ return self._pedb.core
42
42
 
43
43
  @property
44
44
  def _layout_obj_instance(self):
@@ -48,12 +48,12 @@ class LayoutObj(ObjBase):
48
48
 
49
49
  @property
50
50
  def _edb_properties(self):
51
- p = self._edb_object.GetProductSolverOption(self._edb.edb_api.ProductId.Designer, "HFSS")
51
+ p = self._edb_object.GetProductSolverOption(self._edb.core.ProductId.Designer, "HFSS")
52
52
  return p
53
53
 
54
54
  @_edb_properties.setter
55
55
  def _edb_properties(self, value):
56
- self._edb_object.SetProductSolverOption(self._edb.edb_api.ProductId.Designer, "HFSS", value)
56
+ self._edb_object.SetProductSolverOption(self._edb.core.ProductId.Designer, "HFSS", value)
57
57
 
58
58
  @property
59
59
  def _obj_type(self):
@@ -155,7 +155,7 @@ class Path(Primitive):
155
155
  width = self.width
156
156
  corner_style = self.corner_style
157
157
  end_cap_style = self.get_end_cap_style()
158
- cloned_path = self._app.edb_api.cell.primitive.path.create(
158
+ cloned_path = self._app.core.cell.primitive.path.create(
159
159
  self._app.active_layout,
160
160
  self.layer_name,
161
161
  self.net,
@@ -264,10 +264,10 @@ class Primitive(Connectable):
264
264
  """
265
265
  bbox = self.polygon_data._edb_object.GetBBox()
266
266
  return [
267
- round(bbox.Item1.X.ToDouble(), 6),
268
- round(bbox.Item1.Y.ToDouble(), 6),
269
- round(bbox.Item2.X.ToDouble(), 6),
270
- round(bbox.Item2.Y.ToDouble(), 6),
267
+ round(bbox.Item1.X.ToDouble(), 9),
268
+ round(bbox.Item1.Y.ToDouble(), 9),
269
+ round(bbox.Item2.X.ToDouble(), 9),
270
+ round(bbox.Item2.Y.ToDouble(), 9),
271
271
  ]
272
272
 
273
273
  def convert_to_polygon(self):
@@ -336,7 +336,7 @@ class Primitive(Connectable):
336
336
  list of float
337
337
  """
338
338
  if isinstance(point, (list, tuple)):
339
- point = self._app.edb_api.geometry.point_data(self._app.edb_value(point[0]), self._app.edb_value(point[1]))
339
+ point = self._app.core.geometry.point_data(self._app.edb_value(point[0]), self._app.edb_value(point[1]))
340
340
 
341
341
  p0 = self.polygon_data._edb_object.GetClosestPoint(point)
342
342
  return [p0.X.ToDouble(), p0.Y.ToDouble()]
@@ -540,7 +540,7 @@ class Primitive(Connectable):
540
540
  -------
541
541
  list of float
542
542
  """
543
- if isinstance(point, self._app.edb_api.geometry.geometry.PointData):
543
+ if isinstance(point, self._app.core.geometry.geometry.PointData):
544
544
  point = [point.X.ToDouble(), point.Y.ToDouble()]
545
545
  dist = 1e12
546
546
  out = None
@@ -821,7 +821,7 @@ class Primitive(Connectable):
821
821
  r"$end 'EM properties'\n"
822
822
  )
823
823
 
824
- pid = self._pedb.edb_api.ProductId.Designer
824
+ pid = self._pedb.core.ProductId.Designer
825
825
  _, p = self._edb_object.GetProductProperty(pid, 18, "")
826
826
  if p:
827
827
  return p
@@ -831,7 +831,7 @@ class Primitive(Connectable):
831
831
  @_em_properties.setter
832
832
  def _em_properties(self, em_prop):
833
833
  """Set EM properties"""
834
- pid = self._pedb.edb_api.ProductId.Designer
834
+ pid = self._pedb.core.ProductId.Designer
835
835
  self._edb_object.SetProductProperty(pid, 18, em_prop)
836
836
 
837
837
  @property
@@ -48,7 +48,7 @@ class PinGroupTerminal(Terminal):
48
48
  :class:`pyedb.dotnet.database.edb_data.terminals.PinGroupTerminal`
49
49
  """
50
50
  net_obj = self._pedb.layout.find_net_by_name(net_name)
51
- term = self._pedb.edb_api.cell.terminal.PinGroupTerminal.Create(
51
+ term = self._pedb.core.cell.terminal.PinGroupTerminal.Create(
52
52
  self._pedb.active_layout,
53
53
  net_obj._edb_object,
54
54
  name,
@@ -50,7 +50,7 @@ class PointTerminal(Terminal):
50
50
  -------
51
51
  :class:`pyedb.dotnet.database.edb_data.terminals.PointTerminal`
52
52
  """
53
- terminal = self._pedb.edb_api.cell.terminal.PointTerminal.Create(
53
+ terminal = self._pedb.core.cell.terminal.PointTerminal.Create(
54
54
  self._pedb.active_layout,
55
55
  self._pedb.layout.find_net_by_name(net)._edb_object,
56
56
  name,
@@ -34,26 +34,26 @@ class Terminal(Connectable):
34
34
  self._reference_object = None
35
35
 
36
36
  self._boundary_type_mapping = {
37
- "InvalidBoundary": self._pedb.edb_api.cell.terminal.BoundaryType.InvalidBoundary,
38
- "PortBoundary": self._pedb.edb_api.cell.terminal.BoundaryType.PortBoundary,
39
- "PecBoundary": self._pedb.edb_api.cell.terminal.BoundaryType.PecBoundary,
40
- "RlcBoundary": self._pedb.edb_api.cell.terminal.BoundaryType.RlcBoundary,
41
- "kCurrentSource": self._pedb.edb_api.cell.terminal.BoundaryType.kCurrentSource,
42
- "kVoltageSource": self._pedb.edb_api.cell.terminal.BoundaryType.kVoltageSource,
43
- "kNexximGround": self._pedb.edb_api.cell.terminal.BoundaryType.kNexximGround,
44
- "kNexximPort": self._pedb.edb_api.cell.terminal.BoundaryType.kNexximPort,
45
- "kDcTerminal": self._pedb.edb_api.cell.terminal.BoundaryType.kDcTerminal,
46
- "kVoltageProbe": self._pedb.edb_api.cell.terminal.BoundaryType.kVoltageProbe,
37
+ "InvalidBoundary": self._pedb.core.cell.terminal.BoundaryType.InvalidBoundary,
38
+ "PortBoundary": self._pedb.core.cell.terminal.BoundaryType.PortBoundary,
39
+ "PecBoundary": self._pedb.core.cell.terminal.BoundaryType.PecBoundary,
40
+ "RlcBoundary": self._pedb.core.cell.terminal.BoundaryType.RlcBoundary,
41
+ "kCurrentSource": self._pedb.core.cell.terminal.BoundaryType.kCurrentSource,
42
+ "kVoltageSource": self._pedb.core.cell.terminal.BoundaryType.kVoltageSource,
43
+ "kNexximGround": self._pedb.core.cell.terminal.BoundaryType.kNexximGround,
44
+ "kNexximPort": self._pedb.core.cell.terminal.BoundaryType.kNexximPort,
45
+ "kDcTerminal": self._pedb.core.cell.terminal.BoundaryType.kDcTerminal,
46
+ "kVoltageProbe": self._pedb.core.cell.terminal.BoundaryType.kVoltageProbe,
47
47
  }
48
48
 
49
49
  self._terminal_type_mapping = {
50
- "InvalidTerminal": self._pedb.edb_api.cell.terminal.TerminalType.InvalidTerminal,
51
- "EdgeTerminal": self._pedb.edb_api.cell.terminal.TerminalType.EdgeTerminal,
52
- "PointTerminal": self._pedb.edb_api.cell.terminal.TerminalType.PointTerminal,
53
- "TerminalInstanceTerminal": self._pedb.edb_api.cell.terminal.TerminalType.TerminalInstanceTerminal,
54
- "PadstackInstanceTerminal": self._pedb.edb_api.cell.terminal.TerminalType.PadstackInstanceTerminal,
55
- "BundleTerminal": self._pedb.edb_api.cell.terminal.TerminalType.BundleTerminal,
56
- "PinGroupTerminal": self._pedb.edb_api.cell.terminal.TerminalType.PinGroupTerminal,
50
+ "InvalidTerminal": self._pedb.core.cell.terminal.TerminalType.InvalidTerminal,
51
+ "EdgeTerminal": self._pedb.core.cell.terminal.TerminalType.EdgeTerminal,
52
+ "PointTerminal": self._pedb.core.cell.terminal.TerminalType.PointTerminal,
53
+ "TerminalInstanceTerminal": self._pedb.core.cell.terminal.TerminalType.TerminalInstanceTerminal,
54
+ "PadstackInstanceTerminal": self._pedb.core.cell.terminal.TerminalType.PadstackInstanceTerminal,
55
+ "BundleTerminal": self._pedb.core.cell.terminal.TerminalType.BundleTerminal,
56
+ "PinGroupTerminal": self._pedb.core.cell.terminal.TerminalType.PinGroupTerminal,
57
57
  }
58
58
 
59
59
  @property
@@ -240,10 +240,10 @@ class Terminal(Connectable):
240
240
  if not self._reference_object:
241
241
  term = self._edb_object
242
242
 
243
- if self.terminal_type == self._pedb.edb_api.cell.terminal.TerminalType.EdgeTerminal:
243
+ if self.terminal_type == self._pedb.core.cell.terminal.TerminalType.EdgeTerminal:
244
244
  edges = self._edb_object.GetEdges()
245
245
  edgeType = edges[0].GetEdgeType()
246
- if edgeType == self._pedb.edb_api.cell.terminal.EdgeType.PadEdge:
246
+ if edgeType == self._pedb.core.cell.terminal.EdgeType.PadEdge:
247
247
  self._reference_object = self.get_pad_edge_terminal_reference_pin()
248
248
  else:
249
249
  self._reference_object = self.get_edge_terminal_reference_primitive()
@@ -304,16 +304,14 @@ class Terminal(Connectable):
304
304
  """
305
305
 
306
306
  refTerm = self._edb_object.GetReferenceTerminal()
307
- if self._edb_object.GetTerminalType() == self._pedb.edb_api.cell.terminal.TerminalType.PinGroupTerminal:
307
+ if self._edb_object.GetTerminalType() == self._pedb.core.cell.terminal.TerminalType.PinGroupTerminal:
308
308
  padStackInstance = self._edb_object.GetPinGroup().GetPins()[0]
309
309
  pingroup = refTerm.GetPinGroup()
310
310
  refPinList = pingroup.GetPins()
311
311
  return self._get_closest_pin(padStackInstance, refPinList, gnd_net_name_preference)
312
- elif (
313
- self._edb_object.GetTerminalType() == self._pedb.edb_api.cell.terminal.TerminalType.PadstackInstanceTerminal
314
- ):
312
+ elif self._edb_object.GetTerminalType() == self._pedb.core.cell.terminal.TerminalType.PadstackInstanceTerminal:
315
313
  _, padStackInstance, _ = self._edb_object.GetParameters()
316
- if refTerm.GetTerminalType() == self._pedb.edb_api.cell.terminal.TerminalType.PinGroupTerminal:
314
+ if refTerm.GetTerminalType() == self._pedb.core.cell.terminal.TerminalType.PinGroupTerminal:
317
315
  pingroup = refTerm.GetPinGroup()
318
316
  refPinList = pingroup.GetPins()
319
317
  return self._get_closest_pin(padStackInstance, refPinList, gnd_net_name_preference)
@@ -339,7 +337,7 @@ class Terminal(Connectable):
339
337
  _, _, point_data = edges[0].GetParameters()
340
338
  X = point_data.X
341
339
  Y = point_data.Y
342
- shape_pd = self._pedb.edb_api.geometry.point_data(X, Y)
340
+ shape_pd = self._pedb.core.geometry.point_data(X, Y)
343
341
  layer_name = ref_layer.GetName()
344
342
  for primitive in self._pedb.layout.primitives:
345
343
  if primitive.GetLayer().GetName() == layer_name or not layer_name:
@@ -361,7 +359,7 @@ class Terminal(Connectable):
361
359
  _, point_data, layer = ref_term.GetParameters()
362
360
  X = point_data.X
363
361
  Y = point_data.Y
364
- shape_pd = self._pedb.edb_api.geometry.point_data(X, Y)
362
+ shape_pd = self._pedb.core.geometry.point_data(X, Y)
365
363
  layer_name = layer.GetName()
366
364
  for primitive in self._pedb.layout.primitives:
367
365
  if primitive.GetLayer().GetName() == layer_name:
@@ -125,7 +125,7 @@ class Components(object):
125
125
 
126
126
  @property
127
127
  def _edb(self):
128
- return self._pedb.edb_api
128
+ return self._pedb.core
129
129
 
130
130
  def _get_edb_value(self, value):
131
131
  return self._pedb.edb_value(value)
@@ -496,7 +496,7 @@ class Components(object):
496
496
  return cmp_list
497
497
 
498
498
  def _get_edb_pin_from_pin_name(self, cmp, pin):
499
- if not isinstance(cmp, self._pedb.edb_api.cell.hierarchy.component):
499
+ if not isinstance(cmp, self._pedb.core.cell.hierarchy.component):
500
500
  return False
501
501
  if not isinstance(pin, str):
502
502
  pin = pin.GetName()
@@ -619,7 +619,7 @@ class Components(object):
619
619
 
620
620
  """
621
621
  if cmp is not None:
622
- if not (isinstance(cmp, self._pedb.edb_api.cell.hierarchy.component)):
622
+ if not (isinstance(cmp, self._pedb.core.cell.hierarchy.component)):
623
623
  cmp = self.get_component_by_name(cmp)
624
624
  cmp_prop = cmp.GetComponentProperty().Clone()
625
625
  return cmp_prop.GetSolderBallProperty().GetHeight()
@@ -1316,7 +1316,7 @@ class Components(object):
1316
1316
  pins = self.get_pin_from_component(component.refdes)
1317
1317
  if len(pins) == 2: # pragma: no cover
1318
1318
  pin_layers = self._padstack._get_pin_layer_range(pins[0])
1319
- pos_pin_term = self._pedb.edb_api.cell.terminal.PadstackInstanceTerminal.Create(
1319
+ pos_pin_term = self._pedb.core.cell.terminal.PadstackInstanceTerminal.Create(
1320
1320
  self._active_layout,
1321
1321
  pins[0].net._edb_object,
1322
1322
  f"{component.refdes}_{pins[0]._edb_object.GetName()}",
@@ -1326,7 +1326,7 @@ class Components(object):
1326
1326
  )
1327
1327
  if not pos_pin_term: # pragma: no cover
1328
1328
  return False
1329
- neg_pin_term = self._pedb.edb_api.cell.terminal.PadstackInstanceTerminal.Create(
1329
+ neg_pin_term = self._pedb.core.cell.terminal.PadstackInstanceTerminal.Create(
1330
1330
  self._active_layout,
1331
1331
  pins[1].net._edb_object,
1332
1332
  f"{component.refdes}_{pins[1]._edb_object.GetName()}_ref",
@@ -1337,11 +1337,11 @@ class Components(object):
1337
1337
  if not neg_pin_term: # pragma: no cover
1338
1338
  return False
1339
1339
  if pec_boundary:
1340
- pos_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.PecBoundary)
1341
- neg_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.PecBoundary)
1340
+ pos_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.PecBoundary)
1341
+ neg_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.PecBoundary)
1342
1342
  else:
1343
- pos_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.PortBoundary)
1344
- neg_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.PortBoundary)
1343
+ pos_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.PortBoundary)
1344
+ neg_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.PortBoundary)
1345
1345
  pos_pin_term.SetName(component.refdes)
1346
1346
  pos_pin_term.SetReferenceTerminal(neg_pin_term)
1347
1347
  if circuit_ports and not pec_boundary:
@@ -1382,7 +1382,7 @@ class Components(object):
1382
1382
  pins = self.get_pin_from_component(component.refdes)
1383
1383
  if len(pins) == 2: # pragma: no cover
1384
1384
  pin_layer = self._padstack._get_pin_layer_range(pins[0])[0]
1385
- pos_pin_term = self._pedb.edb_api.cell.terminal.PadstackInstanceTerminal.Create(
1385
+ pos_pin_term = self._pedb.core.cell.terminal.PadstackInstanceTerminal.Create(
1386
1386
  self._active_layout,
1387
1387
  pins[0]._edb_object.GetNet(),
1388
1388
  f"{component.refdes}_{pins[0]._edb_object.GetName()}",
@@ -1392,7 +1392,7 @@ class Components(object):
1392
1392
  )
1393
1393
  if not pos_pin_term: # pragma: no cover
1394
1394
  return False
1395
- neg_pin_term = self._pedb.edb_api.cell.terminal.PadstackInstanceTerminal.Create(
1395
+ neg_pin_term = self._pedb.core.cell.terminal.PadstackInstanceTerminal.Create(
1396
1396
  self._active_layout,
1397
1397
  pins[1]._edb_object.GetNet(),
1398
1398
  f"{component.refdes}_{pins[1]._edb_object.GetName()}_ref",
@@ -1402,13 +1402,13 @@ class Components(object):
1402
1402
  )
1403
1403
  if not neg_pin_term: # pragma: no cover
1404
1404
  return False
1405
- pos_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.RlcBoundary)
1405
+ pos_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.RlcBoundary)
1406
1406
  if not circuit_type:
1407
1407
  pos_pin_term.SetIsCircuitPort(False)
1408
1408
  else:
1409
1409
  pos_pin_term.SetIsCircuitPort(True)
1410
1410
  pos_pin_term.SetName(component.refdes)
1411
- neg_pin_term.SetBoundaryType(self._pedb.edb_api.cell.terminal.BoundaryType.RlcBoundary)
1411
+ neg_pin_term.SetBoundaryType(self._pedb.core.cell.terminal.BoundaryType.RlcBoundary)
1412
1412
  if not circuit_type:
1413
1413
  neg_pin_term.SetIsCircuitPort(False)
1414
1414
  else:
@@ -1488,9 +1488,9 @@ class Components(object):
1488
1488
  return False
1489
1489
 
1490
1490
  def _getComponentDefinition(self, name, pins):
1491
- componentDefinition = self._pedb.edb_api.definition.ComponentDef.FindByName(self._db, name)
1491
+ componentDefinition = self._pedb.core.definition.ComponentDef.FindByName(self._db, name)
1492
1492
  if componentDefinition.IsNull():
1493
- componentDefinition = self._pedb.edb_api.definition.ComponentDef.Create(self._db, name, None)
1493
+ componentDefinition = self._pedb.core.definition.ComponentDef.Create(self._db, name, None)
1494
1494
  if componentDefinition.IsNull():
1495
1495
  self._logger.error("Failed to create component definition {}".format(name))
1496
1496
  return None
@@ -1499,7 +1499,7 @@ class Components(object):
1499
1499
  if not pin.GetName():
1500
1500
  pin.SetName(str(ind))
1501
1501
  ind += 1
1502
- componentDefinitionPin = self._pedb.edb_api.definition.ComponentDefPin.Create(
1502
+ componentDefinitionPin = self._pedb.core.definition.ComponentDefPin.Create(
1503
1503
  componentDefinition, pin.GetName()
1504
1504
  )
1505
1505
  if componentDefinitionPin.IsNull():
@@ -1614,7 +1614,7 @@ class Components(object):
1614
1614
  compdef = self._getComponentDefinition(component_name, pins)
1615
1615
  if not compdef:
1616
1616
  return False
1617
- new_cmp = self._pedb.edb_api.cell.hierarchy.component.Create(
1617
+ new_cmp = self._pedb.core.cell.hierarchy.component.Create(
1618
1618
  self._active_layout, component_name, compdef.GetName()
1619
1619
  )
1620
1620
 
@@ -2053,7 +2053,7 @@ class Components(object):
2053
2053
  >>> edbapp.components.set_solder_ball("A1")
2054
2054
 
2055
2055
  """
2056
- if not isinstance(component, self._pedb.edb_api.cell.hierarchy.component):
2056
+ if not isinstance(component, self._pedb.core.cell.hierarchy.component):
2057
2057
  edb_cmp = self.get_component_by_name(component)._edb_object
2058
2058
  cmp = self.instances[component]
2059
2059
  else: # pragma: no cover
@@ -2388,7 +2388,7 @@ class Components(object):
2388
2388
  reference_designator : str
2389
2389
  Reference designator of the component.
2390
2390
  """
2391
- obj = self._pedb.edb_api.cell.hierarchy.component.FindByName(self._active_layout, reference_designator)
2391
+ obj = self._pedb.core.cell.hierarchy.component.FindByName(self._active_layout, reference_designator)
2392
2392
  return EDBComponent(self._pedb, obj)
2393
2393
 
2394
2394
  def get_pin_from_component(self, component, netName=None, pinName=None, net_name=None, pin_name=None):
@@ -2427,8 +2427,8 @@ class Components(object):
2427
2427
 
2428
2428
  """
2429
2429
  warnings.warn("Use new property :func:`edb.padstacks.get_instances` instead.", DeprecationWarning)
2430
- if not isinstance(component, self._pedb.edb_api.cell.hierarchy.component):
2431
- component = self._pedb.edb_api.cell.hierarchy.component.FindByName(self._active_layout, component)
2430
+ if not isinstance(component, self._pedb.core.cell.hierarchy.component):
2431
+ component = self._pedb.core.cell.hierarchy.component.FindByName(self._active_layout, component)
2432
2432
  if pinName:
2433
2433
  warnings.warn("Use argument `pin_name` instead of `pinName`", DeprecationWarning)
2434
2434
  if netName:
@@ -2490,7 +2490,7 @@ class Components(object):
2490
2490
  if isinstance(pin, EDBPadstackInstance):
2491
2491
  pin = pin._edb_padstackinstance
2492
2492
  val = String("")
2493
- _, name = pin.GetProductProperty(self._edb.edb_api.ProductId.Designer, 11, val)
2493
+ _, name = pin.GetProductProperty(self._edb.core.ProductId.Designer, 11, val)
2494
2494
  name = str(name).strip("'")
2495
2495
  return name
2496
2496
 
@@ -2766,8 +2766,8 @@ class Components(object):
2766
2766
  elif pars:
2767
2767
  delta_pins.append(1.5 * pars[0])
2768
2768
  w = min(pars[0], w)
2769
- elif pad.polygon_data.edb_api: # pragma: no cover
2770
- bbox = pad.polygon_data.edb_api.GetBBox()
2769
+ elif pad.polygon_data.core: # pragma: no cover
2770
+ bbox = pad.polygon_data.core.GetBBox()
2771
2771
  lower = [bbox.Item1.X.ToDouble(), bbox.Item1.Y.ToDouble()]
2772
2772
  upper = [bbox.Item2.X.ToDouble(), bbox.Item2.Y.ToDouble()]
2773
2773
  pars = [abs(lower[0] - upper[0]), abs(lower[1] - upper[1])]
@@ -88,7 +88,7 @@ class EDBComponentDef(ObjBase):
88
88
 
89
89
  comp_list = [
90
90
  EDBComponent(self._pedb, l)
91
- for l in self._pedb.edb_api.cell.hierarchy.component.FindByComponentDef(
91
+ for l in self._pedb.core.cell.hierarchy.component.FindByComponentDef(
92
92
  self._pedb.active_layout, self.part_name
93
93
  )
94
94
  ]
@@ -194,9 +194,9 @@ class EDBComponentDef(ObjBase):
194
194
  self._add_component_model(n_port_comp_model)
195
195
 
196
196
  def create(self, name):
197
- cell_type = self._pedb.edb_api.cell.CellType.FootprintCell
197
+ cell_type = self._pedb.core.cell.CellType.FootprintCell
198
198
  footprint_cell = self._pedb._active_cell.cell.Create(self._pedb.active_db, cell_type, name)
199
- edb_object = self._pedb.edb_api.definition.ComponentDef.Create(self._pedb.active_db, name, footprint_cell)
199
+ edb_object = self._pedb.core.definition.ComponentDef.Create(self._pedb.active_db, name, footprint_cell)
200
200
  return EDBComponentDef(self._pedb, edb_object)
201
201
 
202
202
  def get_properties(self):
@@ -28,7 +28,7 @@ class ComponentModel(ObjBase):
28
28
 
29
29
  def __init__(self, pedb, edb_object):
30
30
  super().__init__(pedb, edb_object)
31
- self._model_type_mapping = {"PinPairModel": self._pedb.edb_api.cell}
31
+ self._model_type_mapping = {"PinPairModel": self._pedb.core.cell}
32
32
 
33
33
 
34
34
  class NPortComponentModel(ComponentModel):
@@ -62,7 +62,7 @@ class PackageDef(ObjBase):
62
62
  edb_object: object
63
63
  EDB PackageDef Object
64
64
  """
65
- edb_object = self._pedb.edb_api.definition.PackageDef.Create(self._pedb.active_db, name)
65
+ edb_object = self._pedb.core.definition.PackageDef.Create(self._pedb.active_db, name)
66
66
  if component_part_name:
67
67
  x_pt1, y_pt1, x_pt2, y_pt2 = list(
68
68
  self._pedb.components.definitions[component_part_name].components.values()