summaryrefslogtreecommitdiff
path: root/689/CH8/EX8.7/7.sce
diff options
context:
space:
mode:
Diffstat (limited to '689/CH8/EX8.7/7.sce')
-rw-r--r--689/CH8/EX8.7/7.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/689/CH8/EX8.7/7.sce b/689/CH8/EX8.7/7.sce
new file mode 100644
index 000000000..2f303cadd
--- /dev/null
+++ b/689/CH8/EX8.7/7.sce
@@ -0,0 +1,12 @@
+clc; funcprot(0);
+//Example 8.7 Lift Drag Ratio
+
+// Initialisation of variables
+W = 5000;
+LD_Max = 21.5;
+
+// Calculations
+D = W/LD_Max;
+
+//Results
+disp(D,"Minimum drag on clark Y wing (lb)"); \ No newline at end of file