diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3411/CH2/EX2.9 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3411/CH2/EX2.9')
-rw-r--r-- | 3411/CH2/EX2.9/Ex2_9.sce | 15 | ||||
-rw-r--r-- | 3411/CH2/EX2.9/Ex2_9.txt | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/3411/CH2/EX2.9/Ex2_9.sce b/3411/CH2/EX2.9/Ex2_9.sce new file mode 100644 index 000000000..8f6449a63 --- /dev/null +++ b/3411/CH2/EX2.9/Ex2_9.sce @@ -0,0 +1,15 @@ +//Example 2_9
+clc();
+clear;
+//To calculate resolving power in second order
+//We have e*sin(theta)=k*lamda
+//We have e*0.2=k*lamda ->1
+//And e*0.3=(k+1)*lamda ->2
+//Subtracting one and two 3*0.1=lamda
+lamda=5000 //units in armstrongs
+lamda=lamda*10^-8 //units in cm
+e=lamda/0.1 //units in cm
+width=2.5 //units in cm
+N=width/e
+respower=2*N
+printf("Resolving power is %.f",respower)
diff --git a/3411/CH2/EX2.9/Ex2_9.txt b/3411/CH2/EX2.9/Ex2_9.txt new file mode 100644 index 000000000..69b6b527e --- /dev/null +++ b/3411/CH2/EX2.9/Ex2_9.txt @@ -0,0 +1 @@ +Resolving power is 10000
\ No newline at end of file |