summaryrefslogtreecommitdiff
path: root/2471/CH5/EX5.11/Ex5_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '2471/CH5/EX5.11/Ex5_11.sce')
-rwxr-xr-x2471/CH5/EX5.11/Ex5_11.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2471/CH5/EX5.11/Ex5_11.sce b/2471/CH5/EX5.11/Ex5_11.sce
new file mode 100755
index 000000000..08ded0b32
--- /dev/null
+++ b/2471/CH5/EX5.11/Ex5_11.sce
@@ -0,0 +1,18 @@
+clear ;
+clc;
+// Example 5.11
+printf('Example 5.11\n\n');
+printf('Page No. 130\n\n');
+
+// given
+T1 = 180;// in degree celcius
+T2 = 350;// in degree celcius
+m = 0.5;// Mass flow rate in kg/s
+
+
+//from steam table
+hL_180 = 302*10^3;// Specific enthalpy at 180 degree celcius in J/kg
+hL_350 = 690*10^3;// Specific enthalpy at 350 degree celcius in J/kg
+
+Q = m*(hL_350 - hL_180);// in W
+printf('The required heat is %.0f W',Q)