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
Norma-Jean [14]
3 years ago
14

In an aircraft jet engine at takeoff, the combustion products expand adiabatically in the exhaust nozzle. At entrance to the noz

zle, the pressure is 0.180 MPa and the temperature is 1200 K. The kinetic energy of the gas entering the nozzle is very much smaller than the kinetic energy of the gas leaving the nozzle. The specific heat of the exhaust gas varies with temperature approximately as follows: Cp = 0.959 + 1.16 X 10-4T + 3.65 X 10-8T2 , in which the units of cP are kJ/kg · K and Tis the temperature in K. The molecular weight of the exhaust gas is 30. Supposing the expansion to be frictionless (reversible) as well as adiabatic, show how the exhaust velocity and pressure will depend on the exhaust temperature for a series of values: 1100, 1000, and 900 K. At each temperature determine also the speed of sound VyRT'.
Engineering
1 answer:
tensa zangetsu [6.8K]3 years ago
5 0

At entrance to the nozzle, the pressure is 0.180 MPa and the temperature is 1200 K. The kinetic energy of the gas entering the nozzle is very much smaller than ... The specific heat of the exhaust gas varies with temperature approximately as follows: ... Problem 4P: In an aircraft jet engine at takeoff, the combustion product.

You might be interested in
An apple, potato, and onion all taste the same if you eat them with your nose plugged
PolarNik [594]

Answer:

I didn't understand your question or is it a fun fact

3 0
3 years ago
Read 2 more answers
What is 203593^54/38n^7
Snowcat [4.5K]

Answer:

cool

Explanation:

3 0
3 years ago
which of the following statements are true about client-side DNS? (Choose all that apply). a. If an APIPA address is assigned, t
Brums [2.3K]

The statements which are true about client-side DNS include all of the following;

B. Client-side DNS should be configured to point towards the DNS server that is authoritative for the domain that client wants to join.

C. Check out DNS settings using the NSLookup command.

D. Check out DNS settings using the DIG command.

E. The cache.dns file has the IP addresses of the 13 root DNS servers.

B. If a web site can be reached by IP address and not by host name, then DNS or the Hosts file would be the problem.

<h3>What is a DNS server?</h3>

In Computer technology, a DNS server can be defined as a type of server that is designed and developed to translate domain names into IP addresses, so as to allow end users access websites and other internet resources through a web browser.

This ultimately implies that, a DNS server simply refers to a type of server that is designed and developed to translate requests for domain names into IP addresses for end users.

Read more on a domain names here: brainly.com/question/19268299

#SPJ1

5 0
1 year ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
You are in charge of ordering the concrete for a basement wall concrete pour. The wall forms are all set up and ready. The wall
choli [55]

Answer:

189.15cy

Explanation:

To understand this problem we need to understand as well the form.

It is clear that there is four wall, two short and two long.

The two long are \rightarrow 120ft5in+2(10ft)

The two long are \rightarrow 122ft1in=122.08ft

The two shors are \rightarrow 86ft4.5in = 86.375ft

The height and the thickness are 14ft and 0.83ft respectively.

So we only calculate the Quantity of concrete,

Q_c = [(2*122.08)+(2*86-375)]*14*0.833\\Q_c=4864.02ft^3

That in cubic yards is equal to 180.15 (1cy=27ft^3)

Hence, we need order 5% plus that represent with the quantity

Q_{ordered}=1.05*180.15=189.15cy

8 0
3 years ago
Other questions:
  • Not a characteristic property of ceramic material (a) high temperature stability (b) high mechanical strength (c) low elongation
    7·2 answers
  • A surveyor is trying to find the height of a hill . he/she takes a sight on the top of the hill and find that the angle of eleva
    12·1 answer
  • How many types of residential circuits are There <br> A. 4<br> B. 3<br> C. 5<br> D. 7
    11·2 answers
  • Which of the following is an example of seeking accreditation?
    7·1 answer
  • What is the theoretical density in g/cm3 for Lead [Pb]?
    13·1 answer
  • You are a technical writer for Landson Toy Company. Landson has just designed a new, more durable swing set for 6- to 10-year-ol
    9·1 answer
  • If Fred has already measured 14 inches of a table measuring 30 inches. How many inches does he need to measure more?
    15·1 answer
  • Calculate the radius of a circular orbit for which the period is 1 day​
    13·1 answer
  • A 60-Hz 3-phase induction motor is required to drive a load at approximately 850 rpm. How many poles should the motor have
    9·1 answer
  • Technician A says that to depressurize high-pressure components of the electronic brake control (EBC) system, research the proce
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!