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