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 --- 1913/CH2/EX2.16/ex16.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 1913/CH2/EX2.16/ex16.sce (limited to '1913/CH2/EX2.16/ex16.sce') diff --git a/1913/CH2/EX2.16/ex16.sce b/1913/CH2/EX2.16/ex16.sce new file mode 100755 index 000000000..20ecf2384 --- /dev/null +++ b/1913/CH2/EX2.16/ex16.sce @@ -0,0 +1,16 @@ +clc +clear +//Input data +c1=16;//Velocity of steam at entrance in m/s +c2=37;//Velocity of steam at exit in m/s +h1=2990;//Specific enthalpy of steam at entrance in kJ/kg +h2=2530;//Specific enthalpy of steam at exit in kJ/kg +Q=-25;//Heat lost to the surroundings in kJ/kg +m1=360000;//The steam flow rate in kg/hr + +//Calculations +m=m1/3600;//The steam flow rate in kg/s +W=(((c1^2-c2^2)/(2*1000))+(h1-h2))+Q;//Total work done in the system in kJ/kg +P=m*W;//Power developed by the turbine in kW +//Output +printf('The work output from the turbine P = %3.1f kW ',P) -- cgit