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
notka56 [123]
3 years ago
7

The idling engines of a landing turbojet produce forward thrust when operating in a normal manner, but they can produce reverse

thrust if the jet is properly deflected. Suppose that while the aircraft rolls down the runway at 150 km/h the idling engine consumes air at 50 kg/s and produces an exhaust velocity of 150 m/s.
a. What is the forward thrust of this engine?
b. What are the magnitude and direction (i.e., forward or reverse) if the exhaust is deflected 90 degree without affecting the mass flow?
c. What are the magnitude and direction of the thrust (forward or reverse) after the plane has come to a stop, with 90 degree exhaust deflection and an airflow of 40 kg/s?
Engineering
1 answer:
sertanlavr [38]3 years ago
5 0

Answer:

T = 5416.67 N

T = -2083.5 N

T = 0

Explanation:

Forward thrust has positive values and reverse thrust has negative values.

part a

Flight speed u = ( 150 km / h ) / 3.6 = 41.67 km / s

The thrust force represents the horizontal or x-component of momentum equation:

T = flow(m_{exhaust})*(u_{exhaust} - u_{flight} )\\T = (50 kg/s ) * (150 - 41.67)\\\\T = 5416.67 N

Answer: The thrust force T = 5416.67 N

part b

Now the exhaust velocity is now vertical due to reverse thrust application, then it has a zero horizontal component, thus thrust equation is:

T = flow(m_{exhaust})*(u_{exhaust} - u_{flight} )\\T = (50 kg/s ) * (0 - 41.67)\\\\T = -2083.5 N

Answer: The thrust force T = -2083.5 N reverse direction

part c

Now the exhaust velocity and flight velocity is zero, then it has a zero horizontal component, thus thrust is also zero as there is no difference in two velocities in x direction.

Answer: T = 0 N

You might be interested in
What should always be done before beginning any diagnosis?
vladimir2022 [97]

Answer:

c

Explanation:

if someone is wrong that they can help with

4 0
3 years ago
You set a sensor to transmit the wind speed on top of a mountain. Which of these languages are you most likely to have used?
kifflom [539]

The programming language that is most likely used to transmit the wind speed is: B. SQL.

<h3>What is SQL?</h3>

SQL is an acronym for structured query language and it can be defined as a domain-specific programming language that is designed and developed for the management of various data that are saved in a relational or structured database.

This ultimately implies that, a structured query language (SQL) can be used to communicate with a database in accordance with the American National Standards Institute (ANSI) standards.

In conclusion, the programming language that is most likely used to transmit the wind speed is SQL.

Read more on SQL here:

brainly.com/question/25266787

#SPJ1

8 0
2 years ago
In RSA Digital Signature, Suppose Bob wants to send a signed message (x = 4) to Alice. The first steps are exactly t eps are exa
Luda [366]

Answer:

what r u on

Explanation:

4 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
4 years ago
Bending is defined as? A. the application of a load tending to distort a member in one direction. B. the application of opposing
amm1812
Hi how are you today
4 0
3 years ago
Other questions:
  • Mike is involved in developing the model building codes that various states and local authorities in the United States adopt. He
    6·1 answer
  • Kjhwe ,kenwif ujwfeowlwfwfwfw...
    14·2 answers
  • How much heat (Btu) is prod uced by a 150-W light bulb that is on for 20-hours?
    14·1 answer
  • Design a digital integrator using the impulse invariance method. Find and give a rough sketch of the amplitude response, and com
    15·1 answer
  • For a bronze alloy, the stress at which plastic deformation begins is 266 MPa and the modulus of elasticity is105 GPa.
    15·1 answer
  • Which statement concerning symbols used on plans is true?
    10·1 answer
  • Which one is dependent variable?
    13·1 answer
  • Steam enters an adiabatic turbine at 6 MPa, 600°C, and 80 m/s and leaves at 50 kPa, 100°C, and 140 m/s. If the power output of t
    14·1 answer
  • Why are there few effective HCI standards?
    6·1 answer
  • All of the following are drum brake components mounted to the backing plate, EXCEPT:
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!