diff options
Diffstat (limited to '779/CH12/EX12.3/12_3.sce')
-rwxr-xr-x | 779/CH12/EX12.3/12_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/779/CH12/EX12.3/12_3.sce b/779/CH12/EX12.3/12_3.sce new file mode 100755 index 000000000..43c0d5416 --- /dev/null +++ b/779/CH12/EX12.3/12_3.sce @@ -0,0 +1,18 @@ +P1 = 0.08; // in bar
+sf = 0.5926; x2s = 0.85; sg = 8.2287;
+s2s = sf+(x2s*(sg-sf));
+s1 = s2s;
+P2 = 16.832; // by steam table opposite to s1 in bar
+h1 = 3165.54;
+h2s = 173.88 + (0.85*2403.1);
+h3 = 173.88;
+vfp2 = 0.001;
+h4s = h3 + (vfp2*(P2-P1)*100);
+Q1 = h1-h4s;
+Wt = h1-h2s;
+Wp = h4s-h3;
+n_cycle = 100*((Wt-Wp)/Q1);
+Tm = (h1-h4s)/(s2s-sf);
+disp("bar",P2,"The greatest allowable steam pressure at the turbine inlet is")
+disp("%",n_cycle,"Rankine cycle efficiency is")
+disp("K",Tm,"Mean temperature of heat addition is")
|