summaryrefslogtreecommitdiff
path: root/3665/CH12/EX12.3/Ex12_3.sce
blob: b09b3d599715db34fd47472e248fa724a7d9b70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
clc//
//
//

//Variable declaration
s=1*10^-3;    //size(m)
l=1*10^-3;    //length(m)
lamda=650*10^-9;    //wavelength(m)

//Calculation
tantheta=(l/2)/s;     
theta=atan(tantheta);    //angle(radian)
sintheta=(sin(theta));

ss=0.6*lamda/sintheta;     //spot size(m)

//Result
printf("\n spot size is %0.3f micro m",ss*10^6)