summaryrefslogtreecommitdiff
path: root/1535/CH4/EX4.9/Ch04Ex9.sci
diff options
context:
space:
mode:
Diffstat (limited to '1535/CH4/EX4.9/Ch04Ex9.sci')
-rwxr-xr-x1535/CH4/EX4.9/Ch04Ex9.sci10
1 files changed, 10 insertions, 0 deletions
diff --git a/1535/CH4/EX4.9/Ch04Ex9.sci b/1535/CH4/EX4.9/Ch04Ex9.sci
new file mode 100755
index 000000000..7c63b3535
--- /dev/null
+++ b/1535/CH4/EX4.9/Ch04Ex9.sci
@@ -0,0 +1,10 @@
+// Scilab Code Ex4.9 : Page-94 (2010)
+lambda = 550e-09; // Wavelength of light, m
+D = 20e-02; // Diameter of objective of telescope, m
+d = 6e+003; // Distance of two points from the objective of telescope, m
+theta = 1.22*lambda/D; // Angular separation between two points, rad
+x = theta*d; // Linear separation between two points, m
+printf("\nThe linear separation between two points = %5.2f mm", x/1e-03);
+
+// Result
+// The linear separation between two points = 20.13 mm \ No newline at end of file