summaryrefslogtreecommitdiff
path: root/527/CH3/EX3.3/3_3exam.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /527/CH3/EX3.3/3_3exam.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 '527/CH3/EX3.3/3_3exam.sce')
-rwxr-xr-x527/CH3/EX3.3/3_3exam.sce15
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