summaryrefslogtreecommitdiff
path: root/689/CH8/EX8.9/9.sce
diff options
context:
space:
mode:
Diffstat (limited to '689/CH8/EX8.9/9.sce')
-rw-r--r--689/CH8/EX8.9/9.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/689/CH8/EX8.9/9.sce b/689/CH8/EX8.9/9.sce
new file mode 100644
index 000000000..6e1681a69
--- /dev/null
+++ b/689/CH8/EX8.9/9.sce
@@ -0,0 +1,14 @@
+clc; funcprot(0);
+//Example 8.9 Polar Curve
+
+// Initialisation of variables
+Cl_clark = 0.43; //Values from fig 8.18
+Cd_clark = 0.020; //Values from fig 8.18
+Cl_USA = 0.55; //Values from fig 8.19
+Cd_USA = 0.03; //Values from fig 8.19
+// Calculations
+LbyD_clark = Cl_clark/Cd_clark;
+LbyD_USA = Cl_USA/Cd_USA;
+
+//Results
+disp(LbyD_clark,"Maximum L/D for clark Y :",LbyD_USA,"Maximum L/D for USA-35 :");