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 /1247/CH5/EX5.4 | |
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 '1247/CH5/EX5.4')
-rwxr-xr-x | 1247/CH5/EX5.4/example5_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1247/CH5/EX5.4/example5_4.sce b/1247/CH5/EX5.4/example5_4.sce new file mode 100755 index 000000000..6c76343ea --- /dev/null +++ b/1247/CH5/EX5.4/example5_4.sce @@ -0,0 +1,20 @@ +clear;
+clc;
+
+// Stoichiometry
+// Chapter 5
+// Energy Balances
+
+
+// Example 5.4
+// Page 206
+printf("Example 5.4, Page 206 \n \n");
+
+// solution
+
+// using table 5.3
+// .25 kg/s toulene heated from 290.15K to 350.15K
+qm = .25/92 // kmol/s
+// reference 7
+fi = 2.717*10^-3*[1.8083*(350.15-290.15) + 812.223*10^-3*(350.15^2-290.15^2)/2 - 1512.67*10^-6*(350.15^3-290.15^3)/3 + 1630.01*10^-9*(350.15^4-290.15^4)/4]
+printf(" Heat required to be added to toulene = "+string(fi)+" kW.")
|