diff options
Diffstat (limited to '2243/CH5/EX5.6')
-rwxr-xr-x | 2243/CH5/EX5.6/Ex5_6.sce | 15 | ||||
-rwxr-xr-x | 2243/CH5/EX5.6/Res5_6.txt | 5 |
2 files changed, 20 insertions, 0 deletions
diff --git a/2243/CH5/EX5.6/Ex5_6.sce b/2243/CH5/EX5.6/Ex5_6.sce new file mode 100755 index 000000000..f665d5ae5 --- /dev/null +++ b/2243/CH5/EX5.6/Ex5_6.sce @@ -0,0 +1,15 @@ +clc();
+clear;
+//Given :
+mu_o = 1.544; //Refractive index for ordinary ray
+mu_e = 1.553;//Refractive index for extraordinary ray
+lambda = 5890;//Wavelength in A
+//(a)Plane polarised light :
+//lambda is converted from A to cm , 1 A = 1.0*10^-8 cm
+t1 = (lambda*10^-8)/(2*(mu_e-mu_o));//Minimum thickness in cm
+//(b)Circularly polarised light :
+t2 = (lambda*10^-8)/(4*(mu_e-mu_o));// Minimum thickness in cm
+printf("Minimum thickness :\n\n");
+printf("(a)Plane polarised light : %.2f x 10^-3 cm \n\n",t1*10^3);
+printf("(b)Circularly polarised light : %.2f x 10^-3 cm ",t2*10^3);
+
diff --git a/2243/CH5/EX5.6/Res5_6.txt b/2243/CH5/EX5.6/Res5_6.txt new file mode 100755 index 000000000..18963479a --- /dev/null +++ b/2243/CH5/EX5.6/Res5_6.txt @@ -0,0 +1,5 @@ + Minimum thickness :
+
+(a)Plane polarised light : 3.27 x 10^-3 cm
+
+(b)Circularly polarised light : 1.64 x 10^-3 cm
\ No newline at end of file |