ansys-api-edb 0.2.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_api_edb-0.2.dev0/LICENCE +21 -0
- ansys_api_edb-0.2.dev0/PKG-INFO +58 -0
- ansys_api_edb-0.2.dev0/README.md +27 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/VERSION +1 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/__init__.py +8 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/py.typed +0 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/__init__.py +0 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/arc_data.proto +67 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/board_bend_def.proto +37 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/bondwire.proto +165 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/bondwire_def.proto +89 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/bundle_term.proto +15 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/cell.proto +142 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/cell_instance.proto +59 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/circle.proto +53 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/component_def.proto +51 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/component_group.proto +48 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/component_model.proto +41 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/component_pin.proto +30 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/component_property.proto +33 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/connectable.proto +54 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/database.proto +124 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/dataset_def.proto +28 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/debye_model.proto +44 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/definition_obj.proto +18 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/die_property.proto +55 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/dielectric_material_model.proto +13 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/differential_pair.proto +33 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/djordjecvic_sarkar_model.proto +31 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/edb_defs.proto +73 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/edb_messages.proto +235 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/edge_term.proto +74 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/extended_net.proto +34 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/group.proto +50 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/hfss_simulation_settings.proto +220 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/hfss_simulation_setup.proto +59 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/hierarchy_obj.proto +56 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/ic_component_property.proto +27 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/inst_array.proto +43 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/io_component_property.proto +23 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/io_manager.proto +43 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layer.proto +213 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layer_collection.proto +190 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layer_map.proto +43 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout.proto +144 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_component.proto +26 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_instance.proto +55 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_instance_context.proto +26 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_obj.proto +66 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_obj_instance.proto +33 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_obj_instance_2d_geometry.proto +20 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_obj_instance_3d_geometry.proto +23 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/layout_obj_instance_geometry.proto +19 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/material_def.proto +152 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/material_property_thermal_modifier.proto +26 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/mcad_model.proto +98 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/model.proto +21 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/multipole_debye_model.proto +27 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/net.proto +29 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/netclass.proto +43 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/netlist_model.proto +13 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/package_def.proto +65 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/padstack_def.proto +35 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/padstack_def_data.proto +281 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/padstack_inst_term.proto +33 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/padstack_instance.proto +181 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/path.proto +154 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/pin_group.proto +47 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/pin_group_term.proto +37 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/pin_pair_model.proto +27 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/point_3d_data.proto +45 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/point_data.proto +70 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/point_term.proto +35 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/polygon.proto +35 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/polygon_data.proto +133 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/port_post_processing_prop.proto +17 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/port_property.proto +25 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/primitive.proto +107 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/r_tree.proto +68 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/raptor_x_simulation_settings.proto +115 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/rectangle.proto +69 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/refs.proto +33 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/rlc.proto +17 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/rlc_component_property.proto +19 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/simulation_settings.proto +134 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/simulation_setup.proto +102 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/siwave_dcir_simulation_settings.proto +53 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/siwave_simulation_settings.proto +225 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/solder_ball_property.proto +39 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/sparameter_model.proto +21 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/spice_model.proto +32 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/stackup_layer.proto +172 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/structure3d.proto +55 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/term.proto +138 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/term_inst.proto +25 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/term_inst_term.proto +27 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/text.proto +42 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/transform.proto +55 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/transform3d.proto +58 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/value.proto +21 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/variable_server.proto +63 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/via_group.proto +45 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/via_layer.proto +37 -0
- ansys_api_edb-0.2.dev0/ansys/api/edb/v1/voltage_regulator.proto +78 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/PKG-INFO +58 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/SOURCES.txt +111 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/dependency_links.txt +1 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/entry_points.txt +2 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/requires.txt +2 -0
- ansys_api_edb-0.2.dev0/ansys_api_edb.egg-info/top_level.txt +1 -0
- ansys_api_edb-0.2.dev0/pyproject.toml +3 -0
- ansys_api_edb-0.2.dev0/setup.cfg +4 -0
- ansys_api_edb-0.2.dev0/setup.py +56 -0
|
@@ -0,0 +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.
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: ansys-api-edb
|
|
3
|
+
Version: 0.2.dev0
|
|
4
|
+
Summary: Autogenerated Python gRPC interface package for ansys-api-edb, built on 19:16:10 on 28 February 2025
|
|
5
|
+
Home-page: https://github.com/ansys/ansys-api-edb
|
|
6
|
+
Author: ANSYS, Inc.
|
|
7
|
+
Author-email: pyansys.core@ansys.com
|
|
8
|
+
Maintainer: ANSYS, Inc.
|
|
9
|
+
Maintainer-email: pyansys.core@ansys.com
|
|
10
|
+
License: MIT
|
|
11
|
+
Project-URL: Documentation, https://github.com/ansys/ansys-api-edb/#readme
|
|
12
|
+
Project-URL: Source, https://github.com/ansys/ansys-api-edb/
|
|
13
|
+
Project-URL: Tracker, https://github.com/ansys/ansys-api-edb/issues/
|
|
14
|
+
Requires-Python: >=3.7
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
License-File: LICENCE
|
|
17
|
+
Requires-Dist: grpcio>=1.44
|
|
18
|
+
Requires-Dist: protobuf<5,>=3.19.3
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: description
|
|
22
|
+
Dynamic: description-content-type
|
|
23
|
+
Dynamic: home-page
|
|
24
|
+
Dynamic: license
|
|
25
|
+
Dynamic: maintainer
|
|
26
|
+
Dynamic: maintainer-email
|
|
27
|
+
Dynamic: project-url
|
|
28
|
+
Dynamic: requires-dist
|
|
29
|
+
Dynamic: requires-python
|
|
30
|
+
Dynamic: summary
|
|
31
|
+
|
|
32
|
+
### ansys-api-edb gRPC Interface Package
|
|
33
|
+
|
|
34
|
+
This repository provides the auto-generated gRPC Python interface files for
|
|
35
|
+
the Ansys Edb Service.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
#### Installation
|
|
39
|
+
|
|
40
|
+
Provided that these wheels have been published to public PyPI, they can be
|
|
41
|
+
installed with:
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
pip install ansys-api-edb
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
#### Build
|
|
48
|
+
|
|
49
|
+
To build the gRPC packages, run:
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
pip install build
|
|
53
|
+
python -m build
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
This will create both the source distribution containing just the protofiles
|
|
57
|
+
along with the wheel containing the protofiles and build Python interface
|
|
58
|
+
files.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
### ansys-api-edb gRPC Interface Package
|
|
2
|
+
|
|
3
|
+
This repository provides the auto-generated gRPC Python interface files for
|
|
4
|
+
the Ansys Edb Service.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
#### Installation
|
|
8
|
+
|
|
9
|
+
Provided that these wheels have been published to public PyPI, they can be
|
|
10
|
+
installed with:
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
pip install ansys-api-edb
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
#### Build
|
|
17
|
+
|
|
18
|
+
To build the gRPC packages, run:
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
pip install build
|
|
22
|
+
python -m build
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
This will create both the source distribution containing just the protofiles
|
|
26
|
+
along with the wheel containing the protofiles and build Python interface
|
|
27
|
+
files.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.2.dev0
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
// Proto file representing the EDB Arc Data class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
|
|
5
|
+
package ansys.api.edb.v1;
|
|
6
|
+
|
|
7
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
8
|
+
import "ansys/api/edb/v1/point_data.proto";
|
|
9
|
+
|
|
10
|
+
enum RotationDirection {
|
|
11
|
+
ROTATION_DIRECTION_CCW = 0;
|
|
12
|
+
ROTATION_DIRECTION_CW = 1;
|
|
13
|
+
ROTATION_DIRECTION_COLINEAR = 2;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
service ArcDataService {
|
|
17
|
+
// Get height of an arc
|
|
18
|
+
rpc GetHeight (ArcMessage) returns (google.protobuf.FloatValue) {}
|
|
19
|
+
|
|
20
|
+
// Get center point of an arc
|
|
21
|
+
rpc GetCenter (ArcMessage) returns (PointMessage) {}
|
|
22
|
+
|
|
23
|
+
// Get midpoint of an arc
|
|
24
|
+
rpc GetMidpoint (ArcMessage) returns (PointMessage) {}
|
|
25
|
+
|
|
26
|
+
// Get radius of an arc
|
|
27
|
+
rpc GetRadius (ArcMessage) returns (google.protobuf.FloatValue) {}
|
|
28
|
+
|
|
29
|
+
// Get bounding box of an arc
|
|
30
|
+
rpc GetBoundingBox (ArcMessage) returns (BoxMessage) {}
|
|
31
|
+
|
|
32
|
+
// Get angle between two arcs.
|
|
33
|
+
rpc GetAngle (ArcMessage) returns (google.protobuf.FloatValue) {}
|
|
34
|
+
|
|
35
|
+
// Get closest points between two arcs.
|
|
36
|
+
rpc ClosestPoints (ArcDataTwoArcsMessage) returns (BoxMessage) {}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
message ArcMessage {
|
|
40
|
+
message RadiusMessage {
|
|
41
|
+
double radius = 1;
|
|
42
|
+
RotationDirection dir = 2;
|
|
43
|
+
bool is_big = 3;
|
|
44
|
+
}
|
|
45
|
+
message CenterMessage {
|
|
46
|
+
PointMessage point = 1;
|
|
47
|
+
RotationDirection dir = 2;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
PointMessage start = 1;
|
|
51
|
+
PointMessage end = 2;
|
|
52
|
+
oneof option {
|
|
53
|
+
google.protobuf.FloatValue height = 3;
|
|
54
|
+
PointMessage thru = 4;
|
|
55
|
+
RadiusMessage radius = 5;
|
|
56
|
+
CenterMessage center = 6;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
message ArcDataTwoArcsMessage {
|
|
61
|
+
ArcMessage arc1 = 1;
|
|
62
|
+
ArcMessage arc2 = 2;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
message ArcsMessage {
|
|
66
|
+
repeated ArcMessage items = 1;
|
|
67
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// Proto file representing the BoardBendDef class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
|
|
5
|
+
package ansys.api.edb.v1;
|
|
6
|
+
|
|
7
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
8
|
+
import "ansys/api/edb/v1/point_data.proto";
|
|
9
|
+
import "ansys/api/edb/v1/polygon_data.proto";
|
|
10
|
+
|
|
11
|
+
service BoardBendDefService {
|
|
12
|
+
rpc Create (BoardBendDefCreateMessage) returns (EDBObjMessage) {}
|
|
13
|
+
|
|
14
|
+
rpc GetBoundaryPrim (EDBObjMessage) returns (EDBObjMessage) {}
|
|
15
|
+
|
|
16
|
+
rpc GetBendMiddle (EDBObjMessage) returns (PointPairMessage) {}
|
|
17
|
+
|
|
18
|
+
rpc SetBendMiddle (PointPairPropertyMessage) returns (google.protobuf.Empty) {}
|
|
19
|
+
|
|
20
|
+
rpc GetRadius (EDBObjMessage) returns (ValueMessage) {}
|
|
21
|
+
|
|
22
|
+
rpc SetRadius (ValuePropertyMessage) returns (google.protobuf.Empty) {}
|
|
23
|
+
|
|
24
|
+
rpc GetAngle (EDBObjMessage) returns (ValueMessage) {}
|
|
25
|
+
|
|
26
|
+
rpc SetAngle (ValuePropertyMessage) returns (google.protobuf.Empty) {}
|
|
27
|
+
|
|
28
|
+
rpc GetBentRegions (EDBObjMessage) returns (PolygonDataListMessage) {}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
message BoardBendDefCreateMessage {
|
|
32
|
+
EDBObjMessage layout = 1;
|
|
33
|
+
EDBObjMessage zone_prim = 2;
|
|
34
|
+
PointPairMessage middle = 3;
|
|
35
|
+
ValueMessage radius = 4;
|
|
36
|
+
ValueMessage angle = 5;
|
|
37
|
+
}
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
// Proto file representing the EDB Circle class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
|
|
5
|
+
package ansys.api.edb.v1;
|
|
6
|
+
|
|
7
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
8
|
+
import "ansys/api/edb/v1/refs.proto";
|
|
9
|
+
|
|
10
|
+
enum BondwireType {
|
|
11
|
+
APD_BONDWIRE = 0;
|
|
12
|
+
JEDEC4_BONDWIRE = 1;
|
|
13
|
+
JEDEC5_BONDWIRE = 2;
|
|
14
|
+
NUM_OF_BONDWIRE_TYPE = 3;
|
|
15
|
+
INVALID_BONDWIRE_TYPE = -1;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
enum BondwireCrossSectionType {
|
|
19
|
+
BONDWIRE_ROUND = 0;
|
|
20
|
+
BONDWIRE_RECTANGLE = 1;
|
|
21
|
+
INVALID_BONDWIRE_CROSS_SECTION_TYPE = -1;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// Bondwire service definition
|
|
25
|
+
service BondwireService {
|
|
26
|
+
// Create Bondwire
|
|
27
|
+
rpc Create (BondwireCreateMessage) returns (EDBObjMessage) {}
|
|
28
|
+
|
|
29
|
+
// Get Material
|
|
30
|
+
rpc GetMaterial (BondwireBoolMessage) returns (google.protobuf.StringValue) {}
|
|
31
|
+
|
|
32
|
+
// Set Material
|
|
33
|
+
rpc SetMaterial (SetMaterialMessage) returns (google.protobuf.Empty) {}
|
|
34
|
+
|
|
35
|
+
// Get Bondwire Type
|
|
36
|
+
rpc GetType (EDBObjMessage) returns (BondwireTypeMessage) {}
|
|
37
|
+
|
|
38
|
+
// Set Bondwire Type
|
|
39
|
+
rpc SetType (SetBondwireTypeMessage) returns (google.protobuf.Empty) {}
|
|
40
|
+
|
|
41
|
+
// Get Cross Section Type
|
|
42
|
+
rpc GetCrossSectionType (EDBObjMessage) returns (GetCrossSectionTypeMessage) {}
|
|
43
|
+
|
|
44
|
+
// Set Type
|
|
45
|
+
rpc SetCrossSectionType (SetCrossSectionTypeMessage) returns (google.protobuf.Empty) {}
|
|
46
|
+
|
|
47
|
+
// Get Cross Section Type
|
|
48
|
+
rpc GetCrossSectionHeight (EDBObjMessage) returns (ValueMessage) {}
|
|
49
|
+
|
|
50
|
+
// Set Type
|
|
51
|
+
rpc SetCrossSectionHeight (SetCrossSectionHeightMessage) returns (google.protobuf.Empty) {}
|
|
52
|
+
|
|
53
|
+
// Get Bondwire Definition Name
|
|
54
|
+
rpc GetDefinitionName (BondwireBoolMessage) returns (google.protobuf.StringValue) {}
|
|
55
|
+
|
|
56
|
+
// Set Bondwire Definition Name
|
|
57
|
+
rpc SetDefinitionName (SetDefinitionNameMessage) returns (google.protobuf.Empty) {}
|
|
58
|
+
|
|
59
|
+
// Get Start Elevation Layer
|
|
60
|
+
rpc GetStartElevation (GetElevationMessage) returns (EDBObjMessage) {}
|
|
61
|
+
|
|
62
|
+
// Set Start Elevation Layer
|
|
63
|
+
rpc SetStartElevation (SetElevationMessage) returns (google.protobuf.Empty) {}
|
|
64
|
+
|
|
65
|
+
// Get End Elevation Layer
|
|
66
|
+
rpc GetEndElevation (GetElevationMessage) returns (EDBObjMessage) {}
|
|
67
|
+
|
|
68
|
+
// Set End Elevation Layer
|
|
69
|
+
rpc SetEndElevation (SetElevationMessage) returns (google.protobuf.Empty) {}
|
|
70
|
+
|
|
71
|
+
// Get Trajectory Values
|
|
72
|
+
rpc GetTraj (EDBObjMessage) returns (BondwireTrajMessage) {}
|
|
73
|
+
|
|
74
|
+
// Set Trajectory Values
|
|
75
|
+
rpc SetTraj (SetBondwireTrajMessage) returns (google.protobuf.Empty) {}
|
|
76
|
+
|
|
77
|
+
// Get Width Value
|
|
78
|
+
rpc GetWidthValue (EDBObjMessage) returns (ValueMessage) {}
|
|
79
|
+
|
|
80
|
+
// Get Width Value
|
|
81
|
+
rpc SetWidthValue (BondwireValueMessage) returns (google.protobuf.Empty) {}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
message BondwireCreateMessage {
|
|
85
|
+
EDBObjMessage layout = 1;
|
|
86
|
+
NetRefMessage net = 2;
|
|
87
|
+
BondwireType bondwire_type = 3;
|
|
88
|
+
string definition_name = 4;
|
|
89
|
+
string placement_layer = 5;
|
|
90
|
+
ValueMessage width = 6;
|
|
91
|
+
string material = 7;
|
|
92
|
+
EDBObjMessage start_context = 8;
|
|
93
|
+
string start_layer_name = 9;
|
|
94
|
+
ValueMessage start_x = 10;
|
|
95
|
+
ValueMessage start_y = 11;
|
|
96
|
+
EDBObjMessage end_context = 12;
|
|
97
|
+
string end_layer_name = 13;
|
|
98
|
+
ValueMessage end_x = 14;
|
|
99
|
+
ValueMessage end_y = 15;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
message BondwireBoolMessage {
|
|
103
|
+
EDBObjMessage target = 1;
|
|
104
|
+
bool evaluated = 2;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
message SetMaterialMessage {
|
|
108
|
+
EDBObjMessage target = 1;
|
|
109
|
+
string material = 2;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
message BondwireTypeMessage {
|
|
113
|
+
BondwireType type = 1;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
message SetBondwireTypeMessage {
|
|
117
|
+
EDBObjMessage target = 1;
|
|
118
|
+
BondwireType type = 2;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
message GetCrossSectionTypeMessage {
|
|
122
|
+
BondwireCrossSectionType type = 1;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
message SetCrossSectionTypeMessage {
|
|
126
|
+
EDBObjMessage target = 1;
|
|
127
|
+
BondwireCrossSectionType type = 2;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message SetCrossSectionHeightMessage {
|
|
131
|
+
EDBObjMessage target = 1;
|
|
132
|
+
ValueMessage height = 2;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
message SetDefinitionNameMessage {
|
|
136
|
+
EDBObjMessage target = 1;
|
|
137
|
+
string definition_name = 2;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
message GetElevationMessage {
|
|
141
|
+
EDBObjMessage bw = 1;
|
|
142
|
+
EDBObjMessage cell_instance = 2;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
message SetElevationMessage {
|
|
146
|
+
GetElevationMessage target = 1;
|
|
147
|
+
string lyrname = 2;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
message BondwireValueMessage {
|
|
151
|
+
EDBObjMessage target = 1;
|
|
152
|
+
ValueMessage value = 2;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
message BondwireTrajMessage {
|
|
156
|
+
ValueMessage x1 = 1;
|
|
157
|
+
ValueMessage y1 = 2;
|
|
158
|
+
ValueMessage x2 = 3;
|
|
159
|
+
ValueMessage y2 = 4;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
message SetBondwireTrajMessage {
|
|
163
|
+
EDBObjMessage target = 1;
|
|
164
|
+
BondwireTrajMessage traj = 2;
|
|
165
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// Proto file representing the EDB Circle class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
|
|
5
|
+
package ansys.api.edb.v1;
|
|
6
|
+
|
|
7
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
8
|
+
|
|
9
|
+
enum BondwireDefType {
|
|
10
|
+
APD_BONDWIRE_DEF = 0;
|
|
11
|
+
JEDEC4_BONDWIRE_DEF = 1;
|
|
12
|
+
JEDEC5_BONDWIRE_DEF = 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// BondwireDef service definition
|
|
16
|
+
service BondwireDefService {
|
|
17
|
+
// Delete BondwireDef.
|
|
18
|
+
rpc Delete (EDBObjMessage) returns (google.protobuf.Empty) {}
|
|
19
|
+
|
|
20
|
+
// Get the name of the BondwireDef.
|
|
21
|
+
rpc GetName (EDBObjMessage) returns (google.protobuf.StringValue) {}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
message BondwireDefStrMessage{
|
|
25
|
+
EDBObjMessage object = 1;
|
|
26
|
+
string name = 2;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Apd BondwireDef service definition
|
|
30
|
+
service ApdBondwireDefService {
|
|
31
|
+
// Creates an Apd BondwireDef.
|
|
32
|
+
rpc Create (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
33
|
+
|
|
34
|
+
// Loads Definitions From File.
|
|
35
|
+
rpc LoadDefinitionsFromFile (BondwireDefStrMessage) returns (google.protobuf.Empty) {}
|
|
36
|
+
|
|
37
|
+
// Find Apd BondwireDef By Name.
|
|
38
|
+
rpc FindByName (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
39
|
+
|
|
40
|
+
// Get Apd BondwireDef parameters in cblock string format.
|
|
41
|
+
rpc GetParameters (EDBObjMessage) returns (google.protobuf.StringValue) {}
|
|
42
|
+
|
|
43
|
+
// Set Apd BondwireDef parameters by passing cblock string.
|
|
44
|
+
rpc SetParameters (BondwireDefStrMessage) returns (google.protobuf.Empty) {}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
service Jedec4BondwireDefService {
|
|
48
|
+
// Creates an Jedec4BondwireDef.
|
|
49
|
+
rpc Create (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
50
|
+
|
|
51
|
+
// Find Jedec4BondwireDef By Name.
|
|
52
|
+
rpc FindByName (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
53
|
+
|
|
54
|
+
// Get Jedec4BondwireDef parameters in cblock string format.
|
|
55
|
+
rpc GetParameters (EDBObjMessage) returns (ValueMessage) {}
|
|
56
|
+
|
|
57
|
+
// Set Jedec4BondwireDef parameters by passing cblock string.
|
|
58
|
+
rpc SetParameters (Jedec4BondwireDefSetParametersMessage) returns (google.protobuf.Empty) {}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
message Jedec4BondwireDefSetParametersMessage{
|
|
62
|
+
EDBObjMessage target = 1;
|
|
63
|
+
ValueMessage top_to_die_distance = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
service Jedec5BondwireDefService {
|
|
67
|
+
// Creates an Jedec5BondwireDef.
|
|
68
|
+
rpc Create (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
69
|
+
|
|
70
|
+
// Find Jedec5BondwireDef By Name.
|
|
71
|
+
rpc FindByName (BondwireDefStrMessage) returns (EDBObjMessage) {}
|
|
72
|
+
|
|
73
|
+
// Get Jedec5BondwireDef parameters in cblock string format.
|
|
74
|
+
rpc GetParameters (EDBObjMessage) returns (Jedec5BondwireDefParametersMessage) {}
|
|
75
|
+
|
|
76
|
+
// Set Jedec5BondwireDef parameters by passing cblock string.
|
|
77
|
+
rpc SetParameters (Jedec5BondwireDefSetParametersMessage) returns (google.protobuf.Empty) {}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
message Jedec5BondwireDefParametersMessage{
|
|
81
|
+
ValueMessage top_to_die_distance = 1;
|
|
82
|
+
ValueMessage die_pad_angle = 2;
|
|
83
|
+
ValueMessage lead_pad_angle = 3;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
message Jedec5BondwireDefSetParametersMessage{
|
|
87
|
+
EDBObjMessage target = 1;
|
|
88
|
+
Jedec5BondwireDefParametersMessage parameters = 2;
|
|
89
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Proto file representing the EDB BundleTerminal class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
package ansys.api.edb.v1;
|
|
5
|
+
|
|
6
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
7
|
+
|
|
8
|
+
service BundleTerminalService {
|
|
9
|
+
rpc Create (EDBObjCollectionMessage) returns (EDBObjMessage) {}
|
|
10
|
+
|
|
11
|
+
rpc Ungroup (EDBObjMessage) returns (google.protobuf.Empty) {}
|
|
12
|
+
|
|
13
|
+
rpc GetTerminals (EDBObjMessage) returns (EDBObjCollectionMessage) {}
|
|
14
|
+
rpc StreamTerminals (EDBObjMessage) returns (stream EDBObjCollectionMessage) {}
|
|
15
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
// Proto file representing the EDB Cell class
|
|
2
|
+
|
|
3
|
+
syntax = "proto3";
|
|
4
|
+
|
|
5
|
+
package ansys.api.edb.v1;
|
|
6
|
+
|
|
7
|
+
import "ansys/api/edb/v1/edb_defs.proto";
|
|
8
|
+
import "ansys/api/edb/v1/edb_messages.proto";
|
|
9
|
+
import "ansys/api/edb/v1/polygon_data.proto";
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
service CellService {
|
|
13
|
+
// Creates a cell
|
|
14
|
+
rpc Create (CellCreationMessage) returns (EDBObjMessage) {}
|
|
15
|
+
|
|
16
|
+
// Gets the layout of the provided cell
|
|
17
|
+
rpc GetLayout (EDBObjMessage) returns (EDBObjMessage) {}
|
|
18
|
+
|
|
19
|
+
// Get the flattened layout
|
|
20
|
+
rpc GetFlattenedLayout (EDBObjMessage) returns (EDBObjMessage) {}
|
|
21
|
+
|
|
22
|
+
// Find cell by name or id
|
|
23
|
+
rpc Find (CellFindMessage) returns (EDBObjMessage) {}
|
|
24
|
+
|
|
25
|
+
// Delete a cell
|
|
26
|
+
rpc Delete (EDBObjMessage) returns (google.protobuf.Empty) {}
|
|
27
|
+
|
|
28
|
+
// Get the database
|
|
29
|
+
rpc GetDatabase (EDBObjMessage) returns (EDBObjMessage) {}
|
|
30
|
+
|
|
31
|
+
// Get whether the cell is of type footprint
|
|
32
|
+
rpc IsFootprint (EDBObjMessage) returns (google.protobuf.BoolValue) {}
|
|
33
|
+
|
|
34
|
+
// Get whether the cell is a black box
|
|
35
|
+
rpc IsBlackBox (EDBObjMessage) returns (google.protobuf.BoolValue) {}
|
|
36
|
+
|
|
37
|
+
// Set whether the cell is a black box
|
|
38
|
+
rpc SetBlackBox (BoolPropertyMessage) returns (google.protobuf.Empty) {}
|
|
39
|
+
|
|
40
|
+
// Get whether the cell supresses pads
|
|
41
|
+
rpc GetSuppressPads (EDBObjMessage) returns (google.protobuf.BoolValue) {}
|
|
42
|
+
|
|
43
|
+
// Set whether the cell supresses pads
|
|
44
|
+
rpc SetSuppressPads (BoolPropertyMessage) returns (google.protobuf.Empty) {}
|
|
45
|
+
|
|
46
|
+
// Get whether the anti pads is always on
|
|
47
|
+
rpc GetAntiPadsAlwaysOn (EDBObjMessage) returns (google.protobuf.BoolValue) {}
|
|
48
|
+
|
|
49
|
+
// Set whether the anti pads is always on
|
|
50
|
+
rpc SetAntiPadsAlwaysOn (BoolPropertyMessage) returns (google.protobuf.Empty) {}
|
|
51
|
+
|
|
52
|
+
// Get the option for anti pads
|
|
53
|
+
rpc GetAntiPadsOption (EDBObjMessage) returns (google.protobuf.Int64Value) {}
|
|
54
|
+
|
|
55
|
+
// Set the option for anti pads
|
|
56
|
+
rpc SetAntiPadsOption (IntPropertyMessage) returns (google.protobuf.Empty) {}
|
|
57
|
+
|
|
58
|
+
// Get whether the cell is a symbolic footprint
|
|
59
|
+
rpc IsSymbolicFootprint (EDBObjMessage) returns (google.protobuf.BoolValue) {}
|
|
60
|
+
|
|
61
|
+
// Get the name of the cell
|
|
62
|
+
rpc GetName (EDBObjMessage) returns (google.protobuf.StringValue) {}
|
|
63
|
+
|
|
64
|
+
// Set the name of the cell
|
|
65
|
+
rpc SetName (StringPropertyMessage) returns (google.protobuf.Empty) {}
|
|
66
|
+
|
|
67
|
+
// Get the cell's design mode
|
|
68
|
+
rpc GetDesignMode (EDBObjMessage) returns (DesignModeMessage) {}
|
|
69
|
+
|
|
70
|
+
// Set the cell's design mode
|
|
71
|
+
rpc SetDesignMode (DesignModePropertyMessage) returns (google.protobuf.Empty) {}
|
|
72
|
+
|
|
73
|
+
// Get HFSS extent info
|
|
74
|
+
rpc GetHfssExtentInfo (EDBObjMessage) returns (HfssExtentInfoMessage) {}
|
|
75
|
+
|
|
76
|
+
// Set HFSS extent info
|
|
77
|
+
rpc SetHfssExtentInfo (CellSetHfssExtentsMessage) returns (google.protobuf.Empty) {}
|
|
78
|
+
|
|
79
|
+
// Get temperature settings
|
|
80
|
+
rpc GetTemperatureSettings (EDBObjMessage) returns (TemperatureSettingsMessage) {}
|
|
81
|
+
|
|
82
|
+
// Set temperature settings
|
|
83
|
+
rpc SetTemperatureSettings (CellSetTemperatureSettingsMessage) returns (google.protobuf.Empty) {}
|
|
84
|
+
|
|
85
|
+
// Cut out a polygon
|
|
86
|
+
rpc CutOut (CellCutOutMessage) returns (EDBObjMessage) {}
|
|
87
|
+
|
|
88
|
+
// Get a list of property ids.
|
|
89
|
+
rpc GetProductPropertyIds (GetProductPropertyIdsMessage) returns (ProductPropertyIdsMessage) {}
|
|
90
|
+
|
|
91
|
+
// Get product properies
|
|
92
|
+
rpc GetProductProperty (GetProductPropertyMessage) returns (google.protobuf.StringValue) {}
|
|
93
|
+
|
|
94
|
+
// Set a product property value
|
|
95
|
+
rpc SetProductProperty (SetProductPropertyMessage) returns (google.protobuf.Empty) {}
|
|
96
|
+
|
|
97
|
+
// Delete a simulation setup by name
|
|
98
|
+
rpc DeleteSimulationSetup (StringPropertyMessage) returns (google.protobuf.Empty) {}
|
|
99
|
+
|
|
100
|
+
// Get simulation setups
|
|
101
|
+
rpc GetSimulationSetups (EDBObjMessage) returns (EDBObjCollectionMessage) {}
|
|
102
|
+
rpc StreamSimulationSetups (EDBObjMessage) returns (stream EDBObjCollectionMessage) {}
|
|
103
|
+
|
|
104
|
+
// Generate auto HFSS regions
|
|
105
|
+
rpc GenerateAutoHFSSRegions (EDBObjMessage) returns (google.protobuf.Empty) {}
|
|
106
|
+
|
|
107
|
+
// Generate via smart box
|
|
108
|
+
rpc GenerateViaSmartBox (StringPropertyMessage) returns (PolygonDataListMessage) {}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
message CellCreationMessage {
|
|
112
|
+
EDBObjMessage database = 1;
|
|
113
|
+
CellType type = 2;
|
|
114
|
+
string name = 3;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
message CellSetHfssExtentsMessage {
|
|
118
|
+
EDBObjMessage cell = 1;
|
|
119
|
+
HfssExtentInfoMessage info = 2;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
message CellCutOutMessage {
|
|
123
|
+
EDBObjMessage cell = 1;
|
|
124
|
+
EDBObjCollectionMessage included_nets = 2;
|
|
125
|
+
EDBObjCollectionMessage clipped_nets = 3;
|
|
126
|
+
PolygonDataMessage clipping_polygon = 4;
|
|
127
|
+
bool clean_clipping = 5;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
message CellFindMessage {
|
|
131
|
+
EDBObjMessage database = 1;
|
|
132
|
+
CellType type = 2;
|
|
133
|
+
oneof query {
|
|
134
|
+
string name = 3;
|
|
135
|
+
sint64 id = 4;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
message CellSetTemperatureSettingsMessage {
|
|
140
|
+
EDBObjMessage cell = 1;
|
|
141
|
+
TemperatureSettingsMessage temp_settings = 2;
|
|
142
|
+
}
|