diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH5/EX5.24/Example_5_24.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1019/CH5/EX5.24/Example_5_24.sce')
-rw-r--r-- | 1019/CH5/EX5.24/Example_5_24.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1019/CH5/EX5.24/Example_5_24.sce b/1019/CH5/EX5.24/Example_5_24.sce new file mode 100644 index 000000000..4f8c46e1d --- /dev/null +++ b/1019/CH5/EX5.24/Example_5_24.sce @@ -0,0 +1,20 @@ +//Example 5.24
+clear;
+clc;
+
+//Given
+p1=10;//vapour pressure of decane in Torr at temperature T1 K
+p2=400;//vapour pressure of decane in Torr at temperature T2 K
+T1=328.85;//initial temperature in K
+T2=423.75;//final temperature in K
+T=373;//temperature in K
+R=8.314;//gas constant in J K^-1 mol^-1
+
+//To determine the delHv,Tb,delSv
+delHv=(T1*T2*R*log(p2/p1))/94.9;//integrated form of clausius clapeyron equation
+delSv=delHv/T;//entrpoy change during vapourization in J K^-1 mol^-1
+Tb=((((R*2.303*log10(76))/delHv)+(1/T1))^(-1))+186;//boiling temperature in K
+mprintf('delHv = %f J mol^-1',delHv);
+mprintf('\n delSv = %f J K^-1 mol^-1',delSv);
+mprintf('\n Tb = %f K',Tb);
+//end
\ No newline at end of file |