diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /479/CH14/EX14.1/Example_14_1.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '479/CH14/EX14.1/Example_14_1.sce')
-rwxr-xr-x | 479/CH14/EX14.1/Example_14_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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 |