summaryrefslogtreecommitdiff
path: root/3718/CH13/EX13.3/Ex13_3.sce
blob: ecd187386947206a68ad5190008e45a0b52fc9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Chapter 13: Fuel and Combustions
//Problem: 3
clc;

//Declaration of Variables
x = 0.72    // g
W = 250     // g
w = 150     // g
t1 = 27.3   // C
t2 = 29.1   // C

// Solution
HCV = ((W + w) * (t2 - t1)) / x
HCV = HCV * 4185.0 / 10 ** 6
mprintf("HCV of fuel is : %.3f KJ / Kg",HCV)