diff options
Diffstat (limited to '1847/CH4/EX4.15/Ch04Ex15.sce')
-rwxr-xr-x | 1847/CH4/EX4.15/Ch04Ex15.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1847/CH4/EX4.15/Ch04Ex15.sce b/1847/CH4/EX4.15/Ch04Ex15.sce new file mode 100755 index 000000000..3d44e42b2 --- /dev/null +++ b/1847/CH4/EX4.15/Ch04Ex15.sce @@ -0,0 +1,14 @@ +// Scilab Code Ex4.15:: Page-4.24 (2009)
+clc; clear;
+mu_o = 1.51; // Refractive index of ordinary wave
+mu_e = 1.55; // Refractive index of extraordinary wave
+lambda = 6000e-008; // Wavelength of light used, m
+// As for a half wave plate, (mu_o - mu_e)*t = lambda/4, solving for t
+t = lambda/(2*(mu_e - mu_o)); // The thickness of a quarter wave plate for wavelength, cm
+
+printf("\nThe thickness of a half wave plate quartz = %4.2e cm", t);
+
+// Result
+// The thickness of a half wave plate quartz = 7.50e-004 cm
+
+
|