summaryrefslogtreecommitdiff
path: root/3869/CH3/EX3.4
diff options
context:
space:
mode:
Diffstat (limited to '3869/CH3/EX3.4')
-rw-r--r--3869/CH3/EX3.4/Ex3_4.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3869/CH3/EX3.4/Ex3_4.sce b/3869/CH3/EX3.4/Ex3_4.sce
new file mode 100644
index 000000000..c17850f82
--- /dev/null
+++ b/3869/CH3/EX3.4/Ex3_4.sce
@@ -0,0 +1,17 @@
+clear
+//
+//
+//
+
+//Variable declaration
+lamda=589.3*10**-9 //wavelength(m)
+mewe=1.65833 //refractive index of e-ray
+mew0=1.48640 //refractive index of o-ray
+
+//Calculation
+t1=lamda/(2*(mewe-mew0)) //thickness of half wave plate(m)
+t2=lamda/(4*(mewe-mew0)) //thickness of quarter wave plate(m)
+
+//Result
+printf("\n thickness of half wave plate is %0.7f mm",t1/10**-3)
+printf("\n thickness of quarter wave plate is %0.6f mm",t2/10**-3)