Importing SSS models using pyAEDT #4975
-
Hi all, is it possible to import into circuit SSS model in a similar way as Touchstone models are imported using create_touchstone_component() or spice component using create_component_from_spicemodel()? If json/IronPython API is only choice, is there an example how to create component with .pins list attribute, so .pins[x].connect_to_component() function can be used to interconnect components? Thanks in advance, |
Beta Was this translation helpful? Give feedback.
Answered by
gkorompi
Apr 16, 2025
Replies: 1 comment 3 replies
-
Hello @mikevacany. We are currently implementing a function to support .sss files. FYI #5804 |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello @mikevacany, we actually implemented a port_names input argument in order to support this difference:
https://aedt.docs.pyansys.com/version/stable/API/_autosummary/ansys.aedt.core.modeler.circuits.primitives_nexxim.NexximComponents.create_model_from_nexxim_state_space.html#create_model_from_nexxim_state_space
The way .sss files are written are in bit form, hence we cannot access the port names, instead for all cases we support the default naming (with numbers), and in other cases you can input the port name list.
Let me know if this is limiting your effort.
Georgios