summaryrefslogtreecommitdiff
path: root/2708/CH3/EX3.3/ex_3_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2708/CH3/EX3.3/ex_3_3.sce')
-rwxr-xr-x2708/CH3/EX3.3/ex_3_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2708/CH3/EX3.3/ex_3_3.sce b/2708/CH3/EX3.3/ex_3_3.sce
new file mode 100755
index 000000000..6a7c280cb
--- /dev/null
+++ b/2708/CH3/EX3.3/ex_3_3.sce
@@ -0,0 +1,10 @@
+//Example 3.3 // Thickness of doubly refracting crystal
+clc;
+clear;
+//given data :
+Uo=1.55;//refractive index for O ray
+Ue=1.54;//refractive index for E ray
+w=6D-7;// wavelength of light used in m
+p=w/2;// path difference in m
+t=w/(2*(Uo-Ue));//thickness of in m
+disp(t*1D2,"thickness of doubly refracting crystal in cm")