diff options
Diffstat (limited to '689/CH8/EX8.1')
-rw-r--r-- | 689/CH8/EX8.1/1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/689/CH8/EX8.1/1.sce b/689/CH8/EX8.1/1.sce new file mode 100644 index 000000000..db929df26 --- /dev/null +++ b/689/CH8/EX8.1/1.sce @@ -0,0 +1,15 @@ +clc; funcprot(0);
+//Example 8.1 Lift Equation
+
+// Initialisation of variables
+V = 100*1.467; // Velocity in ft/s
+alpha =4;
+S = 250; //Wing Area.
+rho = 0.00237;
+
+// Calculations
+Cl = 0.649; // From figure 8.8
+W = Cl*rho/2*S*V^2;
+
+//Results
+disp(W,"Weight with which an airplane can fly with Clark Y wing (lb) :");
\ No newline at end of file |