summaryrefslogtreecommitdiff
path: root/1535/CH4/EX4.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1535/CH4/EX4.4
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1535/CH4/EX4.4')
-rwxr-xr-x1535/CH4/EX4.4/Ch04Ex4.sci10
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