diff options
Diffstat (limited to '1172/CH1/EX1.30')
-rwxr-xr-x | 1172/CH1/EX1.30/1_30.txt | 4 | ||||
-rwxr-xr-x | 1172/CH1/EX1.30/Example1_30.sce | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/1172/CH1/EX1.30/1_30.txt b/1172/CH1/EX1.30/1_30.txt new file mode 100755 index 000000000..03033b9b3 --- /dev/null +++ b/1172/CH1/EX1.30/1_30.txt @@ -0,0 +1,4 @@ +# Problem 30 #
+ standard formula used is
+ lambda= 2t (mu_e-mu_o)
+Thickness of half wave plate of quartz is 3.272222e-03 cm
diff --git a/1172/CH1/EX1.30/Example1_30.sce b/1172/CH1/EX1.30/Example1_30.sce new file mode 100755 index 000000000..f51221ee8 --- /dev/null +++ b/1172/CH1/EX1.30/Example1_30.sce @@ -0,0 +1,11 @@ +clc
+// Given That
+mu_e = 1.553 // refractive index of quartz plate for extra ordinary light
+mu_o = 1.544 // refractive index of quartz plate for ordinary light
+lambda = 5.89e-5 // wavelength of light in Angstrom.
+//Sample Problem 30 Page No. 859
+printf("\n # Problem 30 # \n ")
+printf("Standard formula used is \n lambda= 2t(mu_e-mu_o) \n")
+t = lambda / (2 * (mu_e - mu_o))
+printf("Thickness of half wave plate of quartz is %e cm.", t)
+
|