summaryrefslogtreecommitdiff
path: root/1026/CH8/EX8.6/Example8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1026/CH8/EX8.6/Example8_6.sce')
-rwxr-xr-x1026/CH8/EX8.6/Example8_6.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1026/CH8/EX8.6/Example8_6.sce b/1026/CH8/EX8.6/Example8_6.sce
new file mode 100755
index 000000000..b94cf2d8d
--- /dev/null
+++ b/1026/CH8/EX8.6/Example8_6.sce
@@ -0,0 +1,19 @@
+//chapter8,Example8_6,pg 183
+
+lam=6300*10^-10
+
+u=1.5
+
+//condition for dark 2*u*t=n*lam
+
+//condition for bright 2*u*t=(2*n-1)(lam/2)
+
+//when t=0 n=0 order dark band will come and at edge 10th bright band will come
+
+n=10
+
+t=(((2*n)-1)*(lam))/(4*u)
+
+printf("thickness of air film\n")
+
+printf("t=%.12f cm",t) \ No newline at end of file