how to get the curve data with pyaedt ? #4314
Closed
iaskgithub
started this conversation in
General
Replies: 1 comment 1 reply
-
Get_solution_data_per_variation, only obtains one variation per call, in your case you should use get_solution_data, if you debug, you will find how get_solution_data uses get_solution_data_per_variation at the end. When you use get_solution_data, pyaedt returns an object, you can change the active trace inside this object, like in this example: My suggestion is checking the available methods and properties doing: dir(datax) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
the curves is created in the maxwell , I want read them via the pyaedt
datax=proj.post.get_solution_data_per_variation(sweeps={"TSC_Ipeak": ["All"]}, expression="Moving1.Torque") datar=datax.data_real()
datax.plot()
I just get one curve of them ,how to get all of them?
which function should i use get_solution_data_per_variation or get_solution_data?
Beta Was this translation helpful? Give feedback.
All reactions