blob: 3f764a5decb5fadf7803eaeeaca7c3c8abc6a485 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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):");
|