Python API: Get time domain signals after simulation #156
-
|
Hi all, I am using openEMS with Python interface and wonder if there is an easy way to access the time domain results? The data is stored to output files port_ut_1 and port_it_1 (for single port case), but I haven't found a way to access this from the API directly. Do I really need to read the files from disk when using Python API? Best regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
Good way to get similar IDE for python as octave has is to install Spyder and set in Tools > Preferences path to python which are you using to run simulations since it has libraries installed. then you have there variable inspector, in python you can't click through variables but you can then use dir() or add other variables as watch for variable. What I tried this is access to data:
|
Beta Was this translation helpful? Give feedback.

Good way to get similar IDE for python as octave has is to install Spyder and set in Tools > Preferences path to python which are you using to run simulations since it has libraries installed.
https://www.spyder-ide.org/
then you have there variable inspector, in python you can't click through variables but you can then use dir() or add other variables as watch for variable.
What I tried this is access to data:
...