blob: 4a1d58662f2ecb88e1494f197ba53d4ff86800de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Chapter 13: Fuel and Combustions
//Problem: 4
clc;
//Declaration of Variables
x = 0.84 // g
W = 1060 // g
w = 135 // g
d_t = 2.5 // C
// Solution
HCV = ((W + w) * d_t) / x
mprintf("HCV of fuel is : %.2f kcal / kg",HCV)
|