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
algol [13]
2 years ago
11

Air in a large tank at 300C and 400kPa, flows through a converging diverging nozzle with throat diameter 2cm. It exits smoothly

at a Mach number 2.8. According to one-dimensional isentropic theory, what is
(a) exit diameter and
(b) mass flow?
Engineering
1 answer:
-Dominant- [34]2 years ago
5 0

Answer:

The answer is "3.74 \ cm\ \ and \ \ 0.186 \frac{kg}{s}"

Explanation:

Given data:  

Initial temperature of tank T_1 = 300^{\circ}\ C= 573 K

Initial pressure of tank P_1= 400 \ kPa

Diameter of throat d* = 2 \ cm

Mach number at exit M = 2.8

In point a:

calculating the throat area:

A*=\frac{\pi}{4} \times d^2

      =\frac{\pi}{4} \times 2^2\\\\=\frac{\pi}{4} \times 4\\\\=3.14 \ cm^2

Since, the Mach number at throat is approximately half the Mach number at exit.  

Calculate the Mach number at throat.  

M*=\frac{M}{2}\\\\=\frac{2.8}{2}\\\\=1.4

Calculate the exit area using isentropic flow equation.

\frac{A}{A*}= (\frac{\gamma -1}{2})^{\frac{\gamma +1}{2(\gamma -1)}}  (\frac{1+\frac{\gamma -1}{2} M*^2}{M*})^{\frac{\gamma +1}{2(\gamma -1)}}

Here: \gamma is the specific heat ratio. Substitute the values in above equation.

\frac{A}{3.14}= (\frac{1.4-1}{2})^{-\frac{1.4+1}{2(1.4 -1)}}  (\frac{1+\frac{1.4-1}{2} (1.4)^2}{1.4})^{\frac{1.4+1}{2(1.4-1)}} \\\\A=\frac{\pi}{4}d^2 \\\\10.99=\frac{\pi}{4}d^2 \\\\d = 3.74 \ cm

exit diameter is 3.74 cm

In point b:

Calculate the temperature at throat.

\frac{T*}{T}=(1+\frac{\Gamma-1}{2} M*^2)^{-1}\\\\\frac{T*}{573}=(1+\frac{1.4-1}{2} (1.4)^2)^{-1}\\\\T*=411.41 \ K

Calculate the velocity at exit.  

V*=M*\sqrt{ \gamma R T*}

Here: R is the gas constant.  

V*=1.4 \times \sqrt{1.4 \times 287 \times 411.41}\\\\=569.21 \ \frac{m}{s}

Calculate the density of air at inlet

\rho_1 =\frac{P_1}{RT_1}\\\\=\frac{400}{ 0.287 \times 573}\\\\=2.43\  \frac{kg}{m^3}

Calculate the density of air at throat using isentropic flow equation.  

\frac{\rho}{\rho_1}=(1+\frac{\Gamma -1}{2} M*^2)^{-\frac{1}{\Gamma -1}} \\\\\frac{\rho *}{2.43}=(1+\frac{1.4-1}{2} (1.4)*^2)^{-\frac{1}{1.4-1}} \\\\\rho*= 1.045 \ \frac{kg}{m^3}

Calculate the mass flow rate.  

m= \rho* \times A* \times V*\\\\= 1.045 \times 3.14 times 10^{-4} \times 569.21\\\\= 0.186 \frac{kg}{s}

You might be interested in
Explain why Chloe's design needs to be redone in the following scenario, and recommend the techniques she needs to include in he
Alenkinab [10]

Answer:

She believes he's weak and won't do what needs to be done to become a king.

Explanation:

She says ('I fear thy nature') and calls him 'too full o' th' milk of human kindness' which reflects that she feels his kindness makes him weak and may prevent him from proceeding the plan. Thus, she manipulates him to keep his kindness aside and do what she wishes him to do. She rather belittles him to get her purpose solved and

7 0
2 years ago
Read 2 more answers
Consider that a system has two entities, Students, Instructors and Course. The Student has the following properties: student nam
tekilochka [14]

Answer:

There's no answer ?

Explanation:

5 0
3 years ago
Your Java program will be reading input from a file name strInput.txt. Each record contains String firstname String lastName Str
stiks02 [169]

Answer:

The program requires that you have the specified input files and it reads from each file at a time and processes salary in digits, states the city, state and bonus with respective first and last name as requested in the question. Note that you must have access to the mentioned output files for the program to work properly. Below is the java version of the program.

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

class Driver

{

public static void main(String[] args) throws FileNotFoundException

{

Scanner sc = new Scanner(new File("strInput.txt"));

PrintWriter pd = new PrintWriter(new File("strOutputD"));

PrintWriter prf = new PrintWriter(new File("strOutputRF"));

String firstname = "", lastname = "", strSalary = "", status = "", cityState = "", city = "", state = "";

double salary = 0, bonus = 0;

int incorrectRecords = 0;

int dRecords = 0;

int fRecords = 0;

while(sc.hasNextLine())

{

firstname = sc.next();

lastname = sc.next();

strSalary = sc.next();

status = sc.next();

cityState = sc.next();

if(!status.equals("D") && !status.equals("F"))

{

System.out.println("Records is neither D nor F. Skipping this...");

incorrectRecords++;

continue;

}

else if(status.equals("D") || status.equals("F"))

{

char c = ' ';

int i = 0;

for(i=0; i<strSalary.length() && c != '.'; i++)

{

c = strSalary.charAt(i);

if(!Character.isDigit(c))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

if(c == '.')

{

if(i+1 == strSalary.length()-1)

{

if(!Character.isDigit(strSalary.charAt(i)))

{

System.out.println("Char at position " + (i+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

if(!Character.isDigit(strSalary.charAt(i+1)))

{

System.out.println("Char at position " + (i+1+1) + " in salary is not a digit");

incorrectRecords++;

continue;

}

}

else

{

System.out.println("Period is in the wrong position. Expected at " + (strSalary.length()-3) + " but found at " + (i+1));

continue;

}

}

city = cityState.split(",")[0];

state = cityState.split(",")[1];

salary = Double.parseDouble(strSalary);

if(status.equals("D"))

{

bonus = salary * 0.125;

dRecords++;

pd.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

else

{

bonus = salary * 0.18;

fRecords++;

prf.write(firstname + " " + lastname + " " + status + " " + salary + " " + bonus + " " + city + " " + state);

}

}

}

System.out.println("No of D records : " + dRecords);

System.out.println("No of F records : " + fRecords);

System.out.println("No of incorrect records : " + incorrectRecords);

}

}

6 0
3 years ago
Gummy gummy bears gummy gummy bears
ivanzaharov [21]
I love that song lol
8 0
3 years ago
Read 2 more answers
An engineer designs a new bus that can drive 30 miles per gallon of fuel. Which of the following was likely one of the client’s
Marat540 [252]
What are the options?
7 0
3 years ago
Read 2 more answers
Other questions:
  • Methane gas at 25°C, 1 atm enters a reactor operating at steady-state and burns with 80% theoretical air entering at 227°C, 1 at
    10·1 answer
  • A rigid tank contains an ideal gas at 40°C that is being stirred by a paddle wheel. The paddle wheel does 240 kJ of work on the
    9·1 answer
  • Which sentence about the technology design process is true
    12·1 answer
  • True or False:<br> Less than 2% of the U.S. population make their living producing food and fiber.
    13·1 answer
  • Technician A says that most states will allow landfills to dispose of whole tires with a permit. Technician B says that landfill
    5·1 answer
  • A 450 MWt combined cycle plant has a Brayton cycle efficiency of 24% and a Rankine cycle efficiency of 29% with no heat augmenta
    6·1 answer
  • If the driver gear has 5 teeth and the driven gear has 10 teeth,what is the gear ratio?​
    13·2 answers
  • Which option distinguishes the members of a software deployment process team most likely involved in the following scenario?
    7·1 answer
  • What is acid mine drainage
    10·1 answer
  • How does sea navigation work?
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!