summaryrefslogtreecommitdiff
path: root/3869/CH2/EX2.13/Ex2_13.sce
blob: e59439bbd6b8c4658900319cf227f4367061b6cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clear
//
//
//

//Variable declaration
b=0.8                  //distance(mm)
a=0.16                 //slit width(mm)
p1=1
p2=2
p3=3

//Calculation
nbyp=(a+b)/a           //ratio of missing orders
n1=int(nbyp*p1)
n2=int(nbyp*p2)
n3=int(nbyp*p3)        //missing orders

//Result
printf("\n the orders %0.3f %0.3f %0.3f  etc will be missing",n1,n2,n3)