summaryrefslogtreecommitdiff
path: root/2339/CH4/EX4.17.1/Ex4_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '2339/CH4/EX4.17.1/Ex4_17.sce')
-rwxr-xr-x2339/CH4/EX4.17.1/Ex4_17.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/2339/CH4/EX4.17.1/Ex4_17.sce b/2339/CH4/EX4.17.1/Ex4_17.sce
new file mode 100755
index 000000000..fd33bc6df
--- /dev/null
+++ b/2339/CH4/EX4.17.1/Ex4_17.sce
@@ -0,0 +1,20 @@
+clc
+clear
+
+//Conditions at 10 bar pressure
+P=10; //in bar
+Tsat=179.9+273; //in K
+Tsup=350+273;
+x=0.9; //Dryness Fraction
+Hf=762.8; //in kJ/kg
+Hfg=2015.3; //in kJ/kg
+Hg=2778.1; //in kJ/kg
+Vg=0.194; //in m^3/kg
+Cps=2.1; //in kJ/kg K
+Ha=Hg+(Cps*(Tsup-Tsat));
+Hb=Hf+(x*Hfg);
+H_mix=(Ha+Hb)/2;
+Tsupe=((H_mix-Hg)/Cps)+Tsat;
+Tsuper=Tsupe-273;
+printf('Temperature of superheated steam: %3.0f Celcius',Tsuper);
+printf('\n');