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 --- 2144/CH7/EX7.5/ex7_5.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2144/CH7/EX7.5/ex7_5.sce (limited to '2144/CH7/EX7.5') diff --git a/2144/CH7/EX7.5/ex7_5.sce b/2144/CH7/EX7.5/ex7_5.sce new file mode 100755 index 000000000..3c369bcdf --- /dev/null +++ b/2144/CH7/EX7.5/ex7_5.sce @@ -0,0 +1,14 @@ +// Exa 7.5 +clc; +clear; +close; +// Given data +Q = 20;// in kJ/kg +P = 10;// in MW +P = P * 10^3;// in kW +H1 = 3248;// in kJ/kg +H2 = 2552;// in kJ/kg +C1 = 20;// m/s +C2 = 40;// m/s +m = P/((H1-H2+(C1^2-C2^2)/(2*1000))-Q);// in kg/s +disp(m,"Mass in kg is"); -- cgit