diff options
Diffstat (limited to '3718/CH13/EX13.3/Ex13_3.sce')
-rw-r--r-- | 3718/CH13/EX13.3/Ex13_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3718/CH13/EX13.3/Ex13_3.sce b/3718/CH13/EX13.3/Ex13_3.sce new file mode 100644 index 000000000..ecd187386 --- /dev/null +++ b/3718/CH13/EX13.3/Ex13_3.sce @@ -0,0 +1,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)
|