diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1847/CH2/EX2.54 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1847/CH2/EX2.54')
-rwxr-xr-x | 1847/CH2/EX2.54/Ch02Ex54.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1847/CH2/EX2.54/Ch02Ex54.sce b/1847/CH2/EX2.54/Ch02Ex54.sce new file mode 100755 index 000000000..9125e8dae --- /dev/null +++ b/1847/CH2/EX2.54/Ch02Ex54.sce @@ -0,0 +1,12 @@ +// Scilab Code Ex2.54:: Page-2.37(2009) +clc; clear; +mu = 1.45; // Refractive index of the film +b = 1/10; // Fringe width, cm +lambda = 6600e-008; // Wavelength of light used to illuminate a wedge shaped film, cm +// As b = lambda/(2*mu*theta), solving for theta +theta = lambda/(2*mu*b); // Angle of the wedge, radian + +printf("\nThe acute angle of the wedge shaped film = %6.4f degrees", theta*180/%pi); + +// Result +// The acute angle of the wedge shaped film = 0.0130 degrees |