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 Optics Lumercial MODE : bug while exporting data in matlab format Reply To: Lumercial MODE : bug while exporting data in matlab format

Guilin Sun
Ansys Employee

Thank you to bring this issue with us. It seems the software is experiencing some difficulties in exporting the mode data. We need sometime to investigate and will let you know if there is any progress. Please be patient.

At the mean time, please you get result to export data. If you want to add the H fields to the dataset, you can simply add it like this:

E=getresult("mode1","E");

 

H=getresult("mode1","H");

 

EH=E;

 

EH.addattribute("H",H.Hx,H.Hy,H.Hz);

 

matlabsave("mode1.mat",EH);

Please try.