From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 1019/CH3/EX3.25/Example_3_25.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 1019/CH3/EX3.25/Example_3_25.sce (limited to '1019/CH3/EX3.25') 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 -- cgit