summaryrefslogtreecommitdiff
path: root/689/CH8/EX8.3/3.sce
diff options
context:
space:
mode:
Diffstat (limited to '689/CH8/EX8.3/3.sce')
-rw-r--r--689/CH8/EX8.3/3.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/689/CH8/EX8.3/3.sce b/689/CH8/EX8.3/3.sce
new file mode 100644
index 000000000..aadfeb0f0
--- /dev/null
+++ b/689/CH8/EX8.3/3.sce
@@ -0,0 +1,14 @@
+clc; funcprot(0);
+//Example 8.3 Lift Equation
+
+// Initialisation of variables
+W_by_S = 9;
+rho = 0.002378;
+alpha = 6 ;
+Cl = 0.791; // Value of Cl from fig 8.8
+
+// Calculations
+V = sqrt(W_by_S*2/(rho*Cl));
+
+//Results
+disp(V,"Velocity in ft/sec :"); \ No newline at end of file