Replies: 1 comment
-
Hi @geexie , Once youi get the data: solution = m3d.post.get_solution_data(expressions=expressions, report_category='C') You do not need to export to data to a file, "solution" is an object with ALL the information, I encourage you to debug and check what it is inside (dir(solution)), for instance you have solution.full_matrix_real_imag , but there are more advanced features. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I simulate capacitance matrix for my qubit design with Maxwell3d. I export model from GDS file, and assign the excitations and matrix. What is the proper way to retrieve capacitance matrix after simulation?
Currently I use the following code
which gives me table with individual element of matrix as well as some non relevant to it information, but I believe it's might be better/easier solution to do so.
Manually I can export capacitance matrix to a txt file in a format like following
I'm wondering if I can do something similar in pyaedt API.
PS: full code snippet for the example
Beta Was this translation helpful? Give feedback.
All reactions