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/CH7/EX7.12/7_12exam.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 '527/CH7/EX7.12/7_12exam.sce')
-rwxr-xr-x | 527/CH7/EX7.12/7_12exam.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/527/CH7/EX7.12/7_12exam.sce b/527/CH7/EX7.12/7_12exam.sce new file mode 100755 index 000000000..e41c0d520 --- /dev/null +++ b/527/CH7/EX7.12/7_12exam.sce @@ -0,0 +1,19 @@ +//Engineering and Chemical Thermodynamics
+//Example 7.12
+//Page no :352
+
+clear ; clc ;
+//Given
+A_T1 = 1401 ; //[J/mol]
+T1 = 10 + 273 ;//[K]
+T2 = 60 + 273 ; //[K]
+C = 3250 ;
+A_T2_prev = 1143 ;//[J/mol]
+
+A_T2 = T2 * (C *(1/T2 - 1/T1) + A_T1 / T1);
+disp(" Example: 7.12 Page no : 352") ;
+printf("\n Value of A at 60*C = %f J/mol\n\n",A_T2) ;
+x = (A_T2_prev - A_T2) / A_T2_prev* 100 ;
+printf("\n The values differ by = %g %%",x)
+
+// The results given in the text book are wrong .
\ No newline at end of file |