export HFSS model history #5434
-
I'd like to know if there is any way to export the whole HFSS model history in order to get a script for rebuilding the same model in an automatic way. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @erikajob91, Thanks for opening this discussion. You can export the history of an object as a json like:
but right now PyAEDT Hope this helps, Kind regards, Giulia |
Beta Was this translation helpful? Give feedback.
Hi @erikajob91,
Thanks for opening this discussion.
Right now we don't have any feature in PyAEDT that allows you to export the history tree of your model.
What we do have is the method
export_config
that exports the current design properties to a JSON or TOML file.This method export all your model's information, including objects info (without history).
You can export the history of an object as a json like:
but right now PyAEDT
import_config
doesn't read this json.Hope this helps,
Kind regards,
Giulia