diff options
Diffstat (limited to '1535/CH4/EX4.4/Ch04Ex4.sci')
-rwxr-xr-x | 1535/CH4/EX4.4/Ch04Ex4.sci | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1535/CH4/EX4.4/Ch04Ex4.sci b/1535/CH4/EX4.4/Ch04Ex4.sci new file mode 100755 index 000000000..0bf70c437 --- /dev/null +++ b/1535/CH4/EX4.4/Ch04Ex4.sci @@ -0,0 +1,10 @@ +// Scilab Code Ex4.4 : Page-92 (2010)
+lambda = 650e-009; // Wavelength of light used, m
+N = 6000e+02; // Number of lines per m on grating, per m
+theta = 90; // Angle at which the highest spectral order is obtained, degrees
+// We have sin(theta) = n*N*lambda, solving for n
+n = sind(theta)/(N*lambda); // The highest order of spectra with diffraction grating
+printf("\nThe highest order of spectra obtained with diffraction grating = %1d", n);
+
+// Result
+// The highest order of spectra obtained with diffraction grating = 2
\ No newline at end of file |