blob: b6c2ae4a00f21433391f6a0353862b4f03d1fa39 (
plain)
1
2
3
4
5
6
7
|
clc;funcprot(0);//EXAMPLE 17.8
// Initialisation of Variables
T=175;.......................//Torque due to brake load in Nm
N=500;.........................//Engine speed in rpm
//calcuations
BP=(2*%pi*N*T)/(60*1000);.......................//Brake power developed by engine in kW
disp(BP,"Brake power developed by engine (in kW):")
|