#####################################################################
File: LIDAR2_analysis.lsf
Description: Performs analysis on the antenna array, creates
results to be used in INTERCONNECT compact model, visualizes the far field data,
and saves the far field angular distribution for subsequent analysis in both Lumerical
and Matlab.
Copyright 2018 Lumerical Inc.
######################################################################
set the name of the monitor for far field projections将监视器重新命名
mname = "above";
######################################################################
plot transmission into glass superstrate#绘制反射率曲线
######################################################################
T = getresult(mname,"T");#提取监视器mname中的T数据
plot(T.lambda*1e9,T.T,"wavelength (nm)","T","Transmission to glass superstrate");#绘图:plot(A,B,C,D,E):A,B为横纵坐标数据,C,D为横纵坐标的题目,E为图表的标题
setplot("show legend",false);#false为不显示图例,多条曲线,可以设置为true