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.18 | |
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.18')
-rwxr-xr-x | 1388/CH4/EX4.18/4_18.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1388/CH4/EX4.18/4_18.sce b/1388/CH4/EX4.18/4_18.sce new file mode 100755 index 000000000..92cd6fd91 --- /dev/null +++ b/1388/CH4/EX4.18/4_18.sce @@ -0,0 +1,13 @@ +clc
+//initialisation of variables
+H= -57.7979 //cal
+H1= -68.3174 //cal
+S= 45.106 //cal deg^-1
+S1= 16.716 //cal deg^-1
+T= 25 //C
+//CALCULATIONS
+H2= (H-H1)*1000
+S2= S-S1
+G= H2-(273.16+T)*S2
+//RESULTS
+printf (' Gibs free energy= %.1f cal',G)
|