diff options
Diffstat (limited to '689/CH8/EX8.13')
-rw-r--r-- | 689/CH8/EX8.13/13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/689/CH8/EX8.13/13.sce b/689/CH8/EX8.13/13.sce new file mode 100644 index 000000000..09cbe797b --- /dev/null +++ b/689/CH8/EX8.13/13.sce @@ -0,0 +1,14 @@ +clc; funcprot(0);
+//Example 8.13 Power in terms of Cd/Cl^3/2
+
+// Initialisation of variables
+W = 4000;
+S = 300;
+Cl = 1.2;
+Cd = 0.1;
+rho = 0.002378;
+// Calculations
+HP = (W/550)*(Cd/Cl^1.5)*sqrt(W/S)/sqrt(rho/2);
+
+//Results
+disp(HP,"Required Horse Power(hp):");
\ No newline at end of file |