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 /1271/CH1/EX1.41 | |
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 '1271/CH1/EX1.41')
-rwxr-xr-x | 1271/CH1/EX1.41/41.txt | 7 | ||||
-rwxr-xr-x | 1271/CH1/EX1.41/example1_41.sce | 11 |
2 files changed, 18 insertions, 0 deletions
diff --git a/1271/CH1/EX1.41/41.txt b/1271/CH1/EX1.41/41.txt new file mode 100755 index 000000000..620863d8c --- /dev/null +++ b/1271/CH1/EX1.41/41.txt @@ -0,0 +1,7 @@ +
+ # PROBLEM 41 #
+
+ Standard formula used
+ mu = 4*n*lambda*R / D^2.
+
+ Refractive index of liquid = 1.450765.
\ No newline at end of file diff --git a/1271/CH1/EX1.41/example1_41.sce b/1271/CH1/EX1.41/example1_41.sce new file mode 100755 index 000000000..fabd9f5b2 --- /dev/null +++ b/1271/CH1/EX1.41/example1_41.sce @@ -0,0 +1,11 @@ +clc +// Given That +lambda = 5.896e-7 // wavelength of light in meter +D = 5.1e-3 // diameter of 16th brighter fringe in m +R = 1 // radius of curvature in m +// Sample Problem 41 on page no. 1.55 +printf("\n # PROBLEM 41 # \n") +n = 16 // for sixteenth brighter fringe +mu = 4*n*lambda*R / D^2 // calculation for refractive index of liquid +printf("\n Standard formula used \n mu = 4*n*lambda*R / D^2.\n") +printf("\n Refractive index of liquid = %f.",mu) |