summaryrefslogtreecommitdiff
path: root/689/CH15/EX15.5/5.sce
blob: 3c7ad9a4b2b43f9a09c27e0051efe2cd198f09fb (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
clc; funcprot(0);
//Example 15.5 Thrust of a constant speed propeller
// Initialisation of variables
V = 125*1.467;      // Velocity in ft/sec
n = 1800/60;        // Rotaion per second
D = 9.5;              // Diameter in ft
P = 600*550;
rho = 0.002378;

// Calculations
//For Beta = 23 degree
Cp = P/(rho*n^3*D^5);
ThrustCoeff = rho*n^2*D^4;
VeloCoeff = n*60*D/88;
5
VBynD = linspace(0.5,0,6);
Ct = [0.09 0.101 0.112 0.122 0.132 0.142];              // From figure 15.4 for corrospondiong values of V/nD at Cp = 0.066
T = Ct*ThrustCoeff;
V = VBynD*VeloCoeff;

Result = zeros(6,4);
Result(:,1) = VBynD';
Result(:,2) = Ct';
Result(:,3) = T';
Result(:,4) = V';
//Results 

disp(Result,"!! V/nD   Ct       T            V(mph)  !!") ;