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 /527/CH2/EX2.8 | |
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 '527/CH2/EX2.8')
-rwxr-xr-x | 527/CH2/EX2.8/2_8exam.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/527/CH2/EX2.8/2_8exam.sce b/527/CH2/EX2.8/2_8exam.sce new file mode 100755 index 000000000..64248f7f1 --- /dev/null +++ b/527/CH2/EX2.8/2_8exam.sce @@ -0,0 +1,17 @@ +//Engineering and Chemical Thermodynamics
+//Example 2.8
+//Page no :64
+
+clear ; clc
+// Given data
+n_dot_air = 10 ; //[mol/min]
+C_bar_P_900 = 30.71 ; //[J/molK]
+C_bar_P_600 = 29.97 ; //[J/molK]
+T1 = 600 ; //[K]
+T2 = 900 ; //[K]
+T_ref = 298 ; //[K]
+
+// Q_dot = n_dot_air * (h_900 - h_600)...........Eqn E2.8A
+Q_dot = n_dot_air * (C_bar_P_900 * (T2 - T_ref) - C_bar_P_600 * (T1 - T_ref));
+disp(" Example: 2.8 Page no : 33") ;
+printf('\n Heat rate required = %g J/min',Q_dot);
\ No newline at end of file |