blob: 5569458d0ee2dd0d5dd981ce34229b6af861adf7 (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//initialisation of variables
t= 4 //hr
Ihp= 8 //ihp
Ohp= 5 //hp
//CALCULATIONS
Hl= t*2544*(Ihp-Ohp)
//RESULTS
printf ('total Btu heat loss over a period of 4hr = %.f Btu',Hl)
|