summaryrefslogtreecommitdiff
path: root/1427/CH2/EX2.3/2_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH2/EX2.3/2_3.sce')
-rw-r--r--1427/CH2/EX2.3/2_3.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1427/CH2/EX2.3/2_3.sce b/1427/CH2/EX2.3/2_3.sce
new file mode 100644
index 000000000..dcd5cfaff
--- /dev/null
+++ b/1427/CH2/EX2.3/2_3.sce
@@ -0,0 +1,12 @@
+//ques-2.3
+//Calculating HCV of fuel
+clc
+x=0.72;//Weight of fuel (in g)
+C=80;//Percentage of Carbon
+t1=27.3;//Initial temperature
+t2=29.1//Final temperature
+W=250;//Water of water in calorimeter (in g)
+w=150;//Water equivalent (in g)
+HCV=((W+w)*(t2-t1))/x;//HCV of fuel (in kcal/kg)
+HCV=HCV*4.2;//HCV of fuel (in kJ/kg)
+printf("The HCV of the fuel is %d kJ/kg.\n",HCV);