diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1871/CH5/EX5.30 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1871/CH5/EX5.30')
-rwxr-xr-x | 1871/CH5/EX5.30/Ch05Ex30.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1871/CH5/EX5.30/Ch05Ex30.sce b/1871/CH5/EX5.30/Ch05Ex30.sce new file mode 100755 index 000000000..407954716 --- /dev/null +++ b/1871/CH5/EX5.30/Ch05Ex30.sce @@ -0,0 +1,12 @@ +// Scilab code Ex5.30: Pg:236 (2008)
+clc;clear;
+L_1 = 5e-05; // Limit of resolution of microscope, cm
+l = 25; // Least distance of distiinct vision, cm
+theta_1 = 1.5; // Angular limit of resolution of eye, minute
+theta_2 = theta_1/60*%pi/180; // Angular limit of resolution of eye, radian
+L_2 = l*theta_2; // Linear limit of the resolution of eye, cm
+M = L_2/L_1; // Magnifying power of the microscope
+printf("\nThe magnifying power of the microscope = %3d ", M);
+
+// Result
+// The magnifying power of the microscope = 218
\ No newline at end of file |