summaryrefslogtreecommitdiff
path: root/689/CH8/EX8.12/12.sce
diff options
context:
space:
mode:
Diffstat (limited to '689/CH8/EX8.12/12.sce')
-rw-r--r--689/CH8/EX8.12/12.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/689/CH8/EX8.12/12.sce b/689/CH8/EX8.12/12.sce
new file mode 100644
index 000000000..1c4aad08e
--- /dev/null
+++ b/689/CH8/EX8.12/12.sce
@@ -0,0 +1,14 @@
+clc; funcprot(0);
+//Example 8.12 Absolute Coefficients with metric units
+
+// Initialisation of variables
+WbyS = 30; //Wing loading(kg/m^2)
+V = 40;
+alpha = 2;
+rho = 0.125;
+
+// Calculations
+Cl = 0.585; // Value of Cl from fig 8.10
+V = sqrt(2*WbyS/(rho*Cl));
+//Results
+disp(V,"Required speed (m/s):"); \ No newline at end of file