From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 527/CH2/EX2.4/2_4exam.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 527/CH2/EX2.4/2_4exam.sce (limited to '527/CH2/EX2.4/2_4exam.sce') diff --git a/527/CH2/EX2.4/2_4exam.sce b/527/CH2/EX2.4/2_4exam.sce new file mode 100755 index 000000000..aa5e76aa5 --- /dev/null +++ b/527/CH2/EX2.4/2_4exam.sce @@ -0,0 +1,17 @@ +//Engineering and Chemical Thermodynamics +//Example 2.4 +//Page no :55 + +clear ; clc +//From steam table specific enthalpy at state1 and state2 are +h_cap_1 = 3373.6 ; //[kJ/kg] +h_cap_2 = 2675.5 ; //[kJ/kg] + +m_dot1 = 10; //[kg/s],As we are dealing with steady state +m_dot2 = 10; //[kg/s] + +//Neglecting heat dissipation compared to shaft work we have +// m_dot1*h_cap_1 - m_dot2*h_cap_2 + Ws_dot = 0 +Ws_dot = m_dot1 * (h_cap_2 - h_cap_1) ; //[kW] +disp(" Example: 2.4 Page no : 55") ; +printf('\n Power generated = %g kW',Ws_dot); -- cgit