Replies: 2 comments
-
Have a look at the openEMS docu about the dump box propery But this is only about storing the data. Looking/displaying them is a bit more involved e.g. using paraview. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks Thorsten |
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.
-
Hello,
I am attempting to create a "dump box" and I have had no luck figuring out the correct context for Python.
What I really want is to know the H field in the solve domain but as far as I can tell I can only get this at the surface of a rectangular cylinder with a square cross section. If this is not the case I would appreciate knowing otherwise.
Here is what I have tried so far...
dump = CSX.AddDump('dump')
start = [-26,-1.25,4]
stop = [26,1.25,6.2]
box = dump.AddBox(start, stop)
#My best guess properties 1 = H field time domain, 0 = no interpolation, 0 = VTK dump file
CSX.CSProperties.CSPropDumpBox(1,0,0)
Can anyone tell me the correct Python code to output the H field on the surface of the box?
Thanks
Marc
Beta Was this translation helpful? Give feedback.
All reactions