summaryrefslogtreecommitdiff
path: root/1535/CH5/EX5.2
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.2
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.2')
-rwxr-xr-x1535/CH5/EX5.2/Ch05Ex2.sci9
1 files changed, 9 insertions, 0 deletions
diff --git a/1535/CH5/EX5.2/Ch05Ex2.sci b/1535/CH5/EX5.2/Ch05Ex2.sci
new file mode 100755
index 000000000..545400db1
--- /dev/null
+++ b/1535/CH5/EX5.2/Ch05Ex2.sci
@@ -0,0 +1,9 @@
+// Scilab Code Ex5.2 : Percentage transmission of polarized light: Page-113 (2010)
+I0 = 1; // For simplicity, we assume the intensity of light falling on the second Nicol prism to be unity, watt per metre square
+theta = 30; // Angle through which the crossed Nicol is rotated, degrees
+I = I0*cosd(90-theta)^2; // Intensity of the emerging light from second Nicol, watt per metre square
+T = I/(2*I0)*100; // Percentage transmission of incident light
+printf("\nThe percentage transmission of incident light after emerging through the Nicol prism = %4.1f percent", T);
+
+// Result
+// The percentage transmission of incident light after emerging through the Nicol prism = 12.5 percent \ No newline at end of file