summaryrefslogtreecommitdiff
path: root/1646/CH4/EX4.18
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1646/CH4/EX4.18
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 '1646/CH4/EX4.18')
-rwxr-xr-x1646/CH4/EX4.18/Ch04Ex18.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1646/CH4/EX4.18/Ch04Ex18.sce b/1646/CH4/EX4.18/Ch04Ex18.sce
new file mode 100755
index 000000000..fdea914d1
--- /dev/null
+++ b/1646/CH4/EX4.18/Ch04Ex18.sce
@@ -0,0 +1,10 @@
+// Scilab Code Ex4.18: Page-203 (2011)
+clc;clear;
+F = 5;....// Equivalent focal length of Huygens eyepiece, cm
+// as f1 = 3*f, f2 = f and d = 2*f, therefore
+f = 2/3*F; // Focal length of base lens, cm
+f1 = 3*f; // Focal length of field lens, cm
+printf("\nThe focal length of the field lens = %2d cm", f1);
+
+// Result
+// The focal length of the field lens = 10 cm