diff options
Diffstat (limited to '3537/CH3/EX3.3/Ex3_3.sce')
-rw-r--r-- | 3537/CH3/EX3.3/Ex3_3.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3537/CH3/EX3.3/Ex3_3.sce b/3537/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..4f9b11561 --- /dev/null +++ b/3537/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,9 @@ +//Example 3_3
+clc();
+clear;
+//To calculate the thickness of a quarter wave plate for monochromotic light
+lemda=600*10^-9 //units in meters
+u0=1.5533
+ue=1.5442
+t=lemda/(4*(u0-ue))*10^3
+printf("The thickness of a quarter wave plate for monochromotic light is %.4f mm ",t)
|