summaryrefslogtreecommitdiff
path: root/2762/CH1/EX1.7.3/1_7_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2762/CH1/EX1.7.3/1_7_3.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2762/CH1/EX1.7.3/1_7_3.sce')
-rwxr-xr-x2762/CH1/EX1.7.3/1_7_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2762/CH1/EX1.7.3/1_7_3.sce b/2762/CH1/EX1.7.3/1_7_3.sce
new file mode 100755
index 000000000..f7bf09212
--- /dev/null
+++ b/2762/CH1/EX1.7.3/1_7_3.sce
@@ -0,0 +1,18 @@
+//Transport Processes and Seperation Process Principles
+//Chapter 1
+//Example 1.7-3
+//Introduction to engineering principles and units
+//given data
+//datum temp= 25 deg C
+//input and output enthalpies are calculated: m*Cp*delT Cp obtained from data tables
+delT=37-25;//temp diff
+Hil=342.3*1.20*delT ;
+HiO2=12*29.38*delT
+Hrxn=(-5648.8*10^3);//heat of reaction given
+//output items
+HoH2O=11*18.02*4.18*delT;
+HoCO2=12*37.45*delT;
+//Energy in= Energy out: Hil+HiO2-Hrxn=HoH2O+HoCO2-H310K
+H310K=HoH2O+HoCO2-(Hil+HiO2-Hrxn);
+mprintf("the heat reqd for complete oxidation is %f J/mol",H310K)
+//end