summaryrefslogtreecommitdiff
path: root/689/CH15/EX15.3/3.sce
blob: d69d98486bc6a0783ca6a5493c6e4e6141f50f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
clc; funcprot(0);
//Example 15.3 Power of a fixed pitch propeller
// Initialisation of variables
V = 125*1.467;      // Velocity in ft/sec
n = 2200/60;        // Rotaion per second
D = 6;              // Diameter in ft
rho = 0.002378;

// Calculations
//For Beta = 23 degree
VnD0 = V/(n*D);
Ct0 = 0.075;
Cp0 = 0.076;
T0 = Ct0*rho*n^2*D^4;

V = [VnD0 0.8 0.7 0.6 0.5 0.4 ];
Ct = [Ct0 0.082 0.100 0.120 0.132 0.144 ];
Cp = [Cp0 0.080 0.093 0.103 0.108 0.112 ];
CtByCp = diag(Ct)/diag(Cp);
T = T0*(Cp0/Ct0)*CtByCp;
Eff = diag(V)*diag(CtByCp);
Eff0 = Eff(1);
Cp0 = linspace(Cp0,Cp0, 6);
Cp0ByCp = diag(diag(Cp0)/diag(Cp))

Eff/Eff0;
Eff/Eff0*(n*60);
bhp = [125 123 117 112 110 109];        // From manufactures chart
thp = diag(bhp)*diag(Eff);

Result = zeros(6,11);
Result(:,1) = V';
Result(:,2) = Ct';
Result(:,3) = Cp';
Result(:,4) = Cp0ByCp;
Result(:,5) = Eff/Eff0;
Result(:,6) = Result(:,5)*2200;
Result(:,7) = bhp';
Result(:,8) = diag(CtByCp);
Result(:,9) = Eff;
Result(:,10) = diag(thp);
Result(:,11) = diag(diag(Result(:,1))*diag(Result(:,6))*(D/88));

//Results 

disp(Result,"!!  V/nD        Ct       Cp       CP0/Cp        n/n0       rpm    bhp    Ct/Cp       Efficiency   thp    V      !!") ;
disp("There is a calculation mistake in calculating n/no hence the dependent answer varies");