blob: 29ddb82957b8799ceb61826b38c7662d46932f1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
//
//
//
//Variable declaration
D=2 //Distance from screen
lambdaa=5100 //Wavelength
Beta=0.02 //Fringe Width
x=10 //No. of fringes
//Calculations
d=(x*D*lambdaa)/Beta/10**6
//Result
printf("\n The Double slit separation 2d= %0.3f mu m",d)
|