From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1847/CH4/EX4.13/Ch04Ex13.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1847/CH4/EX4.13/Ch04Ex13.sce (limited to '1847/CH4/EX4.13') diff --git a/1847/CH4/EX4.13/Ch04Ex13.sce b/1847/CH4/EX4.13/Ch04Ex13.sce new file mode 100755 index 000000000..05828c751 --- /dev/null +++ b/1847/CH4/EX4.13/Ch04Ex13.sce @@ -0,0 +1,14 @@ +// Scilab Code Ex4.13:: Page-4.24 (2009) +clc; clear; +mu_o = 1.54; // Refractive index of ordinary wave +mu_e = 1.45; // Refractive index of extraordinary wave +lambda = 5500e-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_o - mu_e)); // The thickness of a half wave plate for wavelength, cm + +printf("\nThe thickness of a half wave plate for wavelength = %4.2e cm", t); + +// Result +// The thickness of a half wave plate for wavelength = 3.06e-004 cm + + -- cgit