diff options
Diffstat (limited to '1184/CH16/EX16.5')
-rwxr-xr-x | 1184/CH16/EX16.5/Ex16_5.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1184/CH16/EX16.5/Ex16_5.sce b/1184/CH16/EX16.5/Ex16_5.sce new file mode 100755 index 000000000..26c4549f3 --- /dev/null +++ b/1184/CH16/EX16.5/Ex16_5.sce @@ -0,0 +1,16 @@ +//Example 16-5,Page No - 661
+
+clear
+clc
+
+T = 9.2
+theta = 20
+sin20 = 0.342
+
+D_nautical = T/12.36
+D_statute =D_nautical*0.87
+A = D_statute*0.342
+
+
+printf('\nThe line of distance to the aircraft in \nthe statute miles %.3f ',D_statute)
+printf('\n\nThe altitude of the aircraft is %.2f mi and in feet it is 1161.6',A)
|