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 /2762/CH1/EX1.6.1 | |
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 '2762/CH1/EX1.6.1')
-rwxr-xr-x | 2762/CH1/EX1.6.1/1_6_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2762/CH1/EX1.6.1/1_6_1.sce b/2762/CH1/EX1.6.1/1_6_1.sce new file mode 100755 index 000000000..566072dee --- /dev/null +++ b/2762/CH1/EX1.6.1/1_6_1.sce @@ -0,0 +1,17 @@ +//Transport Processes and Seperation Process Principles
+//Chapter 1
+//Example 1.6-1
+//Introduction to engineering principles and units
+//given data
+//heat reqd= mCp)(delta T)
+//a) 298-673K
+m=3;//m is given as 3 g mol
+H1= m*29.68*(673-298);//for N2 at 673K Cp=29.68 J/g mol K
+//b) 298-1123K
+H2=m*31*(1123-298);//for N2 at 1123 K Cp=31.00 J/g mol K by linear interpolation
+//c) 673-1123K : As there id no mean Cp we subtract a) from b)
+H3=H2-H1;
+mprintf("the heat reqd in a) : %f joules",H1)
+mprintf(" the heat reqd in b): %f joules",H2)
+mprintf(" the heat reqd in c): %f joules",H3)
+
|