-
Hi, I have written below code for creating Standard report using TwinBuilder pyaedt.
**Some which i also tried are working fine like -
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Hi @shabham22, Thanks for opening this discussion. Hope this helps, kinf regards, Giulia |
Beta Was this translation helpful? Give feedback.
-
Hi @shabham22, Why don't you create your report with the In my previous example I specified Kind regards, Giulia |
Beta Was this translation helpful? Give feedback.
Hi @shabham22,
Why don't you create your report with the
create_report
method as I showed you in my previous screenshot? this method returns excatly the same object as creating it withpost.reports_by_category.standard
and you can access theedit_cartesian_marker
in the same way.I suggest you use an IDE to debug your code and use the in-built python function
dir()
to discover which properties or methods of an object you can access.For example, in my case I use PyCharm and if I debug the Standard report object I can see what I can access:
.
In my previous example I specified
TR
as my setup sweep name, this is becauseTR
is the name of my transient setup so ifAC
is the name of your AC s…