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
Veseljchak [2.6K]
3 years ago
10

Air fl ows isentropically through a duct. At section 1, the pressure and temperature are 250 kPa and 1258C, and the velocity is

200 m/s. At section 2, the area is 0.25 m2 and the Mach number is 2.0. Determine (a) Ma1; (b) T2; (c) V2; and (d ) the mass fl ow.
Engineering
1 answer:
abruzzese [7]3 years ago
6 0

The correct temperature is 125°C

Answer:

A) M_a1 = 0.5

B) T2 = 232.17 K

C) V2 = 611 m/s

D) m' = 187 kg/s

Explanation:

We are given;

Pressure; P1 = 250 kPa

Temperature; T1 = 125°C = 398 K

Speed; v1 = 200 m/s

Area; A2 = 0.25 m²

M_a2 = 2

A) Formula for M_a1 is given by;

M_a1 = v/a1

Where;

v is speed

a1 = √kRT

k is specific heat capacity ratio of air = 1.4

R is a gas constant with a value of R = 287 J/kg·K

T is temperature

Thus;

M_a1 = 200/√(1.4 × 287 × 398)

M_a1 = 200/399.895

M_a1 = 0.5

B) To find T2, let's first find the Stagnation pressure T0

Thus;

T0/T1 = 1 + ((k - 1)/2) × (M_a1)²

T0 = T1(1 + ((k - 1)/2) × (M_a1)²)

T0 = 398(1 + ((1.4 - 1)/2) × (0.5)²)

T0 = 398(1 + (0.2 × 0.5²))

T0 = 398 × 1.05

T0 = 417.9 K

Now,similarly;

T0/T2 = 1 + ((k - 1)/2) × (M_a2)²

T2 = T0/[(1 + ((k - 1)/2) × (M_a2)²)]

T2 = 417.9/(1 + (0.2 × 2²))

T2 = 417.9/1.8

T2 = 232.17 K

C) V2 is gotten from the formula;

T0 = T2 + (V2)²/(2C_p)

Cp of air = 1005 J/Kg.K

Thus;

V2 = √(2C_p)[T0 - T2]

V2 = √((2 × 1005) × (417.9 - 232.17))

V2 =√373317.3

V2 = 611 m/s

D) mass flow is given by the formula;

m' = ρA2•V2

Where;

ρ is Density of air with an average value of 1.225 kg/m³

m' = 1.225 × 0.25 × 611

m' = 187 kg/s

You might be interested in
Let S = { p q |p, q are prime numbers greater than 0} and E = {0, −2, 2, −4, 4, −6, 6, · · · } be the set of even integers. . Pr
Finger [1]

Answer:

prove that | S | = | E | ; every element of S there is an Image on E , while not every element on E has an image on S

Explanation:

Given that S = { p q |p, q are prime numbers greater than 0}

                    E = {0, −2, 2, −4, 4, −6, 6, · · · }

To prove  by constructing a bijection from S to E

detailed  solution attached below

After the bijection :

<em>prove that | S | = | E |</em> :  every element of S there is an Image on E , while not every element on E has an image on S

∴ we can say sets E and S are infinite sets

7 0
3 years ago
The Hubble space telescope is a bus-sized satellite powered by huge ___ panels
Artemon [7]

Answer:

Solar

Explanation:

The Hubble space telescope is a bus-sized satellite powered by huge solar panels.

4 0
3 years ago
Read 2 more answers
Implement
kolbaska11 [484]

Answer:

#include <iostream>

using namespace std;

// Pixel structure

struct Pixel

{

unsigned int red;

unsigned int green;

unsigned int blue;

Pixel() {

red = 0;

green = 0;

blue = 0;

}

};

// function prototype

int energy(Pixel** image, int x, int y, int width, int height);

// main function

int main() {

// create array of pixel 3 by 4

Pixel** image = new Pixel*[3];

for (int i = 0; i < 3; i++) {

image[i] = new Pixel[4];

}

// initialize array

image[0][0].red = 255;

image[0][0].green = 101;

image[0][0].blue = 51;

image[1][0].red = 255;

image[1][0].green = 101;

image[1][0].blue = 153;

image[2][0].red = 255;

image[2][0].green = 101;

image[2][0].blue = 255;

image[0][1].red = 255;

image[0][1].green = 153;

image[0][1].blue = 51;

image[1][1].red = 255;

image[1][1].green = 153;

image[1][1].blue = 153;

image[2][1].red = 255;

image[2][1].green = 153;

image[2][1].blue = 255;

image[0][2].red = 255;

image[0][2].green = 203;

image[0][2].blue = 51;

image[1][2].red = 255;

image[1][2].green = 204;

image[1][2].blue = 153;

image[2][2].red = 255;

image[2][2].green = 205;

image[2][2].blue = 255;

image[0][3].red = 255;

image[0][3].green = 255;

image[0][3].blue = 51;

image[1][3].red = 255;

image[1][3].green = 255;

image[1][3].blue = 153;

image[2][3].red = 255;

image[2][3].green = 255;

image[2][3].blue = 255;

// create 3by4 array to store energy of each pixel

int energies[3][4];

// calculate energy for each pixel

for (int i = 0; i < 3; i++) {

for (int j = 0; j < 4; j++) {

energies[i][j] = energy(image, i, j, 3, 4);

}

}

// print energies of each pixel

for (int i = 0; i < 4; i++) {

for (int j = 0; j < 3; j++) {

// print by column

cout << energies[j][i] << " ";

}

cout << endl;

}

}

// function prototype

int energy(Pixel** image, int x, int y, int width, int height) {

// get adjacent pixels

Pixel left, right, up, down;

if (x > 0) {

left = image[x - 1][y];

if (x < width - 1) {

right = image[x + 1][y];

}

else {

right = image[0][y];

}

}

else {

left = image[width - 1][y];

if (x < width - 1) {

right = image[x + 1][y];

}

else {

right = image[0][y];

}

}

if (y > 0) {

up = image[x][y - 1];

if (y < height - 1) {

down = image[x][y + 1];

}

else {

down = image[x][0];

}

}

else {

up = image[x][height - 1];

if (y < height - 1) {

down = image[x][y + 1];

}

else {

down = image[x][0];

}

}

// calculate x-gradient and y-gradient

Pixel x_gradient;

Pixel y_gradient;

x_gradient.blue = right.blue - left.blue;

x_gradient.green = right.green - left.green;

x_gradient.red = right.red - left.red;

y_gradient.blue = down.blue - up.blue;

y_gradient.green = down.green - up.green;

y_gradient.red = down.red - up.red;

int x_value = x_gradient.blue * x_gradient.blue + x_gradient.green * x_gradient.green + x_gradient.red * x_gradient.red;

int y_value = y_gradient.blue * y_gradient.blue + y_gradient.green * y_gradient.green + y_gradient.red * y_gradient.red;

// return energy of pixel

return x_value + y_value;

}

Explanation:

Please see attachment for ouput

6 0
3 years ago
Air enters a constant-area combustion chamber at a pressure of 101 kPa and a temperature of 70°C with a velocity of 130 m/s. By
Norma-Jean [14]

Answer:

451 kj/kg

Explanation:

Velocity = 139m/s

Temperature = 70⁰C

T = 343K

M1 = v/√prt

= 130/√1.4x287x343

= 130/√137817.4

= 130/371.2

= 0.350

T1/To1 = 0.9760

From here we cross multiply and then make To1 the subject of the formula

To1 = T1/0.9760

To1 = 343/0.9760

To1 = 351.43

Then we go to the rayleigh table

At m = 0.35

To1/To* = 0.4389

To* = 351.43/0.4389

= 800k

M2 = 1

Maximum amount of heat

1.005(800-351.43)

= 450.8kj/kg

= 452kj/kg

8 0
3 years ago
A ring-shaped seal, made from a viscoelastic material, is used to seal a joint between two rigid pipes. When incorporated in the
scoundrel [369]
I’m not sure what this question is talking about. I will get back to you later on this let me rethink it. 2.22578
3 0
3 years ago
Other questions:
  • As a newly hired professional engineer your an executive with the firm strongly suggests that you attend a monthly dinner party
    8·1 answer
  • You want a potof water to boil at 105 celcius. How heavy a
    11·1 answer
  • Isn't this website cheating?
    10·2 answers
  • A mass of 1.9 kg of air at 120 kPa and 24°C is contained in a gas-tight, frictionless piston–cylinder device. The air is now com
    7·1 answer
  • 4. From two permeability tests it is found that the void ratio and hydraulic conductivity of a normally consolidated clay are 1.
    15·1 answer
  • Which one is an example of a digital input?
    5·1 answer
  • When a motorist passes a bicyclist, what is the minimum legal distance (clearance) to leave between vehicle and bike? *
    9·1 answer
  • Q4. The gross command area of canal is
    6·1 answer
  • The Environmental Protection Agency is likely to consider the effect of building activity on what aspect of water? (Select all t
    9·1 answer
  • ⚠️I mark BRIANLIST ⚠️The same engineering teams are able to design and develop the different subsystems for an airplane.
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!