diff options
Diffstat (limited to '2411/CH3/EX3.d.303/Ex3d_3.sce')
-rwxr-xr-x | 2411/CH3/EX3.d.303/Ex3d_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2411/CH3/EX3.d.303/Ex3d_3.sce b/2411/CH3/EX3.d.303/Ex3d_3.sce new file mode 100755 index 000000000..5363a2a9f --- /dev/null +++ b/2411/CH3/EX3.d.303/Ex3d_3.sce @@ -0,0 +1,13 @@ +// Scilab Code Ex3d.3: Page-206 (2008)
+clc; clear;
+n = 1; // Order of diffraction
+f = 40; // Focal length of the lens, cm
+a = 0.03; // Slit width, cm
+lambda = 5890e-008; // Wavelength of the light used, cm
+// As a*sind(theta) = n*lambda, solving for theta
+theta = asin(n*lambda/a); // The angle of diffraction corresponding to the first minimum, radian
+x = f*theta; // The distance of the first dark band from the axis, cm
+printf("\nThe distance of the first dark band from the axis = %6.4f cm", x);
+
+// Result
+// The distance of the first dark band from the axis = 0.0785 cm
\ No newline at end of file |