diff options
Diffstat (limited to '1535/CH3/EX3.6/Ch03Ex6.sci')
-rwxr-xr-x | 1535/CH3/EX3.6/Ch03Ex6.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1535/CH3/EX3.6/Ch03Ex6.sci b/1535/CH3/EX3.6/Ch03Ex6.sci new file mode 100755 index 000000000..1c0369e2d --- /dev/null +++ b/1535/CH3/EX3.6/Ch03Ex6.sci @@ -0,0 +1,10 @@ +// Scilab Code Ex3.6 : Page-72 (2010)
+lambda = 5900e-008; // Wavelength of monochromatic lihgt used, m
+t = 0.010e-01; // Spacer thickness, cm
+l = 10; // Wedge length, cm
+theta = t/l; // Angle of the wedge, rad
+beta = lambda/(2*theta); // Fringe width, cm
+printf("\nThe separation between consecutive bright fringes = %5.3e cm", beta);
+
+// Result
+// The separation between consecutive bright fringes = 2.950e-001 cm
\ No newline at end of file |