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/CH3/EX3.3/3_3exam.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/CH3/EX3.3/3_3exam.sce')
-rwxr-xr-x | 527/CH3/EX3.3/3_3exam.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/527/CH3/EX3.3/3_3exam.sce b/527/CH3/EX3.3/3_3exam.sce new file mode 100755 index 000000000..51e70cd1a --- /dev/null +++ b/527/CH3/EX3.3/3_3exam.sce @@ -0,0 +1,15 @@ +//Engineering and Chemical Thermodynamics
+//Example 3.3
+//Page no:121
+
+clear ; clc ;
+// Given
+T_1_1 = 273 ;// {K}
+T_1_2 = 373 ; //[K]
+Cp = 24.5 ; // [J/molK]
+del_S_sur = 0 ; //Since the system is isolated
+T2 = (T_1_1 + T_1_2)/2 ;
+del_S = Cp / 2 * log(T2^2 / (T_1_1 * T_1_2)) ;
+
+disp(" Example 3.3 Page no : 121") ;
+printf("\n Entropy change for the system = %.2f J/(mol K)", del_S);
\ No newline at end of file |