You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got imported solution data in HFSS and Circuit. The solutions are imported from a table.
To generate a report currently the IronPython API needs to be used:
title = "Plot_title"
solution_data_type = "Modal Solution Data"
oreport = pyaedt_app.oreportsetup
oreport.CreateReport(title,
solution_data_type,
"Rectangular Plot",
solution_name,
[],
[
"Tb(Time in s):=" , ["All"]
],
[
"X Component:=" , "Tb(Time in s)",
"Y Component:=" , ["Tb(Impedance in Ohm)"]
])
The solution to plot was imported from a table. It contains a time and magnitude vector. The solution itself is available and is listed for example in HFSS: hfss.post.available_report_solutions().
When I try to create the report with the hfss.post.create_report_function and I give the solution name into the setup_sweep_name property of the function I got just an error that the solution does not exist.
Because it was imported there is no internal sweep for it and the domain is not available for example if creating the graph manually.
Please implement the functionality given from the IronPython function into the create report method.
Furthermore I found it not really intuitive that the solution name was the setup_sweep_name in the function. Maybe I would it implement more general here because if now sweep was available e. g. for imported data this methodology does not work.
Steps for implementing the feature
Rewrite the functionality for all kind of available solution data.
Useful links and references
No response
The text was updated successfully, but these errors were encountered:
Description of the feature
I got imported solution data in HFSS and Circuit. The solutions are imported from a table.
To generate a report currently the IronPython API needs to be used:
title = "Plot_title"
solution_data_type = "Modal Solution Data"
oreport = pyaedt_app.oreportsetup
oreport.CreateReport(title,
solution_data_type,
"Rectangular Plot",
solution_name,
[],
[
"Tb(Time in s):=" , ["All"]
],
[
"X Component:=" , "Tb(Time in s)",
"Y Component:=" , ["Tb(Impedance in Ohm)"]
])
The solution to plot was imported from a table. It contains a time and magnitude vector. The solution itself is available and is listed for example in HFSS: hfss.post.available_report_solutions().
When I try to create the report with the hfss.post.create_report_function and I give the solution name into the setup_sweep_name property of the function I got just an error that the solution does not exist.
Because it was imported there is no internal sweep for it and the domain is not available for example if creating the graph manually.
Please implement the functionality given from the IronPython function into the create report method.
Furthermore I found it not really intuitive that the solution name was the setup_sweep_name in the function. Maybe I would it implement more general here because if now sweep was available e. g. for imported data this methodology does not work.
Steps for implementing the feature
Rewrite the functionality for all kind of available solution data.
Useful links and references
No response
The text was updated successfully, but these errors were encountered: