diff options
Diffstat (limited to '3875/CH4/EX4.5')
-rw-r--r-- | 3875/CH4/EX4.5/4_5.txt | 1 | ||||
-rw-r--r-- | 3875/CH4/EX4.5/Ex4_5.sce | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/3875/CH4/EX4.5/4_5.txt b/3875/CH4/EX4.5/4_5.txt new file mode 100644 index 000000000..4d76b4dcb --- /dev/null +++ b/3875/CH4/EX4.5/4_5.txt @@ -0,0 +1 @@ +The wavelength of light used is = 5.850000e-07 m or 5850*10^-10 m
\ No newline at end of file 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)
|