Ansys Assistant will be unavailable on the Learning Forum starting January 30. An upgraded version is coming soon. We apologize for any inconvenience and appreciate your patience. Stay tuned for updates.

Ansys Learning Forum Forums Discuss Simulation Photonics Minimize reflection to almost 0% Reply To: Minimize reflection to almost 0%

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.

 

 

[bingo_chatbox]