blob: 82896f0d7b4eb0dcba9d11fbb9cc76e88a553a17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//given
//
//find the brake horse power
N=1150.
Wt=151.
l=4.
Wo=22.
//finding netforce
//f=Wt-Wo
F=Wt-Wo
//then as
R=4.
//calculating Brake horse power
Bhp=F*R*N/(5250.)
printf("\n \n braking horse power %.2f bhp",Bhp)
|