Skip to content

Layer Stack in Circuit #6434

Discussion options

You must be logged in to vote

Hi @georgmichel ,

Circuit API in PyAEDT is not yet the stackup creation.

You can of course creating it in HFSS 3DLayout which is directly connected to Circuit.

from ansys.aedt.core import Hfss3dLayout
h3d = Hfss3dLayout(version="2025.2")
h3d.modeler.layers.add_layer("TOP")
h3d.modeler.create_rectangle("TOP", [20, 20], [50, 50], name="rect_1")
h3d.modeler.create_line("TOP", [[25, 25], [40, 40]])

If you are interested in Filter, you can use FilterSolutions API:
https://aedt.docs.pyansys.com/version/stable/API/FilterSolutions.html

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@georgmichel
Comment options

Answer selected by georgmichel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants