diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1871/CH6/EX6.12 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1871/CH6/EX6.12')
-rwxr-xr-x | 1871/CH6/EX6.12/Ch06Ex12.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1871/CH6/EX6.12/Ch06Ex12.sce b/1871/CH6/EX6.12/Ch06Ex12.sce new file mode 100755 index 000000000..df0772144 --- /dev/null +++ b/1871/CH6/EX6.12/Ch06Ex12.sce @@ -0,0 +1,9 @@ +// Scilab code Ex6.12: Pg:262 (2008)
+clc;clear;
+t = 0.003; // Thickness of the crystal slice, cm
+Lambda = 6e-005; // Wavelength of linearly polarized light, cm
+d_mu = Lambda/(4*t); // Difference in the refractive indices of two rays
+printf("\nThe difference in the refractive indices of two rays = %1.0e ", d_mu );
+
+// Result
+// The difference in the refractive indices of two rays = 5e-003
\ No newline at end of file |