diff options
Diffstat (limited to '3875/CH6/EX6.4/Ex6_4.sce')
-rw-r--r-- | 3875/CH6/EX6.4/Ex6_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3875/CH6/EX6.4/Ex6_4.sce b/3875/CH6/EX6.4/Ex6_4.sce new file mode 100644 index 000000000..abc61a605 --- /dev/null +++ b/3875/CH6/EX6.4/Ex6_4.sce @@ -0,0 +1,11 @@ +clc;
+clear;
+myu_e=1.553 //refractive index
+myu_0=1.542 //refractive index
+lambda=5.5*10^-5//wavelength in m
+
+//calculation for minimum thickness i.e half wave plate
+d=lambda/(2*(myu_e-myu_0))
+
+mprintf("The thickness of the plate is = %1.1e m",d)
+
|