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
Leona [35]
3 years ago
5

A four-cylinder, four-stroke internal combustion engine operates at 2800 RPM. The processes within each cylinder are modeled as

an air-standard Otto cycle with a pressure of 14.7 lbf/in. 2 , a temperature of 80 8 F, and a volume of 0.0196 ft 3 at the beginning of compression. The compression ratio is 10, and maximum pressure in the cycle is 1080 lbf/in.Write possible Assumptions no less than three assumptionsDetermine, using a cold air-standard analysis with k 5 1.4, the power developed by the engine, in horsepower, and the mean effective pressure, in lbf/in.
Engineering
1 answer:
Ulleksa [173]3 years ago
4 0

Answer:

1) 287760.4 Hp

2) 18410899.5 kPa

Explanation:

The parameters given are;

p₁ = 14.7 lbf/in² = 101325.9 Pa

v₁ = 0.0196 ft³ = 0.00055501 m³

T₁ = 80°F = 299.8167 K

k = 1.4

Assumptions;

1) Air standard conditions are appropriate

2) There are negligible potential and kinetic energy changes

3) The air behaves as an ideal gas and has constant specific heat capacities of temperature and pressure

1) Process 1 to 2

Isentropic compression

T₂/T₁ = (v₁/v₂)^(1.4 - 1) = 10^0.4

p₂/p₁ = (v₁/v₂)^(1.4)

p₂ = p₁×10^0.4 =  101325.9*10^0.4 = 254519.153 Pa

T₂ = 299.8167*10^0.4 = 753.106 K

p₃ = 1080 lbf/in² = 7,446,338 Pa

Stage 2 to 3 is a constant volume process

p₃/T₃ = p₂/T₂

7,446,338/T₃ =   254519.153/753.106

T₃ = 7,446,338/(254519.153/753.106) = 22033.24 K

T₃/T₄ = (v₁/v₂)^(1.4 - 1) = 10^0.4

T₄ = 22033.24/(10^0.4) = 8771.59 K

The heat supplied, Q₁ = cv(T₃ - T₂) = 0.718*(22033.24 -753.106) = 15279.14 kJ

The heat rejected = cv(T₄ - T₁) = 0.718*(8771.59 - 299.8167) = 6082.73 kJ

W(net) = The heat supplied - The heat rejected = (15279.14 - 6082.73) = 9196.41 kJ

The power = W(net) × RPM/2*1/60 = 9196.41 * 2800/2*1/60 = 214582.9 kW

The power by the engine = 214582.9 kW = 287760.4 Hp

2) The mean effective pressure, MEP  = W(net)/(v₁ - v₂)

v₁ = 0.00055501 m³

v₁/v₂ = 10

v₂ = v₁/10 = 0.00055501/10 = 0.000055501

MEP  = 9196.41/(0.00055501 -  0.000055501) = 18410899.5 kPa

You might be interested in
I ran across this symbol in some Electrical wiring documents and I am unaware of what this means. Any help?
Minchanka [31]

Answer:

Opened Push-button Switch (i.e. a PTM Switch)

Explanation:

Tha's just another symbol for a switch, but this one specifies that the switch is a push-button type of switch.

Since it's not touching and completing the line, the state of the switch is initially open.

6 0
3 years ago
What type of foundation do engineers use for a small and light building and when the load of the building is borne by columns? A
ikadub [295]

Answer:

A.

Explanation:

Individual footings are the commonest, and they are often used if the load of the building is borne by columns. Typically, every column will have an own footing. The footing is usually only a rectangular or square pad of concrete on which the column is erected

8 0
2 years ago
According to the video, what are examples of systems that Stationary Engineers oversee? Check all that apply. electrical systems
garik1379 [7]

Answer:

electrial systems

fire systems

heating systems

air systems

Explanation:

3 0
3 years ago
Read 2 more answers
Wattage is:
Ksju [112]

Answer:

c.Both A and B.

Explanation:

the wattage is c and d

7 0
2 years ago
Reference Parameters (returning multiple values): Write a C++ function that converts standard time to military time. Inputs incl
valkas [14]

Answer:

Code is given as below:

Explanation:

#include <iostream>

using namespace std;

//function prototype declaration

void MilitaryTime(int, int, char, int &, int &);

int main()

{

    //declare required variables

    int SHour, SMin, MHour, MMin;

    char AorP;

    //promt and read the hours from the user

    cout<<"Enter hours in standard time : ";

    cin>>SHour;

    //check the hours are valid are not

    while(SHour<0 || SHour>12)

    {

         cout<<"Invalid hours for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter hours in standard time : ";

         cin>>SHour;

    }

    //promt and read the minutes from the user

    cout<<"Enter minutes in standard time : ";

    cin>>SMin;

    //check the minutes are valid are not

    while(SMin<0 || SMin>59)

    {

         cout<<"Invalid minutes for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter minutes in standard time : ";

         cin>>SMin;

    }

    //promt and read the am or pm from the user

    cout<<"Enter standard time meridiem (a for AM p for PM): ";

    cin>>AorP;

    //check the meridiem is valid are not

    while(!(AorP=='a' || AorP=='p' || AorP=='A' || AorP=='P'))

    {

         cout<<"Invalid meridiem for standard time. "

             <<"Try again..."<<endl;

         cout<<"Enter standard time meridiem (a for AM p for PM): ";

         cin>>AorP;

    }

    //call function to calculate the military time

    MilitaryTime(SHour, SMin, AorP, MHour, MMin);

    //fill zeros and display standard time

    cout.width(2);

    cout.fill('0');

    cout<<SHour<<":";

    cout.width(2);

    cout.fill('0');

    cout<<SMin;

    if(AorP=='a' || AorP=='A')

         cout<<" am = ";

    else

         cout<<" pm = ";

    //fill zeros and display military time

    cout.width(2);

    cout.fill('0');

    cout<<MHour;

    cout.width(2);

    cout.fill('0');

    cout<<MMin<<endl;

    system("PAUSE");

    return 0;

}

//function to calculate the military time with reference parameters

void MilitaryTime(int SHour, int SMin, char AorP, int &MHour, int &MMin)

{

    //check the meredium is am or pm

    //and calculate hours

    if(AorP=='a' || AorP=='A')

    {

         if(SHour==12)

             MHour = 0;

         else

             MHour = SHour;

    }

    else

         MHour = SHour+12;

    MMin = SMin;

5 0
3 years ago
Other questions:
  • Air is used as the working fluid in a simple ideal Brayton cycle that has a pressure ratio of 12, a compressor inlet temperature
    13·1 answer
  • Technician A says that when using an impact wrench to remove a bolt from the front of an engine's crankshaft, the crankshaft mus
    15·1 answer
  • 10. The repair order is a legal document because
    7·1 answer
  • Can someone please do this for me? I’m so behind on other work for different classes and this one is due today! please I’d appre
    11·1 answer
  • The waffle slab is: a) the two-way concrete joist framing system. b) a one-way floor and roof framing system. c) the one-way con
    11·1 answer
  • A signalized intersection approach has three lanes with no exclusive left or right turning lanes. The approach has a 40-second g
    10·1 answer
  • If a car travels 8 miles in 15 minutes, what is the speed of the car in miles per hour
    11·1 answer
  • Define a separate subroutine for each of the following tasks respectively.
    6·2 answers
  • El tiempo hasta que falle un sistema informático sigue una distribución Exponencial con media de 600hs. (Utilice 3 decimales par
    13·1 answer
  • In plumbing what is a video snake used for
    10·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!