How to export Element Data for DC IR simulation in non-gui Siwave?

I've reviewed the Siwave Help documentation and couldn't find an exec file string to export the element data. Is using the IronPython ScrExportElementData command via the Siwave UI the only method?
Has anyone managed to export element data without launching the Siwave UI? If so, how?
Answers
-
Hello @jcjustinchoo ,
to automate Siwave workflow we don't recommend using Siwave iron python native api but rather EDB based python script. The main reason is because the api is incomplete as you probably figured out and EDB provides all automation capabilities.
Please check PyEDB:
https://edb.docs.pyansys.com/version/stable/api/_autosummary/pyedb.siwave.Siwave.export_element_data.html#export_element_data
PyEDB is also installed as dependant package with PyAEDT you can check these examples to get started
https://examples.aedt.docs.pyansys.com/
Also moving from iron python to CPython will allow you to get benefit of all Python ecosystem.
Best regards0