summaryrefslogtreecommitdiff
path: root/1535/CH5/EX5.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1535/CH5/EX5.3
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 '1535/CH5/EX5.3')
-rwxr-xr-x1535/CH5/EX5.3/Ch05Ex3.sci9
1 files changed, 9 insertions, 0 deletions
diff --git a/1535/CH5/EX5.3/Ch05Ex3.sci b/1535/CH5/EX5.3/Ch05Ex3.sci
new file mode 100755
index 000000000..1cf8b3bcd
--- /dev/null
+++ b/1535/CH5/EX5.3/Ch05Ex3.sci
@@ -0,0 +1,9 @@
+// Scilab Code Ex5.3 : Thickness of Quarter Wave Plate : Page-113 (2010)
+lambda = 6000e-008; // Wavelength of incident light, cm
+mu_e = 1.55; // Refractive index of extraordinary ray
+mu_o = 1.54; // Refractive index of ordinary ray
+t = lambda/(4*(mu_e - mu_o)); // Thickness of Quarter Wave plate of positive crystal, cm
+printf("\nThe thickness of Quarter Wave plate = %6.4f cm", t);
+
+// Result
+// The thickness of Quarter Wave plate = 0.0015 cm \ No newline at end of file