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 /3537/CH1/EX1.8 | |
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 '3537/CH1/EX1.8')
-rw-r--r-- | 3537/CH1/EX1.8/Ex1_8.sce | 21 | ||||
-rw-r--r-- | 3537/CH1/EX1.8/Ex1_8.txt | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3537/CH1/EX1.8/Ex1_8.sce b/3537/CH1/EX1.8/Ex1_8.sce new file mode 100644 index 000000000..d5192c4a4 --- /dev/null +++ b/3537/CH1/EX1.8/Ex1_8.sce @@ -0,0 +1,21 @@ +//Example 1_8 +clc; +clear; +//To Calculate the Angular position of the 10th maximum and first minimum +//The distance from centre where 10th maximum is obtained by +lamda=5460 //units in angstrom +lamda=5460*10^-10 //units in mts +n=10 +d=0.1 //units in mm +d=0.1*10^-3 //units in mts +D=2 //units in mts +x10=(n*lamda*D)/d //units in mts +//angular position with respect to center is +tantheta=(x10/D) //units in radians +z=atan(tantheta)*(180/%pi) //units in degrees +printf("Angular position of 10th maximum is theta=%.3f degrees",z) +x1=(lamda*D)/(2*d) //units n mts +printf("\n The distance from centre where 1st minimum is obtained is %f metres",x1) +tantheta1=(x1/D) //units in radians +z1=atan(tantheta1)*(180/%pi) //units in degrees +printf("\n Angular position with respect to center is theta=%.3f degrees",z1)
\ No newline at end of file diff --git a/3537/CH1/EX1.8/Ex1_8.txt b/3537/CH1/EX1.8/Ex1_8.txt new file mode 100644 index 000000000..a8986f514 --- /dev/null +++ b/3537/CH1/EX1.8/Ex1_8.txt @@ -0,0 +1,3 @@ +Angular position of 10th maximum is theta=3.125 degrees
+ The distance from centre where 1st minimum is obtained is 0.005460 metres
+ Angular position with respect to center is theta=0.156 degrees
\ No newline at end of file |