diff options
Diffstat (limited to '689/CH10/EX10.4/4.sce')
-rw-r--r-- | 689/CH10/EX10.4/4.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/689/CH10/EX10.4/4.sce b/689/CH10/EX10.4/4.sce new file mode 100644 index 000000000..7b0e9e14a --- /dev/null +++ b/689/CH10/EX10.4/4.sce @@ -0,0 +1,18 @@ +clc; funcprot(0);
+//Example 10.4 Coefficient for infinite aspect ratio
+
+// Initialisation of variables
+Cl0 = 1.03;
+alp0 = 9;
+Cd0 = 0.067;
+Cl8 = 1.03;
+AR8 = 8;
+
+// Calculations
+alpi = 18.24*Cl0/AR8
+Cdi = Cl0^2/(%pi*AR8)
+alp = alp0 +alpi;
+Cd =Cd0 +Cdi;
+
+//Results
+disp(Cd,"Drag Coefficient at aspect ratio 8 :", alp,"Angle of attack for aspect ratio 8 (Degree):" );
\ No newline at end of file |