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 /1388/CH4/EX4.16 | |
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 '1388/CH4/EX4.16')
-rwxr-xr-x | 1388/CH4/EX4.16/4_16.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1388/CH4/EX4.16/4_16.sce b/1388/CH4/EX4.16/4_16.sce new file mode 100755 index 000000000..17ecbd5f5 --- /dev/null +++ b/1388/CH4/EX4.16/4_16.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+Cp= 18 //cal deg^-1
+T= 0 //C
+T1= -5 //C
+H2= -1440 //cal
+Cp1= 9 //cal deg^-1
+H= 0
+//CALCULATIONS
+T2= (-Cp*(T-T1)-H2+Cp1*(273.16+T))/Cp1
+S= Cp*log((273.16+T)/(273.16+T1))-(Cp*(T-T1)/(T+273.16))
+//RESULTS
+printf (' CHange in entropy= %.3f cal deg^-1',S+0.001)
|