summaryrefslogtreecommitdiff
path: root/1949/CH1/EX1.5
diff options
context:
space:
mode:
Diffstat (limited to '1949/CH1/EX1.5')
-rwxr-xr-x1949/CH1/EX1.5/1_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1949/CH1/EX1.5/1_5.sce b/1949/CH1/EX1.5/1_5.sce
new file mode 100755
index 000000000..069506513
--- /dev/null
+++ b/1949/CH1/EX1.5/1_5.sce
@@ -0,0 +1,15 @@
+//Chapter-1,Example 1_5,Page 1-18
+clc()
+
+//Given Data:
+t=0.2/(100)^2*10^-2 //thickness of film in meter
+lam=5.5*10^-7 //wavelength of light in meter
+r=0 //normal incidence
+n=1 //first band
+
+//Calculations:
+
+//Condition for dark fringe is
+//2ut*cos r =n*lam
+u=n*lam/(2*t*cos(r)) //Refractive index of a oil
+printf('Refractive index of a oil is =%.3f ',u)