blob: c02a6421eb44243685d5292eaf24f1355a3c7b2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//initialisation of variables
n=150//rpm
H=40//ft
hp=20000//hp
ns=100//rpm
//CALCULATIONS
p=(ns*H^1.25/n)^2
num=hp/p
//RESULTS
printf ('\n number of units should be used= %.f ',num+1)
|