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
kykrilka [37]
3 years ago
15

The air compressor governor controls the cut-in and cut-out of the compressor. What are the cut-in and cut-out, typically

Engineering
1 answer:
Eduardwww [97]3 years ago
4 0

Answer:

Air Compressor Governor

Explanation:

The governor regulates how much air is pumped into the air pumping stations by the air compressor. The governor prevents the compressors from blowing air whenever the air pressure exceeds the "cut-out" level (about 125 pounds per square inch or "psi").

The transition from 85 to 100 psi will take no more than 45 seconds. During the build-up, keep an eye on the air pressure gauge to guarantee appropriate air system performance.

You might be interested in
Is the COP of a heat pump always larger than 1?
Liono4ka [1.6K]

Answer:

Yes

Explanation:

Yes it is true that COP of heat pump always greater than 1.But the COP of refrigeration can be greater or less than 1.

We know that

COP of heat pump=  1 + COP of refrigeration

It is clear that COP can not be negative .So from the above expression we can say that COP of heat pump is always greater than one.  

3 0
3 years ago
In a much smaller model of the Gizmo apparatus, a 5 kg mass drops 86 mm (0.086 m) and raises the temperature of 1 gram of water
Orlov [11]

Answer:

The amount of energy transferred to the water is 4.214 J

Explanation:

The given parameters are;

The mass of the object that drops = 5 kg

The height from which it drops = 86 mm (0.086 m)

The potential energy P.E. is given by the following formula

P.E = m·g·h

Where;

m = The mass of the object = 5 kg

g = The acceleration de to gravity = 9.8 m/s²

h = The height from which the object is dropped = 0.086 m

Therefore;

P.E. = 5 kg × 9.8 m/s² × 0.086 m = 4.214 J

Given that the potential energy is converted into heat energy, that raises the 1 g of water by 1°C, we have;

The amount of energy transferred to the water = The potential energy, P.E. = 4.214 J.

6 0
3 years ago
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Locate the centroid y¯ of the composite area. Express your answer to three significant figures and include the appropriate units
german

Answer:

Please see the attached Picture for the complete answer.

Explanation:

4 0
3 years ago
A particle is emitted from a smoke stack with diameter of 0.05 mm. In order to determine how far downstream it travels it is imp
Nikolay [14]

Answer: downward velocity = 6.9×10^-4 cm/s

Explanation: Given that the

Diameter of the smoke = 0.05 mm = 0.05/1000 m = 5 × 10^-5 m

Where radius r = 2.5 × 10^-5 m

Density = 1200 kg/m^3

Area of a sphere = 4πr^2

A = 4 × π× (2.5 × 10^-5)^2

A = 7.8 × 10^-9 m^2

Volume V = 4/3πr^3

V = 4/3 × π × (2.5 × 10^-5)^3

V = 6.5 × 10^-14 m^3

Since density = mass/ volume

Make mass the subject of formula

Mass = density × volume

Mass = 1200 × 6.5 × 10^-14

Mass M = 7.9 × 10^-11 kg

Using the formula

V = sqrt( 2Mg/ pCA)

Where

g = 9.81 m/s^2

M = mass = 7.9 × 10^-11 kg

p = density = 1200 kg/m3

C = drag coefficient = 24

A = area = 7.8 × 10^-9m^2

V = terminal velocity

Substitute all the parameters into the formula

V = sqrt[( 2 × 7.9×10^-11 × 9.8)/(1200 × 24 × 7.8×10^-9)]

V = sqrt[ 1.54 × 10^-9/2.25×10-4]

V = 6.9×10^-6 m/s

V = 6.9 × 10^-4 cm/s

6 0
3 years ago
Other questions:
  • A centimeter is Viooth of a meter, while a kilo-
    10·1 answer
  • A computer maintenance company wants to 'capture' the knowledge that employees carry around in their heads by creating a databas
    5·1 answer
  • At the end of a power distribution system, a certain feeder supplies three distribution transformer, each one supplying a group
    8·1 answer
  • A horse on the merry-go-round moves according to the equations r = 8 ft, u = (0.6t) rad, and z = (1.5 sin u) ft, where t is in s
    5·1 answer
  • Read a 4 character number. Output the result in in the following format, Input 9873, Output 3 *** 7 ******* 8 ******** 9 *******
    8·1 answer
  • A torsional pendulum consists of a 5 kg uniform disk with a diameter of 50 cm attached at its center to a rod 1.5 m in length. T
    13·1 answer
  • Calculate the radius of a circular orbit for which the period is 1 day​
    13·1 answer
  • 1. advantages of 2 pulley system
    13·1 answer
  • Explain the problems and their possible solution for electricity problems ?​
    8·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!