From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 479/CH14/EX14.1/Example_14_1.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 479/CH14/EX14.1/Example_14_1.sce (limited to '479/CH14/EX14.1/Example_14_1.sce') diff --git a/479/CH14/EX14.1/Example_14_1.sce b/479/CH14/EX14.1/Example_14_1.sce new file mode 100755 index 000000000..fa2d933eb --- /dev/null +++ b/479/CH14/EX14.1/Example_14_1.sce @@ -0,0 +1,17 @@ +//Chemical Engineering Thermodynamics +//Chapter 14 +//Thermodynamics of Chemical Reactions + +//Example 14.1 +clear; +clc; + +//Given +H_f_C2H4 = 12500;//Standard heat of formation of ethylene at 25 deg cel in Kcal/Kgmole +H_f_C2H4O = -11667;//Standard heat of formation of ethylene oxide at 25 deg cel in Kcal/Kgmole + +//To Calculate the standard heats of reaction at 25 deg celsius +//The reaction is: C2H4 + (1/2)O2 - C2H4O +del_H_rxn = H_f_C2H4O-H_f_C2H4;//Since, Standard heat of formation of O2 is zero +mprintf('The standard heats of reaction at 25 deg celsius is %d Kcal/Kgmole',del_H_rxn); +//end \ No newline at end of file -- cgit