How can i open "pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object" #5169
Unanswered
idkeverythingidk
asked this question in
Q&A
Replies: 1 comment 7 replies
-
@idkeverythingidk Please share the full code or a project (in a zip file) to reproduce the issue. The commands you used are AEDT API, it is not PyAEDT. If you are not using PyAEDT commands, and you prefer AEDT API, please submit a support case in the Ansys customer portal. If you prefer PyAEDT API, you could try hfss.post.get_solution_data(...) You can find some examples here: |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
import pyaedt
hfss= pyaedt.Hfss()
oproject = hfss.odesktop.GetActiveProject()
odesign = oproject.GetActiveDesign()
omodule = hfss.odesign.GetModule("ReportSetup")
sol_data = omodule.GetSolutionDataPerVariation(
"Modal Solution Data",
print(sol_data)
[<pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6AFE50>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4050>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4250>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4450>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4650>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4850>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4A50>, <pyaedt.generic.grpc_plugin_dll_class.AedtObjWrapper object at 0x00000287DF6A4C50>]
Q.
I swept freq 128 times and frame 8 times.
I think a 128 x 8 data table was created like the report.
But I don't know how to access these data.
Is there any way to do this?
This is really urgent.
Please help me.
Thanks for reading.
Beta Was this translation helpful? Give feedback.
All reactions