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
pychu [463]
3 years ago
10

Air enters a compressor operating at steady state at 176.4 lbf/in.^2, 260°F with a volumetric flow rate of 424 ft^3/min and exit

s at 15.4 lbf/in.^2, 80°F. Heat transfer occurs at a rate of 6800 Btu/h from the compressor to its surroundings. Assuming the ideal gas model for air and neglecting kinetic and potential energy effects, determine the power input, in hp
Engineering
1 answer:
Lera25 [3.4K]3 years ago
6 0

Answer:

W_s  = 283.181 hp

Explanation:

Given that:

Air enters a compressor operating at steady state at a pressure P_1 =  176.4 lbf/in.^2  and Temperature T_1 at 260°F

Volumetric flow rate V = 424 ft^3/min

Air exits at a pressure P_2  = 15.4 lbf/in.^2 and Temperature T_2 at 80°F.

Heat transfer occurs at a rate of 6800 Btu/h from the compressor to its surroundings; since heat is released to the surrounding; then:

Q_{cv} = -6800 Btu/h  = - 1.9924 kW

Using the steady  state  energy in the process;

h_2 - h_1 + g(z_2-z_1)+ \dfrac{1}{2}(v^2_2-v_1^2) = \dfrac{Q_{cv}}{m}- \dfrac{W_s}{m}

where;

g(z_2-z_1) =0  and  \dfrac{1}{2}(v^2_2-v_1^2) = 0

Then; we have :

h_2 - h_1 = \dfrac{Q_{cv}}{m}- \dfrac{W_s}{m}

h_2 - h_1 = \dfrac{Q_{cv} - W_s}{m}

{m}(h_2 - h_1) ={Q_{cv} - W_s}

W_s  ={Q_{cv} + {m}(h_2 - h_1) ----- (1)

Using the relation of Ideal gas equation;

P₁V₁ = mRT₁

Pressure P_1 =  176.4 lbf/in.^2   = ( 176.4 ×  6894.76 ) N/m² = 1216235.664 N/m²

Volumetric flow rate V = 424 ft^3/min = (424 ×  0.0004719) m³  /sec

= 0.2000856 m³  /sec

Temperature = 260°F = (260°F − 32) × 5/9 + 273.15 = 399.817 K

Gas constant R=287 J/kg K

Then;

1216235.664 N/m² × 0.2000856 m³  /sec = m × 287 J/kg K × 399.817 K

m = \dfrac { 1216235.664 N/m^2 \times 0.2000856 m^3  /sec  } {287 J/kg K \times 399.817 K  }

m = 2.121 kg/sec

The change in enthalpy:

m(h_1-h_2) =  m * C_p * \Delta T= m* C_p * ( T_1 -T_2)

= 2.121* 1.005* ( 399.817 -299.817)

= 213.1605 kW

From (1)

W_s  ={Q_{cv} + {m}(h_2 - h_1)

W_s  =  - 1.9924 kW + 213.1605 kW

W_s  = 211.1681  kW

W_s  = 283.181 hp

The power input is W_s  = 283.181 hp

You might be interested in
List five areas that increased energy prices impact.
Effectus [21]

Answer:

Supply, demand, global markets, imports and exports, and government Regulation.

Explanation:

7 0
4 years ago
In casting experiments performed using a certain alloy and type of sand mold, it took 170 sec for a cube-shaped casting to solid
poizon [28]

Answer:

Answer for the question is : Solidification time will be same i.e. 170. See attached file for explanation.

Explanation:

Download pdf
7 0
3 years ago
Read 2 more answers
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
Why is it important to cut all the way through an electrical wire on the first try?
lbvjy [14]

Answer:

I always thought it was so that the older wire could not have a problem and have another electrician must come back and fix it.

Explanation:

6 0
3 years ago
Situation: Peter is designing a new hybrid car that functions on solar power. He is currently working on sketches of his design
givi [52]

Answer:

whats the question?

Explanation:

8 0
2 years ago
Other questions:
  • NO reacts with Br2 in the gas phase according to the following chemical equation: 2NO(g) +Br2(g)2NOBr(g) It is observed that, wh
    6·1 answer
  • An important ethical concern for behavior analysts involves special cautions in interactions with a client in any capacity outsi
    5·1 answer
  • Bulk wind shear is calculated by finding the vector difference between the winds at two different heights. Using the supercell w
    12·1 answer
  • A team member who has been a good worker for many years has recently been doing poor work. You suspect that he may be tired of h
    6·1 answer
  • Water at 310 K and a flow rate of 4 kg/s enters an alumina tube (k=177Wm K1) with an inner diameter of 0.20 m and a wall thickne
    13·1 answer
  • The mechanical advantage of a screw is always ____________________ than/to 1. Question 5 options: less, greater, equal, none of
    7·1 answer
  • If changing employment what do you need to do? Email your new employer information to the Deptartment of International Graduate
    5·1 answer
  • What is the role of the architects in modern development​
    15·1 answer
  • A person is interested in becoming an electrician. What are some appropriate types of preparation that this individual can consi
    7·2 answers
  • Hey answer quick for 20 points
    7·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!