diff options
Diffstat (limited to '551/CH3/EX3.13/13.sce')
-rwxr-xr-x | 551/CH3/EX3.13/13.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/551/CH3/EX3.13/13.sce b/551/CH3/EX3.13/13.sce new file mode 100755 index 000000000..e6ee81014 --- /dev/null +++ b/551/CH3/EX3.13/13.sce @@ -0,0 +1,21 @@ +clc
+p=18; //bar
+x=0.85;
+h_f=884.6; //kJ/kg
+h_fg=1910.3; //kJ/kg
+v_g=0.110; //m^3/kg
+u_f=883; //kJ/kg
+u_g=2598; //kJ/kg
+v=x*v_g;
+disp("Specific volume of wet steam=")
+disp(v)
+disp("m^3/kg")
+
+h=h_f+x*h_fg;
+disp("Specific enthalpy of wet steam=")
+disp(h)
+disp("kJ/kg")
+u=(1-x)*u_f+ x*u_g;
+disp("Specific internal energy of wet steam =")
+disp(u)
+disp("kJ/kg")
\ No newline at end of file |