summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.25
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH3/EX3.25
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 '1019/CH3/EX3.25')
-rw-r--r--1019/CH3/EX3.25/Example_3_25.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1019/CH3/EX3.25/Example_3_25.sce b/1019/CH3/EX3.25/Example_3_25.sce
new file mode 100644
index 000000000..ecdae6900
--- /dev/null
+++ b/1019/CH3/EX3.25/Example_3_25.sce
@@ -0,0 +1,24 @@
+//Example 3.25
+clear;
+clc;
+
+//Given
+delH1=-242;//heat of reaction (i) in kJ mol^-1
+delH2=-640;//heat of reaction (ii) in kJ mol^-1
+delH3=-540;//heat of reaction (iii) in kJ mol^-1
+
+//To determine enthalpy changes per kg
+nH2=200;//number of moles of hydrogen in 1 kg gas (mol)
+nO2=31.25;//number of moles of oxygen in 1 kg gas (mol)
+nCH3OH=31.25;////number of moles of methanol in 1 kg (mol)
+nF2=26.3;//number of moles of flourine in 1 kg gas (mol)
+
+delH11=delH1*(2*nO2);//enthalpy of reaction (i)
+mprintf('enthalpy of reaction (i) = %i kJ',delH11);
+
+delH22=delH2*(20.8);//enthalpy of reaction (ii)
+mprintf('\n enthalpy of reaction (ii) = %i kJ',delH22);
+
+delH33=delH3*(nF2);//enthalpy of reaction (iii)
+mprintf('\n enthalpy of reaction (iii) = %i kJ',delH33);
+//end \ No newline at end of file