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
kolbaska11 [484]
2 years ago
9

Consider an aircraft powered by a turbojet engine that has a pressure ratio of 9. The aircraft is stationary on the ground, held

in position by its brakes. The ambient air is at 78C and 95 kPa and enters the engine at a rate of 20 kg/s. The jet fuel has a heating value of 42,700 kJ/kg, and it is burned completely at a rate of 0.5 kg/s. Neglecting the effect of the diffuser and disregarding the slight increase in mass at the engine exit as well as the inefficiencies of engine components, determine the force that must be applied on the brakes to hold the plane stationary.
Engineering
1 answer:
77julia77 [94]2 years ago
5 0

Answer:

The break force that must be applied to hold the plane stationary is 12597.4 N

Explanation:

p₁ = p₂, T₁ = T₂

\dfrac{T_{2}}{T_{1}} = \left (\dfrac{P_{2}}{P_{1}}  \right )^{\frac{K-1}{k} }

{T_{2}}{} = T_{1} \times \left (\dfrac{P_{2}}{P_{1}}  \right )^{\frac{K-1}{k} } = 280.15 \times \left (9  \right )^{\frac{1.333-1}{1.333} } = 485.03\ K

The heat supplied = \dot {m}_f × Heating value of jet fuel

The heat supplied = 0.5 kg/s × 42,700 kJ/kg = 21,350 kJ/s

The heat supplied = \dot m · c_p(T_3 - T_2)

\dot m = 20 kg/s

The heat supplied = 20*c_p(T_3 - T_2) = 21,350 kJ/s

c_p = 1.15 kJ/kg

T₃ = 21,350/(1.15*20) + 485.03 = 1413.3 K

p₂ = p₁ × p₂/p₁ = 95×9 = 855 kPa

p₃ = p₂ = 855 kPa

T₃ - T₄ = T₂ - T₁ = 485.03 - 280.15 = 204.88 K

T₄ = 1413.3 - 204.88 = 1208.42 K

\dfrac{T_5}{T_4}  = \dfrac{2}{1.333 + 1}

T₅ = 1208.42*(2/2.333) = 1035.94 K

C_j = \sqrt{\gamma \times R \times T_5} = √(1.333*287.3*1035.94) = 629.87 m/s

The total thrust = \dot m × C_j = 20*629.87 = 12597.4 N

Therefore;

The break force that must be applied to hold the plane stationary = 12597.4 N.

You might be interested in
Controlling your vehicle
Ratling [72]

Answer:

5. D

6. c

7. d

Explanation:

3 0
3 years ago
CS3733: Homework/Practice 05 Suppose we would like to write a program called monitor which allows two other programs to communic
valina [46]

Answer:

#include<stdio.h>

#include<stdlib.h>

#include<unistd.h>

#include<sys/types.h>

#include<string.h>

#include<pthread.h>

//#include<sys/wait.h>

int main(int argc, char** argv)

{

int fd1[2];

int fd2[2];

int fd3[2];

int fd4[2];

char message[] = "abcd";

char input_str[100];

pid_t p,q;

if (pipe(fd1)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd2)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd3)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

if (pipe(fd4)==-1)

{

 fprintf(stderr, "Pipe Failed" );

 return 1;

}

p = fork();

if (p < 0)

{

 fprintf(stderr, "fork Failed" );

return 1;

}

// child process-1

else if (p == 0)

{

 close(fd1[0]);// Close reading end of first pipe

 char concat_str[100];

 printf("\n\tEnter meaaage:"):

 scanf("%s",concat_str);

 write(fd1[1], concat_str, strlen(concat_str)+1);

 // Concatenate a fixed string with it

 int k = strlen(concat_str);

 int i;

 for (i=0; i<strlen(fixed_str); i++)

 {

  concat_str[k++] = fixed_str[i];

 }

 concat_str[k] = '\0';//string ends with '\0'

 // Close both writting ends

 close(fd1[1]);

 wait(NULL);

//.......................................................................

 close(fd2[1]);

 read(fd2[0], concat_str, 100);

 if(strcmp(concat_str,"invalid")==0)

 {

 printf("\n\tmessage not send");

 }

 else

 {

  printf("\n\tmessage send to prog_2(child_2).");

 }

 close(fd2[0]);//close reading end of pipe 2

 exit(0);

}

else

{

 close(fd1[1]);//Close writting end of first pipe

 char concat_str[100];

 read(fd1[0], concal_str, strlen(concat_str)+1);

 close(fd1[0]);

 close(fd2[0]);//Close writing end of second pipe

 if(/*check if msg is valid or not*/)

 {

  //if not then

  write(fd2[1], "invalid",sizeof(concat_str));

  return 0;

 }

 else

 {

  //if yes then

  write(fd2[1], "valid",sizeof(concat_str));

  close(fd2[1]);

  q=fork();//create chile process 2

  if(q>0)

  {

   close(fd3[0]);/*close read head offd3[] */

   write(fd3[1],concat_str,sizeof(concat_str);//write message by monitor(main process) using fd3[1]

   close(fd3[1]);

   wait(NULL);//wait till child_process_2 send ACK

   //...........................................................

   close(fd4[1]);

   read(fd4[0],concat_str,100);

   close(fd4[0]);

   if(sctcmp(concat_str,"ack")==0)

   {

    printf("Messageof child process_1 is received by child process_2");

   }

   else

   {

    printf("Messageof child process_1 is not received by child process_2");

   }

  }

  else

  {

   if(p<0)

   {

    printf("Chiile_Procrss_2 not cheated");

   }

   else

   {

     

    close(fd3[1]);//Close writing end of first pipe

    char concat_str[100];

    read(fd3[0], concal_str, strlen(concat_str)+1);

    close(fd3[0]);

    close(fd4[0]);//Close writing end of second pipe

    write(fd4[1], "ack",sizeof(concat_str));

     

   }

  }

 }

 close(fd2[1]);

}

}

8 0
3 years ago
What line separates two lanes traveling in the same direction
soldier1979 [14.2K]

Answer:

White lane lines separate lanes of traffic moving in the same direction. (UK)

5 0
2 years ago
Read 2 more answers
This fluid may be mixed with engine oil for recycling.
alisha [4.7K]

Answer: D

Explanation:

5 0
2 years ago
A cylindrical specimen of some metal alloy having an elastic modulus of 108 GPa and an original cross-sectional diameter of 4.5
IgorC [24]

Answer:

The maximum length of the specimen before the deformation was 358 mm or 0.358 m.

Explanation:

The specific deformation ε for the material is:

\epsilon = \deltaL /L (1)

Where δL and L represent the elongation and initial length respectively. From the HOOK's law we also now that for a linear deformation, the deformation and the normal stress applied relation can be written as:

\sigma = E/ \epsilon (2)

Where E represents the elasticity modulus. By combining equations (1) and (2) in the following form:

L= \delta L/ \epsilon

\epsilon =\sigma /E  

So by calculating ε then will be possible to find L. The normal stress σ is computing with the applied force F and the cross-sectional area A:

\sigma=F/A

\sigma=\frac{F} {\pi*d^2/4}

\sigma=\frac{2170 N}{\pi*4.5 mm^2/4}

\sigma= 136000000 Pa= 136 Mpa  

Then de specific defotmation:

\epsilon =136 MPa / 108 GPa = 1.26*10^{-3}

Finally the maximum specimen lenght for a elongation 0f 0.45 mm is:

L= 0.45 mm/ 1.26*10^{-3} = 358 mm = 0.358 m

4 0
2 years ago
Other questions:
  • The aluminum rod AB (G 5 27 GPa) is bonded to the brass rod BD (G 5 39 GPa). Knowing that portion CD of the brass rod is hollow
    14·1 answer
  • How I do I get nut out of sheets​
    8·2 answers
  • Define various optical properties of engineering materials
    11·1 answer
  • an adiabatic compressor receives 1.5 meter cube per second of air at 30 degrees celsius and 101 kpa. The discharge pressure is 5
    11·1 answer
  • The fouling on the heat exchanger surfaces causes additional thermal resistance, thus decreases the heat transfer rate. a)- True
    11·1 answer
  • Two technicians are discussing a vehicle that will not start. Tech A states that a problem with the immobilizer system may be th
    9·1 answer
  • How do you make a 3d print
    6·1 answer
  • A car radiator is a cross-flow heat exchanger with both fluids unmixed. Water, which has a flow rate of 0.05 kg/s, enters the ra
    15·1 answer
  • Air enters a turbine with a stagnation pressure of 900 kPa and a stagnation temperature of 658K, and it is expanded to a stagnat
    9·1 answer
  • Why do engineers play a variety of roles in the engineering process?
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!