diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2705/CH2/EX2.6/Ex2_6.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2705/CH2/EX2.6/Ex2_6.sce')
-rwxr-xr-x | 2705/CH2/EX2.6/Ex2_6.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/2705/CH2/EX2.6/Ex2_6.sce b/2705/CH2/EX2.6/Ex2_6.sce new file mode 100755 index 000000000..186ca15e2 --- /dev/null +++ b/2705/CH2/EX2.6/Ex2_6.sce @@ -0,0 +1,38 @@ +clear; +clc; +disp('Example 2.6'); + + +// Given values +m_dot = 4.5; // mass flow rate of air, [kg/s] +Q = -40; // Heat transfer loss, [kJ/kg] +del_h = -200; // specific enthalpy reduce, [kJ/kg] + +C1 = 90; // inlet velocity, [m/s] +v1 = .85; // inlet specific volume, [m^3/kg] + +v2 = 1.45; // exit specific volume, [m^3/kg] +A2 = .038; // exit area of turbine, [m^2] + +// solution + +// part (a) +// At inlet, by equation[4], m_dot=A1*C1/v1 +A1 = m_dot*v1/C1;//inlet area, [m^2] +mprintf('\n (a) The inlet area is, A1 = %f m^2 \n',A1); + +// part (b), +// At outlet, since mass flow rate is same, so m_dot=A2*C2/v2, hence +C2 = m_dot*v2/A2; // Exit velocity,[m/s] +mprintf('\n (b) The exit velocity is, C2 = %f m/s \n',C2); + +// part (c) +// using steady flow equation, h1+C1^2/2+Q=h2+C2^2/2+W +W = -del_h+(C1^2/2-C2^2/2)*10^-3+Q; // [kJ/kg] + +// Hence power developed is +P = W*m_dot;// [kW] +mprintf('\n (c) The power developed by the turbine system is = %f kW \n',P); + +// End + |