ansys-edb-core 0.3.0.dev9__tar.gz → 0.4.0.dev0__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.
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/LICENSE +21 -21
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/PKG-INFO +25 -45
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/README.rst +83 -83
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/pyproject.toml +80 -81
- ansys_edb_core-0.4.0.dev0/src/ansys/edb/core/__init__.py +8 -0
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/database.py +405 -405
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/bondwire_def.py +335 -335
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_def.py +221 -221
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_model.py +186 -186
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_pin.py +80 -80
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/component_property.py +86 -86
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/dataset_def.py +100 -100
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/debye_model.py +133 -133
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/die_property.py +86 -86
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/dielectric_material_model.py +31 -31
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/djordjecvic_sarkar_model.py +83 -83
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/ic_component_property.py +72 -72
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/io_component_property.py +62 -62
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/material_def.py +387 -387
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/material_property_thermal_modifier.py +103 -103
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/multipole_debye_model.py +62 -62
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/package_def.py +246 -246
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/padstack_def.py +105 -105
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/padstack_def_data.py +454 -454
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/port_property.py +83 -83
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/rlc_component_property.py +35 -35
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/solder_ball_property.py +136 -136
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/definition/technology_def.py +128 -128
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/edb_defs.py +41 -41
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/arc_data.py +309 -309
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/point3d_data.py +171 -171
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/point_data.py +415 -415
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/polygon_data.py +716 -716
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/r_tree.py +319 -319
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/geometry/triangle3d_data.py +51 -51
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/cell_instance.py +166 -166
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/component_group.py +124 -124
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/group.py +123 -123
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/hierarchy_obj.py +88 -88
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/inst_array.py +118 -118
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/layout_component.py +65 -65
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/model.py +18 -18
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/netlist_model.py +35 -35
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/pin_group.py +121 -121
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/pin_pair_model.py +70 -70
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/sparameter_model.py +45 -45
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/spice_model.py +87 -87
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/structure3d.py +88 -88
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/hierarchy/via_group.py +110 -110
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/__init__.py +8 -8
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/base.py +109 -109
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/conn_obj.py +206 -206
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/decorators.py +40 -40
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/edb_logging.py +227 -227
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/exceptions.py +47 -47
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/factory.py +161 -161
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/interceptors.py +258 -252
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/layout_obj.py +105 -105
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/messages.py +1507 -1506
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/parser.py +515 -515
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_info.py +1511 -1511
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_info_utils.py +37 -37
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/rpc_response_map.py +1676 -1674
- ansys_edb_core-0.4.0.dev0/src/ansys/edb/core/inner/shared_memory_transport.py +247 -0
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/utils.py +80 -80
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/inner/variable_server.py +240 -240
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/layer.py +366 -366
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/layer_collection.py +574 -574
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/stackup_layer.py +338 -338
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layer/via_layer.py +194 -194
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/cell.py +518 -518
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/layout.py +583 -583
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/mcad_model.py +275 -275
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout/voltage_regulator.py +332 -332
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_instance.py +202 -202
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_instance_context.py +87 -87
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance.py +103 -103
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_2d_geometry.py +35 -35
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_3d_geometry.py +33 -33
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/layout_instance/layout_obj_instance_geometry.py +58 -58
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/differential_pair.py +127 -127
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/extended_net.py +83 -83
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/net.py +129 -129
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/net/net_class.py +133 -133
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/board_bend_def.py +111 -111
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/bondwire.py +351 -351
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/circle.py +159 -159
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/padstack_instance.py +522 -522
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/path.py +284 -284
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/polygon.py +76 -76
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/primitive.py +194 -194
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/primitive_instance_collection.py +136 -129
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/rectangle.py +264 -264
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/primitive/text.py +104 -104
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/session.py +858 -816
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/adaptive_solutions.py +439 -439
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_pi_simulation_settings.py +261 -261
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_pi_simulation_setup.py +37 -37
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_simulation_settings.py +463 -463
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/hfss_simulation_setup.py +54 -54
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/mesh_operation.py +280 -280
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/q3d_simulation_settings.py +342 -342
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/q3d_simulation_setup.py +37 -37
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py +385 -385
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/raptor_x_simulation_setup.py +31 -31
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/simulation_settings.py +334 -334
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/simulation_setup.py +488 -488
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_dcir_simulation_settings.py +137 -137
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_dcir_simulation_setup.py +33 -33
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_psi_simulation_settings.py +364 -364
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_psi_simulation_setup.py +39 -39
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_simulation_settings.py +587 -587
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/simulation_setup/siwave_simulation_setup.py +31 -31
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/bundle_terminal.py +36 -36
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/edge_terminal.py +170 -170
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/padstack_instance_terminal.py +71 -71
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/pin_group_terminal.py +60 -60
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/point_terminal.py +69 -69
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal.py +330 -330
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal_instance.py +55 -55
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/terminal/terminal_instance_terminal.py +51 -51
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/typing/__init__.py +15 -15
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/__init__.py +1 -1
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/conversions.py +74 -74
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/edb_error_manager.py +68 -68
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/heat_sink.py +69 -69
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/hfss_extent_info.py +164 -164
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/io_manager.py +460 -460
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/layer_map.py +109 -109
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/material_property_thermal_modifier_params.py +97 -97
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/port_post_processing_prop.py +124 -124
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/rlc.py +123 -123
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/temperature_settings.py +52 -52
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/touchstone_export_settings.py +109 -109
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/transform.py +178 -178
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/transform3d.py +338 -338
- {ansys_edb_core-0.3.0.dev9 → ansys_edb_core-0.4.0.dev0}/src/ansys/edb/core/utility/value.py +351 -351
- ansys_edb_core-0.3.0.dev9/.flake8 +0 -7
- ansys_edb_core-0.3.0.dev9/.github/CODEOWNERS +0 -4
- ansys_edb_core-0.3.0.dev9/.github/dependabot.yml +0 -37
- ansys_edb_core-0.3.0.dev9/.github/workflows/ci_cd.yml +0 -228
- ansys_edb_core-0.3.0.dev9/.github/workflows/template.yml +0 -16
- ansys_edb_core-0.3.0.dev9/.gitignore +0 -173
- ansys_edb_core-0.3.0.dev9/.pre-commit-config.yaml +0 -68
- ansys_edb_core-0.3.0.dev9/AUTHORS +0 -12
- ansys_edb_core-0.3.0.dev9/CMakeLists.txt +0 -77
- ansys_edb_core-0.3.0.dev9/CODE_OF_CONDUCT.md +0 -65
- ansys_edb_core-0.3.0.dev9/CONTRIBUTING.md +0 -44
- ansys_edb_core-0.3.0.dev9/CONTRIBUTORS.md +0 -25
- ansys_edb_core-0.3.0.dev9/deps/IEDB_RPC_Services.h +0 -19
- ansys_edb_core-0.3.0.dev9/deps/rpc_executor.h +0 -193
- ansys_edb_core-0.3.0.dev9/deps/rpc_executor_bindings.cpp +0 -123
- ansys_edb_core-0.3.0.dev9/doc/.vale.ini +0 -35
- ansys_edb_core-0.3.0.dev9/doc/Makefile +0 -31
- ansys_edb_core-0.3.0.dev9/doc/make.bat +0 -56
- ansys_edb_core-0.3.0.dev9/doc/source/_static/README.md +0 -1
- ansys_edb_core-0.3.0.dev9/doc/source/_templates/README.md +0 -1
- ansys_edb_core-0.3.0.dev9/doc/source/_templates/sidebar-nav-bs.html +0 -10
- ansys_edb_core-0.3.0.dev9/doc/source/api/database.rst +0 -15
- ansys_edb_core-0.3.0.dev9/doc/source/api/definition.rst +0 -58
- ansys_edb_core-0.3.0.dev9/doc/source/api/geometry.rst +0 -29
- ansys_edb_core-0.3.0.dev9/doc/source/api/glossary.rst +0 -130
- ansys_edb_core-0.3.0.dev9/doc/source/api/hierarchy.rst +0 -38
- ansys_edb_core-0.3.0.dev9/doc/source/api/index.rst +0 -30
- ansys_edb_core-0.3.0.dev9/doc/source/api/layer.rst +0 -31
- ansys_edb_core-0.3.0.dev9/doc/source/api/layout.rst +0 -25
- ansys_edb_core-0.3.0.dev9/doc/source/api/layout_instance.rst +0 -16
- ansys_edb_core-0.3.0.dev9/doc/source/api/net.rst +0 -15
- ansys_edb_core-0.3.0.dev9/doc/source/api/primitive.rst +0 -37
- ansys_edb_core-0.3.0.dev9/doc/source/api/release_notes.rst +0 -10
- ansys_edb_core-0.3.0.dev9/doc/source/api/session.rst +0 -17
- ansys_edb_core-0.3.0.dev9/doc/source/api/simulation_setup.rst +0 -98
- ansys_edb_core-0.3.0.dev9/doc/source/api/terminal.rst +0 -27
- ansys_edb_core-0.3.0.dev9/doc/source/api/utility.rst +0 -37
- ansys_edb_core-0.3.0.dev9/doc/source/conf.py +0 -130
- ansys_edb_core-0.3.0.dev9/doc/source/contribute.rst +0 -199
- ansys_edb_core-0.3.0.dev9/doc/source/examples/index.rst +0 -52
- ansys_edb_core-0.3.0.dev9/doc/source/getting_started/index.rst +0 -27
- ansys_edb_core-0.3.0.dev9/doc/source/index.rst +0 -23
- ansys_edb_core-0.3.0.dev9/doc/source/user_guide/index.rst +0 -9
- ansys_edb_core-0.3.0.dev9/doc/styles/.gitignore +0 -6
- ansys_edb_core-0.3.0.dev9/doc/styles/config/vocabularies/ANSYS/accept.txt +0 -16
- ansys_edb_core-0.3.0.dev9/doc/styles/config/vocabularies/ANSYS/reject.txt +0 -0
- ansys_edb_core-0.3.0.dev9/notebooks/3d_comp_placement.ipynb +0 -97
- ansys_edb_core-0.3.0.dev9/notebooks/Cutout_region.ipynb +0 -254
- ansys_edb_core-0.3.0.dev9/notebooks/Define_and_assign_bondwire_profiles.ipynb +0 -302
- ansys_edb_core-0.3.0.dev9/notebooks/Move_geometry_from_existing_layer_to_new_layer.ipynb +0 -181
- ansys_edb_core-0.3.0.dev9/notebooks/PolygonOperations.ipynb +0 -117
- ansys_edb_core-0.3.0.dev9/notebooks/Remove_all_geometry_and_layers_below_L2.ipynb +0 -267
- ansys_edb_core-0.3.0.dev9/notebooks/assign_ds_model.aedb/edb.def +0 -0
- ansys_edb_core-0.3.0.dev9/notebooks/assign_ds_model.ipynb +0 -140
- ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.aedb/edb.def +0 -0
- ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.aedb/stride/model.index +0 -2
- ansys_edb_core-0.3.0.dev9/notebooks/change_capacitor_models.ipynb +0 -140
- ansys_edb_core-0.3.0.dev9/notebooks/fixtures/3d_comp_placement/3d_comp_placement.a3dcomp +0 -507
- ansys_edb_core-0.3.0.dev9/notebooks/helpers/example_setup.ipynb +0 -350
- ansys_edb_core-0.3.0.dev9/notebooks/helpers/example_teardown.ipynb +0 -36
- ansys_edb_core-0.3.0.dev9/notebooks/helpers/plot.ipynb +0 -103
- ansys_edb_core-0.3.0.dev9/notebooks/stackup_export.aedb/edb.def +0 -0
- ansys_edb_core-0.3.0.dev9/notebooks/stackup_export.ipynb +0 -204
- ansys_edb_core-0.3.0.dev9/notebooks/template.ipynb +0 -37
- ansys_edb_core-0.3.0.dev9/scripts/bootstrap.ps1 +0 -242
- ansys_edb_core-0.3.0.dev9/scripts/bootstrap.sh +0 -145
- ansys_edb_core-0.3.0.dev9/scripts/cleanipynb.py +0 -64
- ansys_edb_core-0.3.0.dev9/scripts/proto_parser/generate_rpc_info.py +0 -111
- ansys_edb_core-0.3.0.dev9/scripts/proto_parser/parse_protos.sh +0 -76
- ansys_edb_core-0.3.0.dev9/src/ansys/edb/core/__init__.py +0 -17
- ansys_edb_core-0.3.0.dev9/src/ansys_edb_core_preload.pth +0 -1
- ansys_edb_core-0.3.0.dev9/src/ansys_edb_core_preload.py +0 -95
- ansys_edb_core-0.3.0.dev9/tests/e2e/conftest.py +0 -147
- ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_padstack.py +0 -14
- ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_siwave_simulation_setup.py +0 -37
- ansys_edb_core-0.3.0.dev9/tests/e2e/integration_tests/test_spiral_inductor.py +0 -423
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/io_performance_scratch.py +0 -156
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/sim_setup_scratch.py +0 -330
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_board_bend_def.py +0 -68
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_component_property.py +0 -130
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_power_module.py +0 -69
- ansys_edb_core-0.3.0.dev9/tests/e2e/scratch/test_value.py +0 -99
- ansys_edb_core-0.3.0.dev9/tests/e2e/settings.py +0 -19
- ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_cell.py +0 -10
- ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_edge_terminal.py +0 -38
- ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_layer_collection.py +0 -24
- ansys_edb_core-0.3.0.dev9/tests/e2e/unit_tests/test_session.py +0 -30
- ansys_edb_core-0.3.0.dev9/tests/mock/test_arc_data.py +0 -151
- ansys_edb_core-0.3.0.dev9/tests/mock/test_database.py +0 -249
- ansys_edb_core-0.3.0.dev9/tests/mock/test_metadata.py +0 -14
- ansys_edb_core-0.3.0.dev9/tests/mock/test_point_data.py +0 -74
- ansys_edb_core-0.3.0.dev9/tests/mock/test_terminals.py +0 -224
- ansys_edb_core-0.3.0.dev9/tests/mock/utils/__init__.py +0 -0
- ansys_edb_core-0.3.0.dev9/tests/mock/utils/fixtures.py +0 -118
- ansys_edb_core-0.3.0.dev9/tests/mock/utils/test_utils.py +0 -108
- ansys_edb_core-0.3.0.dev9/tox.ini +0 -67
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2023 ANSYS, Inc. All rights reserved.
|
|
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
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 ANSYS, Inc. All rights reserved.
|
|
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,31 +1,11 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ansys-edb-core
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev0
|
|
4
4
|
Summary: A python wrapper for Ansys Edb service
|
|
5
|
-
Author-
|
|
6
|
-
Maintainer-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Copyright (c) 2023 ANSYS, Inc. All rights reserved.
|
|
10
|
-
|
|
11
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
-
in the Software without restriction, including without limitation the rights
|
|
14
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
-
furnished to do so, subject to the following conditions:
|
|
17
|
-
|
|
18
|
-
The above copyright notice and this permission notice shall be included in all
|
|
19
|
-
copies or substantial portions of the Software.
|
|
20
|
-
|
|
21
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
-
SOFTWARE.
|
|
28
|
-
|
|
5
|
+
Author-email: "ANSYS, Inc." <pyansys.support@ansys.com>
|
|
6
|
+
Maintainer-email: PyAnsys developers <pyansys.maintainers@ansys.com>
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/x-rst
|
|
29
9
|
Classifier: Development Status :: 4 - Beta
|
|
30
10
|
Classifier: Intended Audience :: Science/Research
|
|
31
11
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
@@ -35,30 +15,29 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
35
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
36
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
37
17
|
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
License-File: LICENSE
|
|
19
|
+
Requires-Dist: ansys-api-edb==0.4.dev0
|
|
20
|
+
Requires-Dist: protobuf>=5.29.6,<7
|
|
21
|
+
Requires-Dist: grpcio>=1.44.0
|
|
22
|
+
Requires-Dist: ansys-tools-common>=0.3.1
|
|
23
|
+
Requires-Dist: sphinx==7.4.7 ; extra == "doc"
|
|
24
|
+
Requires-Dist: numpydoc==1.9.0 ; extra == "doc"
|
|
25
|
+
Requires-Dist: ansys_sphinx_theme>=0.12.2 ; extra == "doc"
|
|
26
|
+
Requires-Dist: sphinx-copybutton==0.5.2 ; extra == "doc"
|
|
27
|
+
Requires-Dist: notebook ; extra == "notebook"
|
|
28
|
+
Requires-Dist: matplotlib ; extra == "notebook"
|
|
29
|
+
Requires-Dist: ipynbname ; extra == "notebook"
|
|
30
|
+
Requires-Dist: pytest==8.4.1 ; extra == "tests"
|
|
31
|
+
Requires-Dist: pytest-cov==6.2.1 ; extra == "tests"
|
|
32
|
+
Requires-Dist: pytest-mock==3.14.1 ; extra == "tests"
|
|
33
|
+
Requires-Dist: tox ; extra == "tests"
|
|
38
34
|
Project-URL: Documentation, https://edb.core.docs.pyansys.com
|
|
39
|
-
Project-URL: Source, https://github.com/ansys/pyedb-core
|
|
40
35
|
Project-URL: Homepage, https://github.com/ansys/pyedb-core
|
|
36
|
+
Project-URL: Source, https://github.com/ansys/pyedb-core
|
|
41
37
|
Project-URL: Tracker, https://github.com/ansys/pyedb-core/issues
|
|
42
|
-
|
|
43
|
-
Requires-Dist: ansys-api-edb==0.3.dev10
|
|
44
|
-
Requires-Dist: protobuf<5,>=3.19.3
|
|
45
|
-
Requires-Dist: grpcio>=1.44.0
|
|
46
|
-
Requires-Dist: ansys-tools-common>=0.3.1
|
|
38
|
+
Provides-Extra: doc
|
|
47
39
|
Provides-Extra: notebook
|
|
48
|
-
Requires-Dist: notebook; extra == "notebook"
|
|
49
|
-
Requires-Dist: matplotlib; extra == "notebook"
|
|
50
|
-
Requires-Dist: ipynbname; extra == "notebook"
|
|
51
40
|
Provides-Extra: tests
|
|
52
|
-
Requires-Dist: pytest==8.4.1; extra == "tests"
|
|
53
|
-
Requires-Dist: pytest-cov==6.2.1; extra == "tests"
|
|
54
|
-
Requires-Dist: pytest-mock==3.14.1; extra == "tests"
|
|
55
|
-
Requires-Dist: tox; extra == "tests"
|
|
56
|
-
Provides-Extra: doc
|
|
57
|
-
Requires-Dist: sphinx==7.4.7; extra == "doc"
|
|
58
|
-
Requires-Dist: numpydoc==1.9.0; extra == "doc"
|
|
59
|
-
Requires-Dist: ansys_sphinx_theme>=0.12.2; extra == "doc"
|
|
60
|
-
Requires-Dist: sphinx-copybutton==0.5.2; extra == "doc"
|
|
61
|
-
Description-Content-Type: text/x-rst
|
|
62
41
|
|
|
63
42
|
PyEDB-Core
|
|
64
43
|
==========
|
|
@@ -143,3 +122,4 @@ PyEDB-Core is licensed under the MIT license.
|
|
|
143
122
|
PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
|
|
144
123
|
a legally licensed copy of AEDT. For more information, see the
|
|
145
124
|
`Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
|
|
125
|
+
|
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
PyEDB-Core
|
|
2
|
-
==========
|
|
3
|
-
|
|
4
|
-
|pyansys| |python| |pypi| |MIT|
|
|
5
|
-
|
|
6
|
-
.. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
|
|
7
|
-
:target: https://docs.pyansys.com/
|
|
8
|
-
:alt: PyAnsys
|
|
9
|
-
|
|
10
|
-
.. |python| image:: https://img.shields.io/pypi/pyversions/ansys-edb-core?logo=pypi
|
|
11
|
-
:target: https://pypi.org/project/ansys-edb-core/
|
|
12
|
-
:alt: Python
|
|
13
|
-
|
|
14
|
-
.. |pypi| image:: https://img.shields.io/pypi/v/ansys-edb-core.svg?logo=python&logoColor=white
|
|
15
|
-
:target: https://pypi.org/project/ansys-edb-core
|
|
16
|
-
:alt: PyPI
|
|
17
|
-
|
|
18
|
-
.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
|
|
19
|
-
:target: https://opensource.org/licenses/MIT
|
|
20
|
-
:alt: MIT
|
|
21
|
-
|
|
22
|
-
|GH-CI| |black|
|
|
23
|
-
|
|
24
|
-
.. |GH-CI| image:: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml/badge.svg
|
|
25
|
-
:target: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml
|
|
26
|
-
:alt: GH-CI
|
|
27
|
-
|
|
28
|
-
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
|
|
29
|
-
:target: https://github.com/psf/black
|
|
30
|
-
:alt: Black
|
|
31
|
-
|
|
32
|
-
.. reuse_start
|
|
33
|
-
|
|
34
|
-
PyEDB-Core is a Python client for the Electronics Database (EDB), a format for storing
|
|
35
|
-
information describing designs for Ansys Electronic Desktop (AEDT). Using the PyEDB-Core API,
|
|
36
|
-
you can make calls to an EDB server that is running either locally or remotely.
|
|
37
|
-
|
|
38
|
-
The EDB server can create, edit, read, and write EDB files to disk. These files can then be
|
|
39
|
-
read into AEDT and their designs simulated.
|
|
40
|
-
|
|
41
|
-
Documentation and issues
|
|
42
|
-
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
43
|
-
Documentation for the latest stable release of PyEDB-Core is hosted at
|
|
44
|
-
`PyEDB-Core documentation <https://edb.core.docs.pyansys.com/version/stable/index.html#>`_.
|
|
45
|
-
The documentation has five sections:
|
|
46
|
-
|
|
47
|
-
- `Getting started <https://edb.core.docs.pyansys.com/version/stable/getting_started/index.html#>`_: Describes
|
|
48
|
-
how to install PyEDB-Core in user mode.
|
|
49
|
-
- `User guide <https://edb.core.docs.pyansys.com/version/stable/user_guide/index.html>`_: Describes how to
|
|
50
|
-
use PyEDB-Core.
|
|
51
|
-
- `API reference <https://edb.core.docs.pyansys.com/version/stable/api/index.html>`_: Provides API member descriptions
|
|
52
|
-
and usage examples.
|
|
53
|
-
- `Examples <https://edb.core.docs.pyansys.com/version/stable/examples/index.html>`_: Provides examples showing
|
|
54
|
-
end-to-end workflows for using PyEDB-Core.
|
|
55
|
-
- `Contribute <https://edb.core.docs.pyansys.com/version/stable/contribute.html>`_: Describes how to install
|
|
56
|
-
PyEDB-Core in developer mode and how to contribute to this PyAnsys library.
|
|
57
|
-
|
|
58
|
-
In the upper right corner of the documentation's title bar, there is an option for switching from
|
|
59
|
-
viewing the documentation for the latest stable release to viewing the documentation for the
|
|
60
|
-
development version or previously released versions.
|
|
61
|
-
|
|
62
|
-
On the `PyEDB-Core Issues <https://github.com/ansys/pyedb-core/issues>`_ page, you can create
|
|
63
|
-
issues to report bugs and request new features. When possible, use these issue templates:
|
|
64
|
-
|
|
65
|
-
* Bug report template
|
|
66
|
-
* Feature request template
|
|
67
|
-
* Documentation issue template
|
|
68
|
-
* Example request template
|
|
69
|
-
|
|
70
|
-
If your issue does not fit into one of these categories, create your own issue.
|
|
71
|
-
|
|
72
|
-
On the `Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal, you can post questions,
|
|
73
|
-
share ideas, and get community feedback.
|
|
74
|
-
|
|
75
|
-
To reach the PyAnsys support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
|
|
76
|
-
|
|
77
|
-
License
|
|
78
|
-
~~~~~~~
|
|
79
|
-
PyEDB-Core is licensed under the MIT license.
|
|
80
|
-
|
|
81
|
-
PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
|
|
82
|
-
a legally licensed copy of AEDT. For more information, see the
|
|
83
|
-
`Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
|
|
1
|
+
PyEDB-Core
|
|
2
|
+
==========
|
|
3
|
+
|
|
4
|
+
|pyansys| |python| |pypi| |MIT|
|
|
5
|
+
|
|
6
|
+
.. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
|
|
7
|
+
:target: https://docs.pyansys.com/
|
|
8
|
+
:alt: PyAnsys
|
|
9
|
+
|
|
10
|
+
.. |python| image:: https://img.shields.io/pypi/pyversions/ansys-edb-core?logo=pypi
|
|
11
|
+
:target: https://pypi.org/project/ansys-edb-core/
|
|
12
|
+
:alt: Python
|
|
13
|
+
|
|
14
|
+
.. |pypi| image:: https://img.shields.io/pypi/v/ansys-edb-core.svg?logo=python&logoColor=white
|
|
15
|
+
:target: https://pypi.org/project/ansys-edb-core
|
|
16
|
+
:alt: PyPI
|
|
17
|
+
|
|
18
|
+
.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
|
|
19
|
+
:target: https://opensource.org/licenses/MIT
|
|
20
|
+
:alt: MIT
|
|
21
|
+
|
|
22
|
+
|GH-CI| |black|
|
|
23
|
+
|
|
24
|
+
.. |GH-CI| image:: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml/badge.svg
|
|
25
|
+
:target: https://github.com/ansys/pyedb-core/actions/workflows/ci_cd.yml
|
|
26
|
+
:alt: GH-CI
|
|
27
|
+
|
|
28
|
+
.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
|
|
29
|
+
:target: https://github.com/psf/black
|
|
30
|
+
:alt: Black
|
|
31
|
+
|
|
32
|
+
.. reuse_start
|
|
33
|
+
|
|
34
|
+
PyEDB-Core is a Python client for the Electronics Database (EDB), a format for storing
|
|
35
|
+
information describing designs for Ansys Electronic Desktop (AEDT). Using the PyEDB-Core API,
|
|
36
|
+
you can make calls to an EDB server that is running either locally or remotely.
|
|
37
|
+
|
|
38
|
+
The EDB server can create, edit, read, and write EDB files to disk. These files can then be
|
|
39
|
+
read into AEDT and their designs simulated.
|
|
40
|
+
|
|
41
|
+
Documentation and issues
|
|
42
|
+
~~~~~~~~~~~~~~~~~~~~~~~~
|
|
43
|
+
Documentation for the latest stable release of PyEDB-Core is hosted at
|
|
44
|
+
`PyEDB-Core documentation <https://edb.core.docs.pyansys.com/version/stable/index.html#>`_.
|
|
45
|
+
The documentation has five sections:
|
|
46
|
+
|
|
47
|
+
- `Getting started <https://edb.core.docs.pyansys.com/version/stable/getting_started/index.html#>`_: Describes
|
|
48
|
+
how to install PyEDB-Core in user mode.
|
|
49
|
+
- `User guide <https://edb.core.docs.pyansys.com/version/stable/user_guide/index.html>`_: Describes how to
|
|
50
|
+
use PyEDB-Core.
|
|
51
|
+
- `API reference <https://edb.core.docs.pyansys.com/version/stable/api/index.html>`_: Provides API member descriptions
|
|
52
|
+
and usage examples.
|
|
53
|
+
- `Examples <https://edb.core.docs.pyansys.com/version/stable/examples/index.html>`_: Provides examples showing
|
|
54
|
+
end-to-end workflows for using PyEDB-Core.
|
|
55
|
+
- `Contribute <https://edb.core.docs.pyansys.com/version/stable/contribute.html>`_: Describes how to install
|
|
56
|
+
PyEDB-Core in developer mode and how to contribute to this PyAnsys library.
|
|
57
|
+
|
|
58
|
+
In the upper right corner of the documentation's title bar, there is an option for switching from
|
|
59
|
+
viewing the documentation for the latest stable release to viewing the documentation for the
|
|
60
|
+
development version or previously released versions.
|
|
61
|
+
|
|
62
|
+
On the `PyEDB-Core Issues <https://github.com/ansys/pyedb-core/issues>`_ page, you can create
|
|
63
|
+
issues to report bugs and request new features. When possible, use these issue templates:
|
|
64
|
+
|
|
65
|
+
* Bug report template
|
|
66
|
+
* Feature request template
|
|
67
|
+
* Documentation issue template
|
|
68
|
+
* Example request template
|
|
69
|
+
|
|
70
|
+
If your issue does not fit into one of these categories, create your own issue.
|
|
71
|
+
|
|
72
|
+
On the `Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal, you can post questions,
|
|
73
|
+
share ideas, and get community feedback.
|
|
74
|
+
|
|
75
|
+
To reach the PyAnsys support team, email `pyansys.core@ansys.com <pyansys.core@ansys.com>`_.
|
|
76
|
+
|
|
77
|
+
License
|
|
78
|
+
~~~~~~~
|
|
79
|
+
PyEDB-Core is licensed under the MIT license.
|
|
80
|
+
|
|
81
|
+
PyEDB-Core makes no commercial claim over Ansys whatsoever. The use of this Python client requires
|
|
82
|
+
a legally licensed copy of AEDT. For more information, see the
|
|
83
|
+
`Ansys Electronics <https://www.ansys.com/products/electronics>`_ page on the Ansys website.
|
|
@@ -1,81 +1,80 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["
|
|
3
|
-
build-backend = "
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
|
|
7
|
-
name = "ansys-edb-core"
|
|
8
|
-
version = "0.
|
|
9
|
-
description = "A python wrapper for Ansys Edb service"
|
|
10
|
-
readme = "README.rst"
|
|
11
|
-
requires-python = ">=3.10"
|
|
12
|
-
license = {file = "LICENSE"}
|
|
13
|
-
authors = [{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"}]
|
|
14
|
-
maintainers = [{name = "PyAnsys developers", email = "pyansys.maintainers@ansys.com"}]
|
|
15
|
-
classifiers = [
|
|
16
|
-
"Development Status :: 4 - Beta",
|
|
17
|
-
"Intended Audience :: Science/Research",
|
|
18
|
-
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
19
|
-
"License :: OSI Approved :: MIT License",
|
|
20
|
-
"Operating System :: OS Independent",
|
|
21
|
-
"Programming Language :: Python :: 3.10",
|
|
22
|
-
"Programming Language :: Python :: 3.11",
|
|
23
|
-
"Programming Language :: Python :: 3.12",
|
|
24
|
-
"Programming Language :: Python :: 3.13"
|
|
25
|
-
]
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
dependencies = [
|
|
29
|
-
"ansys-api-edb==0.
|
|
30
|
-
"protobuf>=
|
|
31
|
-
"grpcio>=1.44.0",
|
|
32
|
-
"ansys-tools-common>=0.3.1"
|
|
33
|
-
]
|
|
34
|
-
|
|
35
|
-
[project.urls]
|
|
36
|
-
Documentation = "https://edb.core.docs.pyansys.com"
|
|
37
|
-
Source = "https://github.com/ansys/pyedb-core"
|
|
38
|
-
Homepage = "https://github.com/ansys/pyedb-core"
|
|
39
|
-
Tracker = "https://github.com/ansys/pyedb-core/issues"
|
|
40
|
-
|
|
41
|
-
# FIXME: add versions
|
|
42
|
-
[project.optional-dependencies]
|
|
43
|
-
notebook = [
|
|
44
|
-
"notebook",
|
|
45
|
-
"matplotlib",
|
|
46
|
-
"ipynbname"
|
|
47
|
-
]
|
|
48
|
-
# FIXME: update to newer versions
|
|
49
|
-
tests = [
|
|
50
|
-
"pytest==8.4.1",
|
|
51
|
-
"pytest-cov==6.2.1",
|
|
52
|
-
"pytest-mock==3.14.1",
|
|
53
|
-
"tox",
|
|
54
|
-
]
|
|
55
|
-
# FIXME: update to newer versions
|
|
56
|
-
doc = [
|
|
57
|
-
"sphinx==7.4.7",
|
|
58
|
-
"numpydoc==1.9.0",
|
|
59
|
-
"ansys_sphinx_theme>=0.12.2",
|
|
60
|
-
"sphinx-copybutton==0.5.2",
|
|
61
|
-
]
|
|
62
|
-
|
|
63
|
-
[tool.
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
[
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
show_missing = true
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["flit_core >=3.2,<4"]
|
|
3
|
+
build-backend = "flit_core.buildapi"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
# Check https://flit.readthedocs.io/en/latest/pyproject_toml.html for all available sections
|
|
7
|
+
name = "ansys-edb-core"
|
|
8
|
+
version = "0.4.0.dev0"
|
|
9
|
+
description = "A python wrapper for Ansys Edb service"
|
|
10
|
+
readme = "README.rst"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
license = {file = "LICENSE"}
|
|
13
|
+
authors = [{name = "ANSYS, Inc.", email = "pyansys.support@ansys.com"}]
|
|
14
|
+
maintainers = [{name = "PyAnsys developers", email = "pyansys.maintainers@ansys.com"}]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 4 - Beta",
|
|
17
|
+
"Intended Audience :: Science/Research",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13"
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
dependencies = [
|
|
29
|
+
"ansys-api-edb==0.4.dev0",
|
|
30
|
+
"protobuf>=5.29.6,<7",
|
|
31
|
+
"grpcio>=1.44.0",
|
|
32
|
+
"ansys-tools-common>=0.3.1"
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Documentation = "https://edb.core.docs.pyansys.com"
|
|
37
|
+
Source = "https://github.com/ansys/pyedb-core"
|
|
38
|
+
Homepage = "https://github.com/ansys/pyedb-core"
|
|
39
|
+
Tracker = "https://github.com/ansys/pyedb-core/issues"
|
|
40
|
+
|
|
41
|
+
# FIXME: add versions
|
|
42
|
+
[project.optional-dependencies]
|
|
43
|
+
notebook = [
|
|
44
|
+
"notebook",
|
|
45
|
+
"matplotlib",
|
|
46
|
+
"ipynbname"
|
|
47
|
+
]
|
|
48
|
+
# FIXME: update to newer versions
|
|
49
|
+
tests = [
|
|
50
|
+
"pytest==8.4.1",
|
|
51
|
+
"pytest-cov==6.2.1",
|
|
52
|
+
"pytest-mock==3.14.1",
|
|
53
|
+
"tox",
|
|
54
|
+
]
|
|
55
|
+
# FIXME: update to newer versions
|
|
56
|
+
doc = [
|
|
57
|
+
"sphinx==7.4.7",
|
|
58
|
+
"numpydoc==1.9.0",
|
|
59
|
+
"ansys_sphinx_theme>=0.12.2",
|
|
60
|
+
"sphinx-copybutton==0.5.2",
|
|
61
|
+
]
|
|
62
|
+
|
|
63
|
+
[tool.flit.module]
|
|
64
|
+
name = "ansys.edb.core"
|
|
65
|
+
|
|
66
|
+
[tool.black]
|
|
67
|
+
line-length = 100
|
|
68
|
+
|
|
69
|
+
[tool.isort]
|
|
70
|
+
profile = "black"
|
|
71
|
+
force_sort_within_sections = true
|
|
72
|
+
line_length = 100
|
|
73
|
+
default_section = "THIRDPARTY"
|
|
74
|
+
src_paths = ["doc", "src", "tests"]
|
|
75
|
+
|
|
76
|
+
[tool.coverage.run]
|
|
77
|
+
source = ["ansys.edb"]
|
|
78
|
+
|
|
79
|
+
[tool.coverage.report]
|
|
80
|
+
show_missing = true
|