April 23, 2024 at 7:02 pm
Guilin Sun
Ansys Employee
Currently you can export E and H fields directly from the monitor, by using script like this:
E=getresult("monitor","E");
H=getresult("monitor","H");
Ex=E.Ex;
Ey=E.Ey;
Ez=E.Ez;
Hx=H.Hx.
Hy=H.Hy;
Hz=H.Hz;
Bx=Hx*mu0;
etc then do the cauculation.
Please try and let me know if you have questions.