summaryrefslogtreecommitdiff
path: root/3411/CH3/EX3.2/Ex3_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3411/CH3/EX3.2/Ex3_2.sce')
-rw-r--r--3411/CH3/EX3.2/Ex3_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3411/CH3/EX3.2/Ex3_2.sce b/3411/CH3/EX3.2/Ex3_2.sce
new file mode 100644
index 000000000..8220c1a9f
--- /dev/null
+++ b/3411/CH3/EX3.2/Ex3_2.sce
@@ -0,0 +1,10 @@
+//Example 3_2
+clc();
+clear;
+//To calculate the thickness of quarter wave plate
+lamda=6000 //units in armstrongs
+lamda=lamda*10^-10 //units in mts
+n0=1.554
+ne=1.544
+d=(lamda)/(4*(n0-ne)) //units in mts
+printf("Thickness of quarter wave plate is %.6fmts",d)