blob: 9ec6266b874cdcc9e31f469dae3f82d3d0b89ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//
//
//
//Variable declaration
D=1.1 //Distance from screen
lambdaa=5900*10**-10 //Wavelength
d=0.00174 //Fringe separation
//Calculations
Beta=(D*lambdaa*10**-1)/d
//Result
printf("\n The Fringe width observed at a distance of 1m from BP is %1.1f *10**-5 m",Beta)
|