-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from ansys-internal/doc
Doc
- Loading branch information
Showing
10 changed files
with
43 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
EDB Queries | ||
=========== | ||
PyEBD allows layout information queries, this section describe some basic examples: | ||
|
||
- stackup layers | ||
.. code:: python | ||
- changing layer thickness | ||
.. code:: python | ||
- Nets | ||
.. code:: python | ||
- Components | ||
.. code:: python | ||
. image:: ../Resources/aedt_box.png | ||
:width: 800 | ||
:alt: Modeler Object |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Loading layout | ||
============== | ||
Although an entire layout can be built from scratch with PyEDB most of the time the first step is | ||
loading an existing aedb file. This section is showing how to load an EDB and start manipulating | ||
objects. | ||
|
||
|
||
|
||
.. code:: python | ||
from pyedb.grpc.edb import Edb | ||
edb_file = r"C:\Temp\My_edb_file.aedb" | ||
edb = Edb(edbversion="2024.1", edbpath=edb_file, port=50001) | ||
.. image:: ../Resources/starting_load_edb.png | ||
:width: 600 | ||
:alt: Loading first EDB | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters