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/CH9 | |
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/CH9')
-rwxr-xr-x | 1388/CH9/EX9.2/9_2.sce | 10 | ||||
-rwxr-xr-x | 1388/CH9/EX9.3/9_3.sce | 15 |
2 files changed, 25 insertions, 0 deletions
diff --git a/1388/CH9/EX9.2/9_2.sce b/1388/CH9/EX9.2/9_2.sce new file mode 100755 index 000000000..1e50b8b89 --- /dev/null +++ b/1388/CH9/EX9.2/9_2.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+T= 298.16 //K
+M= 4.003 //gm
+S= 2.3151 //cal mol^-1 deg^-1
+R= 1.987 //cal/molK
+//CALCULATIONS
+S1= 2.5*R*log(T)+1.5*R*log(M)-S
+//RESULTS
+printf (' Absolute Entropy= %.3f cal mol^-1 deg^-1',S1)
diff --git a/1388/CH9/EX9.3/9_3.sce b/1388/CH9/EX9.3/9_3.sce new file mode 100755 index 000000000..7769a2d84 --- /dev/null +++ b/1388/CH9/EX9.3/9_3.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+h= 6.624*10^-27//erg/sec
+N= 6.023*10^23
+c= 3*10^10 //m/sec
+w= 2359.6 //cm^-1
+T= 2000 //K
+K= 1.380*10^-16
+R= 1.987 //cal mol^-1 k^-1
+//CALCULATIONS
+x= h*c*w/(K*T)
+y= 2.71^x
+H= 3.5*R+(N*h*c*w/(T*4.184*10^7*(y-1)))
+//RESULTS
+printf (' Heat= %.3f cal mol^-1 deg^-1',H)
|