diff options
Diffstat (limited to '689/CH9/EX9.1/1.sce')
-rw-r--r-- | 689/CH9/EX9.1/1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/689/CH9/EX9.1/1.sce b/689/CH9/EX9.1/1.sce new file mode 100644 index 000000000..3f764a5de --- /dev/null +++ b/689/CH9/EX9.1/1.sce @@ -0,0 +1,19 @@ +clc; funcprot(0);
+//Example 9.1 Lift due to Circulation
+
+// Initialisation of variables
+D = 4;
+L = 12;
+V = 40*1.467;
+rho = 0.002378;
+W = 100/60; // Revolution per second
+
+// Calculations
+R =D/2;
+Vt = 2*%pi*R*W;
+T = 2*%pi*R*Vt;
+Lift = rho*T*V;
+L_total = Lift*L
+
+//Results
+disp(L_total,"Total lifting force (lb):");
|