1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
defon
3 years ago
11

Consider a regenerative gas-turbine power plant with two stages of compression and two stages of expansion. The overall pressure

ratio of the cycle is 9. The air enters each stage of the compressor at 300 K and each stage of the turbine at 1200 K. Accounting for the variation of specific heats with temperature, determine the minimum mass flow rate of air needed to develop a net power output of 105 MW.

Engineering
1 answer:
iris [78.8K]3 years ago
4 0

Answer: the minimum mass flow rate of air required to generate a power output of 105 MW is 238.2 kg/s

Explanation:

from the T-S diagram, we get the overall pressure ratio of the cycle is 9

Calculate the pressure ratio in each stage of compression and expansion. P1/P2 = P4/P3  = √9 = 3

P5/P6 = P7/P8  = √9 =3  

get the properties of air from, "TABLE A-17 Ideal-gas properties of air", in the text book.

At temperature T1 =300K

Specific enthalpy of air h1 = 300.19 kJ/kg

Relative pressure pr1 = 1.3860  

At temperature T5 = 1200 K

Specific enthalpy h5 = 1277.79 kJ/kg

Relative pressure pr5 = 238  

Calculate the relative pressure at state 2

Pr2 = (P2/P1) Pr5

Pr2 =3 x 1.3860 = 4.158  

get the two values of relative pressure between which the relative pressure at state 2 lies and take the corresponding values of specific enthalpy from, "TABLE A-17 Ideal-gas properties of air", in the text book.  

Relative pressure pr = 4.153

The corresponding specific enthalpy h = 411.12 kJ/kg  

Relative pressure pr = 4.522

The corresponding specific enthalpy h = 421.26 kJ/kg  

Find the specific enthalpy of state 2 by the method of interpolation

(h2 - 411.12) / ( 421.26 - 411.12) =  

(4.158 - 4.153) / (4.522 - 4.153 )

h2 - 411.12 = (421.26 - 411.12) ((4.158 - 4.153) / (4.522 - 4.153))  

h2 - 411.12 = 0.137

h2 = 411.257kJ/kg  

Calculate the relative pressure at state 6.

Pr6 = (P6/P5) Pr5

Pr6 = 1/3 x 238 = 79.33  

Obtain the two values of relative pressure between which the relative pressure at state 6 lies and take the corresponding values of specific enthalpy from, "TABLE A-17 Ideal-gas properties of air", in the text book.  

Relative pressure Pr = 75.29

The corresponding specific enthalpy h = 932.93 kJ/kg  

Relative pressure pr = 82.05

The corresponding specific enthalpy h = 955.38 kJ/kg  

Find the specific enthalpy of state 6 by the method of interpolation.

(h6 - 932.93) / ( 955.38 - 932.93) =  

(79.33 - 75.29) / ( 82.05 - 75.29 )

(h6 - 932.93) = ( 955.38 - 932.93) ((79.33 - 75.29) / ( 82.05 - 75.29 )

h6 - 932.93 = 13.427

h6 = 946.357 kJ/kg

Calculate the total work input of the first and second stage compressors

(Wcomp)in = 2(h2 - h1 ) = 2( 411.257 - 300.19 )

= 222.134 kJ/kg  

Calculate the total work output of the first and second stage turbines.

(Wturb)out = 2(h5 - h6) = 2( 1277.79 - 946.357 )

= 662.866 kJ/kg  

Calculate the net work done

Wnet = (Wturb)out  - (Wcomp)in

= 662.866 - 222.134

= 440.732 kJ/kg  

Calculate the minimum mass flow rate of air required to generate a power output of 105 MW

W = m × Wnet

(105 x 10³) kW = m(440.732 kJ/kg)

m = (105 x 10³) / 440.732

m = 238.2 kg/s

therefore the minimum mass flow rate of air required to generate a power output of 105 MW is 238.2 kg/s

You might be interested in
which of the following processes would be appropriate for cutting a narrow slot, less than 0.015 inch wide, in a 3/8- inch thick
Elena-2011 [213]

Laser beam machining and water jet cutting are the following processes would be appropriate for cutting a narrow slot, less than 0.015 inch wide, in a 3/8- inch thick sheet of fiber-reinforced plastic. Hence option d and f is correct.

<h3>What is fiber reinforced plastic?</h3>

Fiber reinforced plastic is defined as a polymer-based composite material that is strengthened by fiber support. Fiber-reinforced plastics (FRP) are composite materials that use glass or carbon fibers as reinforcement and polymer resins as a matrix.

Because laser cutting is a far less aggressive and abrasive process than water jet cutting, it is much more accurate. A laser can carefully and safely cut materials as thin as 0.006 inches, whereas water jet cutters can't handle cutting through surfaces smaller than 0.02 inches.

Thus, laser beam machining and water jet cutting are the following processes would be appropriate for cutting a narrow slot, less than 0.015 inch wide, in a 3/8- inch thick sheet of fiber-reinforced plastic. Hence option d and f is correct.

To learn more about fiber-reinforced plastic, refer to the link below:

brainly.com/question/11941367

#SPJ1

3 0
1 year ago
typedef struct bitNode { int data; struct bitNode *left; struct bstNode *right; } bstNode; int solve(bstNode* root) { if (root =
Sergio039 [100]

Answer:

The ten numbers to be filled in the blanks are: 18, 7, 7, 11, 18, 36, 3, 8, 13, 50.

Explanation:

keeps on going to the left node until node->left == NULL;

now at Node 18;

left = right = 0; hence condition is not satisfied

18 is printed first.

the value 18 is returned .

Then we reach at 4;

from there we move to 7;

just like 18, similar things happen with 7 and 7 is printed, the value 7 is returned.

Now coming to Node 4,

left = 0, right = 7 ; hence the condition is satisfied & res = 7; 7 is printed.

For Node 16, left = 7 ; right = 11(but for this we visit 11 first and 11 is printed)

for 16; condition is satisfied; res = 7 + 11 = 18 ; 18 is printed

Now for 5; left = right = 18; the condition is satisfied; so res = 18 + 18 = 36; 36 is printed

Next we visit Node 3; 3 is printed & 3 is returned

Then Node 8 ; 8 is printed & 8 is returned

for Node 13; left = 3, right = 8 ; condition is not satisfied, 13 is printed.

For Node 50; left = 36 right = 13 ; condition is not satisfied hence 50 is printed.

So the order of printing is  18 7 7 11 18 36 3 8 13 50.

4 0
3 years ago
The southernmost rim inlet elevation on the topographical survey is
Lynna [10]

The southernmost rim inlet elevation on the topographical survey is approximately 4.5 feet below the benchmark on the north side of West 55th Street.

What is topographical survey?

A topographical survey, often known as a land survey or topographical land survey, is a type of survey that includes contours. Topographical land surveying determines the exact location and specifications of natural and man-made features on a piece of land. The survey is then turned into a suitable and thorough plan, which incorporates man-made characteristics such as boundaries, neighbouring buildings, sidewalks, and so on. Natural elements such as trees, ponds, and ground contours are also detected by the topographical survey. Having a clear and accurate map of your property might help you avoid costly downstream mistakes caused by unforeseen challenges. It can supply you with the information you need about the land before making any alterations to it.

To learn more about topographical survey

brainly.com/question/14529986

#SPJ13

6 0
1 year ago
State three characteristic of lines of magnetic flux​
stepladder [879]

Answer:

1. The magnetic flux line form a closed loop.

2. The magnetic flux line repel each other.

3. The magnetic flux line never intersect.

5 0
2 years ago
Read 2 more answers
A continuous random variable, X, whose probability density function is given by f(x) = ( λe−λx , if x ≥ 0 0, otherwise is said t
Ganezh [65]

Answer:

a) F(x) = \lambda \int_0^{\infty} e^{-\lambda x} dx= -e^{-\lambda x} \Big|_0^{\infty} = 1- e^{-\lambda x} \

b) P(10 < X

Explanation:

Previous concepts

The cumulative distribution function (CDF) F(x),"describes the probability that a random variableX with a given probability distribution will be found at a value less than or equal to x".

The exponential distribution is "the probability distribution of the time between events in a Poisson process (a process in which events occur continuously and independently at a constant average rate). It is a particular case of the gamma distribution".

Part a

Let X the random variable of interest. We know on this case that X\sim Exp(\lambda)

And we know the probability denisty function for x given by:

f(x) = \lambda e^{-\lambda x} , x\geq 0

In order to find the cdf we need to do the following integral:

F(x) = \lambda \int_0^{\infty} e^{-\lambda x} dx= -e^{-\lambda x} \Big|_0^{\infty} = 1- e^{-\lambda x} \

Part b

Assuming that X \sim Exp(\lambda =0.1), then the density function is given by:

f(x) = 0.1 e^{-0.1 x} dx , x\geq 0

And for this case we want this probability:

P(10 < X

And evaluating the integral we got:

P(10 < X

4 0
3 years ago
Other questions:
  • A series R-L circuit is given. Circuit is connected to an AC voltage generator. a) Derive equations for magnitude and phase of c
    13·1 answer
  • A random sample of 5 hinges is selected from a steady stream of product from a punch press, and the a. b. proportion nonconformi
    12·1 answer
  • How do people eat with there noses shut
    12·2 answers
  • Which of the following is part of the highway
    11·2 answers
  • Match the scenario to the related government program.
    8·1 answer
  • Calculate the number of vacancies per cubic meter at 1000∘C for a metal that has an energy for vacancy formation of 1.22 eV/atom
    14·1 answer
  • Is the MI-24 Hind the most widely exported combat helicopter in the world?
    14·1 answer
  • Fig. 4 shows a simply-supported beam with supports A and B. The beam is subjected to three forces, 2000 N, 4000 N and 1500 N in
    5·1 answer
  • The velocity components expressed in m/s<br>​
    6·1 answer
  • Types of lubricants on the market include:
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!