summaryrefslogtreecommitdiff
path: root/1808/CH2/EX2.24/Chapter2_Example24.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1808/CH2/EX2.24/Chapter2_Example24.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1808/CH2/EX2.24/Chapter2_Example24.sce')
-rw-r--r--1808/CH2/EX2.24/Chapter2_Example24.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1808/CH2/EX2.24/Chapter2_Example24.sce b/1808/CH2/EX2.24/Chapter2_Example24.sce
new file mode 100644
index 000000000..e93581ce1
--- /dev/null
+++ b/1808/CH2/EX2.24/Chapter2_Example24.sce
@@ -0,0 +1,16 @@
+clc
+clear
+//INPUT DATA
+//CH2+(3/2) (O2+3.773 N2)= CO2+H2O+5.66N2 ;//STOICHIOMETRIC EQUATION
+dU=-43.2;//Internal energy in MJ/kg
+
+//CALCULATIONS
+dH=dU+(7.66-7.16)*8.3143*10^-3*298/14;//ENTHALPY CHANGE
+Hp=-((1*-393.52)+(-241.8))/(221.4);//enthalpy of products per kg of mixture
+Hr=Hp-((-43.1*14)/(221.4));//Enthalpy of reactants per kg of mixture
+
+//OUTPUT
+printf('enthalpy of products per kg of mixture %3.2f MJ/kg \n enthalpy of reactants per kg of mixture %3.2f MJ/kg',Hp,Hr)
+
+
+