-
Hi, so I was able to export geometries through the command line to ANSYS HFSS by using When I try to export in klayout I run into too many errors, so I would rather just be able to export from the command line. Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think you meant to use the |
Beta Was this translation helpful? Give feedback.
We already covered this here: #102 (comment)
But if you have
Chip_1.py
you shouldn't need that macro. Do you have the geometry of this chip defined there, or in some other python file?As long as you have following files:
klayout_package/python/kqcircuits/chips/my_chip.py
a chip class which defines geometry of the chipklayout_package/python/kqcircuits/simulations/my_chip_sim.py
a simulation class which places the chip on the layout and defines ports for itklayout_package/python/scripts/simulations/my_chip_sim.py
a simulation script which takes the simulation class, sweeps its parameters, and configures ANSYS to simulate it.Then
kqc sim my_chip_sim.py
should work