July 14, 2023 at 9:55 pm
Guilin Sun
Ansys Employee
I would strongly suggest that you read the script file that creates the data. For example, in this file:
fdtd_unit_cell_export_phase_field.lsf
the data file is:Â
EH_and_phase_vs_radius_interp_fdtd.mat
use the following script:
Â
matlabload("EH_and_phase_vs_radius_interp_fdtd");
EE=E.E;
?size(EE);
result:Â
3 Â 3 Â 1 Â 1 Â 361 Â 3 Â
they represent x,y,z,f/lambda,phase and Ex/Ey/Ez.
Â
Please check the data and see it is from which script file created and you will know the meaning of the dimensions.
Â
Â
Â