summaryrefslogtreecommitdiff
path: root/2657/CH1/EX1.2/Ex1_2.sce
blob: 6ed257156395c7d2b72a0341828b56dca63e4d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Calculation of brake power and friction power
clc,clear
//Given:
ip=10 //Indicated power in kW
eta_m=80 //Mechanical efficiency in percent
//Solution:
//Since, eta_m = bp/ip
bp=(eta_m/100)*ip //Brake power in kW
fp=ip-bp //Friction power in kW
//Results:
printf("\n The brake power delivered, bp = %d kW\n",bp)
printf(" The friction power, fp = %d kW\n\n",fp)