summaryrefslogtreecommitdiff
path: root/1172/CH1/EX1.21
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH1/EX1.21')
-rwxr-xr-x1172/CH1/EX1.21/1_21.txt5
-rwxr-xr-x1172/CH1/EX1.21/Example1_21.sce12
2 files changed, 17 insertions, 0 deletions
diff --git a/1172/CH1/EX1.21/1_21.txt b/1172/CH1/EX1.21/1_21.txt
new file mode 100755
index 000000000..606823378
--- /dev/null
+++ b/1172/CH1/EX1.21/1_21.txt
@@ -0,0 +1,5 @@
+# Problem 21 #
+
+ Standard formula used
+ n*lambda= (a+b)*sin(theta)
+ Maximum order n = 3 may be seen in between the given wavelength spectrum.
diff --git a/1172/CH1/EX1.21/Example1_21.sce b/1172/CH1/EX1.21/Example1_21.sce
new file mode 100755
index 000000000..04abe75c0
--- /dev/null
+++ b/1172/CH1/EX1.21/Example1_21.sce
@@ -0,0 +1,12 @@
+clc
+//GivenS
+lambda=6.2e-5// wavelength of monochromatic light in cm
+grating_element= 1/5000// lines per centimeter
+theta=90// angle of second order spectral line in degree
+
+//Sample Problem 21 Page No. 55
+printf("\n # Problem 21 # \n")
+printf(" \n Standard formula used \n n*lambda= (a+b)*sin(theta) \n")
+n=grating_element/lambda
+printf(" Maximum order n = %d may be seen in between the given wavelength spectrum.\n ",n)
+