blob: b21c22b1197950c21eb66a31fb647be3d4ca0b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear
//given
//find total heat consumption of low heat value basis
//
//heat consumption of gaseous fuel ,low heat value
x=6.8
y=950.
H=x*y
//heat consumption of pilot value
e=0.021
f=19350.
E=e*f
T=H+E
printf("\n \n total heat consumption value %.2f per bhp",T)
|