Concept explainers
The estimated temperature of the combustion products.

Answer to Problem 82P
The estimated temperature of the combustion products is
Explanation of Solution
Express the total mass of the coal when the ash is substituted.
Here, mass of ash is
Express the mass fraction of carbon.
Here, mass of carbon is
Express the mass fraction of hydrogen.
Here, mass of hydrogen is
Express the mass fraction of oxygen.
Here, mass of oxygen is
Express the mass fraction of nitrogen.
Here, mass of nitrogen is
Express the mass fraction of sulphur.
Here, mass of sulphur is
Express the number of moles of carbon.
Here, molar mass of carbon is
Express the number of moles of hydrogen.
Here, molar mass of hydrogen is
Express the number of moles of oxygen.
Here, molar mass of oxygen is
Express the number of moles of nitrogen.
Here, molar mass of nitrogen is
Express the number of moles of sulphur.
Here, molar mass of sulphur is
Express the total number of moles.
Express the mole fraction of carbon.
Express the mole fraction of hydrogen.
Express the mole fraction of oxygen.
Express the mole fraction of nitrogen.
Express the mole fraction of sulphur.
Apply energy balance under steady flow conditions on the combustion chamber.
Here, number of moles of products is
Conclusion:
Refer Table A-1, “molar mass, gas constant, and the critical point properties”, and write the molar masses.
Here, molar mass of air is
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Substitute
Express the combustion equation.
Perform the species balancing:
Carbon balance:
Hydrogen balance:
Sulphur balance:
Oxygen balance:
Nitrogen balance:
Substitute
Refer Equation (XX), and write the number of moles of products and reactants.
Refer Appendix Table A-18, A-19, A-20 and A-23 and write the property table for products and reactants as in Table (1).
Substance |
|
|
|
0 | 8682 | 11,171 | |
0 | 8669 | 11,640 | |
9904 | |||
9364 |
Substitute the values form Table (I) into Equation (XVIII) to get,
Perform trial and error method to balance the Equation (XXI).
Iteration I:
Take
Iteration II:
Take
Perform the interpolation method to obtain the adiabatic flame temperature of the product gases.
Write the formula of interpolation method of two variables.
Here, the variables denote by x and y is enthalpy and estimated temperature respectively
Show the adiabatic flame temperature corresponding to enthalpy as in Table (1).
Enthalpy |
Estimated temperature |
1980 | |
2000 |
Substitute
Thus, the estimated temperature of the combustion product gases is,
Here, estimated temperature of the combustion product gases is
Hence, the estimated temperature of the combustion products is
Want to see more full solutions like this?
Chapter 15 Solutions
CONNECT FOR THERMODYNAMICS: AN ENGINEERI
- please first help me solve this problem find the line of action and them help to find the forces like for example {fx= fy= mz= and determine the shear force in the nailsarrow_forwardAn open channel of square cross section had a flowrate of 17.2 ft³/s when first used. After extended use, the channel became 0.6-filled with silt. Determine the flowrate for this silted condition. Assume the Manning coefficient is the same for all the surfaces. Qs= ! ft³/sarrow_forward(Manning equation) The triangular flume shown in the figure below is built to carry its design flowrate, Qo, at a depth of 0.991 m as is indicated. If the flume is to be able to carry up to twice its design flowrate, Q = 2Qo, determine the freeboard, I, needed. ✓ -90°- 0.991 m i marrow_forward
- Water flows in a 2-ft-wide rectangular channel at a rate of 10 ft³/s. If the water depth downstream of a hydraulic jump is 2.5 ft, determine (a) the water depth upstream of the jump, (b) the upstream and (c) downstream Froude numbers, and (d) the head loss across the jump. (a) y₁ = i (b) Fr₁ = i (c) Fr₂ = i (d) h₁ = ft ftarrow_forwardA hydraulic jump at the base of a spillway of a dam is such that the depths upstream and downstream of the jump are 0.8 and 3.2 m, respectively (see the Video). If the spillway is 12 m wide, what is the flowrate over the spillway? Q= i m³/sarrow_forward(Manning equation) Water flows in a rectangular channel of width b at a depth of b/2. Determine the diameter of a circular channel (in terms of b) that carries the same flowrate when it is half-full. Both channels have the same Manning coefficient, n, and slope. barrow_forward
- (Manning equation) A weedy irrigation canal of trapezoidal cross section is to carry 20 m³/s when built on a slope of 0.60 m/km. If the sides are at a 45° angle and the bottom is 8 m wide, determine the width of the waterline at the free surface. i marrow_forwardWater flows in a 1.2-m-diameter finished concrete pipe so that it is completely full and the pressure is constant all along the pipe. If the slope is So = 0.0073, (a) determine the flowrate by using open-channel flow methods. Compare this result with (b) that obtained using the pipe flow methods of Chapter 8 (Use Colebrook formula, Table 8.1, Table 10.1 and assume that Re > 10º). (a) Q = i (b) Q = i m³/s m³/sarrow_forwardfor this 4 figuredarw the Kinematic Diagram:DoF:F=Type/Name ofmechanismEvolution:arrow_forward
- Two channels and two plates are used to formthe column section shown. For b = 200 mm,determine the moments of inertia and theradii of gyration of the combined section withrespect to the centroidal x and y axes.For the section of problem, determine thefirst moment of the upper plate about thecentroidal x-axisarrow_forwardDetermine by direct integration the moment of inertia of theshaded area at right with respect to the x axis shown. Determine by direct integration the moment of inertia of theshaded area of the figure with respect to the y axis shown.arrow_forwardFor the following MATLAB code, I need to answer a few questions. Can you identify the curves as elliptic functions? Which curves reflect the sn, cn, and dn functions?From the curves, determine the maximum amplitudes and the period corresponding toeach angular velocity component. clc; clear all; I = [500; 125; 425]; w = [0.2; 0.1; 0.2]; rev = 0:0.01:10; C = eye(3); % Using ode45 to integrate the KDE and DDE options = odeset('RelTol',1e-9,'AbsTol',1e-9); result = ode45(@K_DDE, rev, [w; I; C(:)], options); v = result.x; % Extracting information from the ode45 solver w = result.y(1:3, :); C_ode = reshape(result.y(7:end, :), [3,3,length(v)]); plot(v, w) xlabel('rev') ylabel('w (rad/s)') legend('w1', 'w2', 'w3') % Functions function dwCdt = K_DDE(~, w_IC) % Extracting the initial condtions to a variable w = w_IC(1:3); I = w_IC(4:6); C = reshape(w_IC(7:end), [3, 3]); I1 = I(1); I2 = I(2); I3 = I(3); K1 = -(I3-I2)/I1; K2 = -(I1-I3)/I2; K3 = -(I2-I1)/I3; %…arrow_forward
- Elements Of ElectromagneticsMechanical EngineeringISBN:9780190698614Author:Sadiku, Matthew N. O.Publisher:Oxford University PressMechanics of Materials (10th Edition)Mechanical EngineeringISBN:9780134319650Author:Russell C. HibbelerPublisher:PEARSONThermodynamics: An Engineering ApproachMechanical EngineeringISBN:9781259822674Author:Yunus A. Cengel Dr., Michael A. BolesPublisher:McGraw-Hill Education
- Control Systems EngineeringMechanical EngineeringISBN:9781118170519Author:Norman S. NisePublisher:WILEYMechanics of Materials (MindTap Course List)Mechanical EngineeringISBN:9781337093347Author:Barry J. Goodno, James M. GerePublisher:Cengage LearningEngineering Mechanics: StaticsMechanical EngineeringISBN:9781118807330Author:James L. Meriam, L. G. Kraige, J. N. BoltonPublisher:WILEY





