diff options
Diffstat (limited to '3875/CH4/EX4.5/Ex4_5.sce')
-rw-r--r-- | 3875/CH4/EX4.5/Ex4_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3875/CH4/EX4.5/Ex4_5.sce b/3875/CH4/EX4.5/Ex4_5.sce new file mode 100644 index 000000000..da3667ef7 --- /dev/null +++ b/3875/CH4/EX4.5/Ex4_5.sce @@ -0,0 +1,13 @@ +clc;
+clear;
+I=0.7*10^-2 //size of the image in m
+u=0.3 //distance between the convex lens and the slit in m
+v=0.7 //distance between the images in m
+D=1 // distance between the slit and the images in m
+Beta=0.0195*10^-2 //fringe width in m
+
+//calculation
+d=(I*u)/v
+lambda=(Beta*d)/D
+
+mprintf("The wavelength of light used is = %e m or 5850*10^-10 m.",lambda)
|