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 /527/CH7/EX7.3/7_3exam.sce | |
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 '527/CH7/EX7.3/7_3exam.sce')
-rwxr-xr-x | 527/CH7/EX7.3/7_3exam.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/527/CH7/EX7.3/7_3exam.sce b/527/CH7/EX7.3/7_3exam.sce new file mode 100755 index 000000000..23124374c --- /dev/null +++ b/527/CH7/EX7.3/7_3exam.sce @@ -0,0 +1,21 @@ +//Engineering and Chemical Thermodynamics
+//Example 7.3
+//Page no :311
+
+clear ; clc ;
+//Given
+P = 50 ; //[bar]
+T = 25 + 273.2 ;//[K]
+P_c = 48.7 ; //[bar] , From Appendix A.1 Table C.7 & C.8
+T_c = 303.5 ; //[K] , From Appendix A.1 Table C.7 & C.8
+w = 0.099 ; // From Appendix A.1 Table C.7 & C.8
+log_w_0 = -0.216 ;// By interpolation
+log_w_1 = -0.060 ;// By interpolation
+
+X = log_w_0 + w * log_w_1 ;
+sai_eth = 10^(X) ;
+f_eth = sai_eth * P ;
+
+disp(" Example: 7.3 Page no : 311") ;
+printf("\n Fugacity = %g bar",f_eth);
+
\ No newline at end of file |