summaryrefslogtreecommitdiff
path: root/1847/CH4/EX4.26
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.26
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.26')
-rwxr-xr-x1847/CH4/EX4.26/Ch04Ex26.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/1847/CH4/EX4.26/Ch04Ex26.sce b/1847/CH4/EX4.26/Ch04Ex26.sce
new file mode 100755
index 000000000..2c2ecda1a
--- /dev/null
+++ b/1847/CH4/EX4.26/Ch04Ex26.sce
@@ -0,0 +1,14 @@
+// Scilab Code Ex4.26:: Page-4.42 (2009)
+clc; clear;
+lambda = 6600e-010; // Wavelength of circularly polarized light, cm
+mu_R = 1.53914; // Refractive index of right-handed circularly polarized light
+mu_L = 1.53920; // Refractive index of left-handed circularly polarized light
+t = 0.0005; // Thickness of polarimeter plate, m
+theta = %pi/lambda*(mu_L-mu_R)*t; // Angle of rotation produced by the polarimeter plate, radian
+
+printf("\nThe angle of rotation produced by the polarimeter plate = %4.2f degrees", theta*180/%pi);
+
+// Result
+// The angle of rotation produced by the polarimeter plate = 8.18 degrees
+
+