Guilin Sun
Ansys Employee

Good to know you have resolved the first issue.

You can find the min of the transmission or reflection. For example:

R=transmission("monitor_1_1");

f=getdata("monitor_1_1","f");

Rmin=min(R);

nR=find(R,Rmin);

fmin=f(nR);

?c/fmin*1e6; # wavelength which shows the min reflection

plot(c/f*1e6,R,"w um","R","Reflection");

so you will know exactly which wavelength has the min reflection.

 

Â