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 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.

 

Â