We’re putting the final touches on our new badges platform. Badge issuance remains temporarily paused, but all completions are being recorded and will be fulfilled once the platform is live. Thank you for your patience.

Ansys Learning Forum Forums Discuss Simulation Photonics Chiral Nearfields and simulating the optical chirality enhancement Ĉ Reply To: Chiral Nearfields and simulating the optical chirality enhancement Ĉ

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.