summaryrefslogtreecommitdiff
path: root/689/CH17/EX17.1/1.sce
diff options
context:
space:
mode:
Diffstat (limited to '689/CH17/EX17.1/1.sce')
-rw-r--r--689/CH17/EX17.1/1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/689/CH17/EX17.1/1.sce b/689/CH17/EX17.1/1.sce
new file mode 100644
index 000000000..b3a0bd1c0
--- /dev/null
+++ b/689/CH17/EX17.1/1.sce
@@ -0,0 +1,15 @@
+clc; funcprot(0);
+//Example 17.1 Absolute and service ceilings
+//Variable Initialisation
+W = 4000;
+DelHp0 = 60;
+DelHp10K = 17;
+
+//Calculation
+RC0 = DelHp0*33000/W;
+RC10K = DelHp10K*33000/W;
+H = 10000/(1 - (RC10K/RC0));
+Hs = H*(RC0-100)/RC0;
+
+//Results
+disp(Hs,"Service Ceiling (ft) : ");