How to get S parameters matrix data from a solved HFSS design #4973
-
Hi I am trying to get the S parameters matrix from a solved HFSS design. I am getting FfdSolutionDataExporter object with this: if setup_of_interest.is_solved: I was watching some videos demonstration that ffddata should contain touchstone data as well. However I am missing S parameters. Am I using old version of Pyaedt (I guess my version is 0.9.9)? How should I get the S parameters matrix? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
You could either use |
Beta Was this translation helpful? Give feedback.
You could either use
hfss_instance.post.get_solution_data(<...>)
and specify the expression you want to export or directlyhfss_instance.export_touchstone(<...>)
if you like to get a standard touchstone file as output.