summaryrefslogtreecommitdiff
path: root/1847/CH4/EX4.8/Ch04Ex8.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1847/CH4/EX4.8/Ch04Ex8.sce
downloadScilab-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/CH4/EX4.8/Ch04Ex8.sce')
-rwxr-xr-x1847/CH4/EX4.8/Ch04Ex8.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1847/CH4/EX4.8/Ch04Ex8.sce b/1847/CH4/EX4.8/Ch04Ex8.sce
new file mode 100755
index 000000000..27a99a461
--- /dev/null
+++ b/1847/CH4/EX4.8/Ch04Ex8.sce
@@ -0,0 +1,12 @@
+// Scilab Code Ex4.8:: Page-4.9 (2009)
+clc; clear;
+ip = 60; // Polarizing angle, degrees
+mu = tand(ip); // Brewster's law giving refractive index
+A = 60; // Angle of prism, degrees
+d = (mu - 1)*A; // Angle of minimum deviation for green light, degrees
+
+printf("\nThe angle of minimum deviation for green light = %5.2f degrees", d);
+
+// Result
+// The angle of minimum deviation for green light = 43.92 degrees
+