diff options
Diffstat (limited to '2015/CH8/EX8.16/8_16.sce')
-rwxr-xr-x | 2015/CH8/EX8.16/8_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2015/CH8/EX8.16/8_16.sce b/2015/CH8/EX8.16/8_16.sce new file mode 100755 index 000000000..2914d3d2b --- /dev/null +++ b/2015/CH8/EX8.16/8_16.sce @@ -0,0 +1,15 @@ +clc
+//initialisation of variables
+h1=272.763 //under 300 k temp in kj/kg
+s1=6.4125 //under 300 k temp in kj/kg
+h2=230.347 //under 200 k temp in kj/kg1
+s2=4.9216 //under 300 k temp in kj/kg
+hf=-133.347 //kj/kg
+t1=300 //temp in k
+//CALCULATIONS
+y=(h1-h2)/(h1-hf)
+mw=(t1*(s2-s1))-(h2-h1)
+x=mw/0.1044
+//RESULTS
+printf('fraction of oxygen condensed is %2f',y)
+printf('\nwork required is %2f',x) //answer is wrong in tb
|