summaryrefslogtreecommitdiff
path: root/3869/CH1/EX1.1/Ex1_1.sce
blob: 1a2ae6dbef2bdb37e7c82dc3bd5c557f8581ed91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
clear
//
//
//

//Variable declaration
d=0.08*10**-2         //distance between slits(m)
beta1=6*10**-4         //fringe width(m)
c=3*10**8             //velocity of light(m/sec)
new=8*10**11*10**3    //frequency(Hz)

//Calculation
lamda=c/new           //wavelength(m)
D=beta1*d/lamda        //distance of screen from slits(m)

//Result
printf("\n distance of screen from slits is %0.3f  m",D)