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
labwork [276]
2 years ago
9

You are hired as the investigators to identify the root cause and describe what should have occurred based on the following info

rmation. The mass of jet fuel required to travel from Toronto to Edmonton is 22,300 kg. The fuel gage correctly indicated that the plane already had 7,682 L of jet fuel in the tank. The specific gravity of the jet fuel is 0.803. Using this information, the crew added 4,916 L of fuel and took off, only to run out of fuel and crash a short while later. Use your knowledge of dimensions and units to work out what went wrong.
Engineering
1 answer:
creativ13 [48]2 years ago
4 0

Answer:

The mass of fuel added, which is 10,166.2 kg is less than 22,300 kg which is the mass of fuel required to travel from Toronto to Edmonton, the plane therefore crashed.

Explanation:

Since density ρ = m/v where m = mass of fuel and v = volume of fuel, we need to find the mass of each volume of fuel.

So, m = ρv now ρ = specific gravity × density of water = 0.803 × 1000 kg/m³ = 803 kg/m³.

To find the mass of the 7,682 L of fuel, its volume is 7,682 dm³ = 7,682 dm³ × 1 m³/1000 dm³ = 7.682 m³.

It's mass, m = 803 kg/m³ × 7.682 m³ = 6168.646 kg

To find the mass of the extra 4,916 L of fuel added, we have

m' = ρv' where v' = 4,916 L = 4,916 dm³ = 4916 dm³ × 1 m³/1000 dm³ = 4.916 m³

m' =  803 kg/m³ × 4.916 m³ = 3947.548 kg

So, the total mass of the fuel is m" = m + m' = 6168.646 kg + 3947.548 kg = 10116.194 kg ≅ 10,166.2 kg

<u>Since this mass of fuel added, which is 10,166.2 kg is less than 22,300 kg which is the mass of fuel required to travel from Toronto to Edmonton, the plane therefore crashed.</u>

You might be interested in
How much work, in Newtons, is required to lift a 20.4-kg (45lb) plate from the ground to a stand that is 1.50 meters up?
nataly862011 [7]

Answer:

Explanation:

Work, U, is equal to the force times the distance:

U = F · r

Force needed to lift the weight, is equal to the weight: F = W = m · g

so:

U = m · g · r

   = 20.4kg · 9.81 \frac{N}{kg} · 1.50m

   = 35.316 \frac{N}{m}

   = 35.316 W

4 0
2 years ago
Which of the following identifies the limitations of green engineering?
olga_2 [115]

Answer:

Resources and Cost

Explanation:

  • Cost: Sustainable choices can value a lot of as a result of they price makers more to provide. Thus, there'll always be an oversized initial investment once selecting a green element for your home.
  • Resources: Sustainable materials don't seem to be always as without delay available as their less eco-friendly alternatives.

Hope it helps!<3

4 0
2 years ago
A video inspection snake is use
LekaFEV [45]

Answer:

very good thx

Explanation:

5 0
2 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
Gas chromatography separates compounds depending on their__________ . Benzene, m-xylene, and toluene have similar_________ , the
amm1812

Answer and Explanation:

Gas chromatography separates compounds depending on their **polarity and volatility**. Benzene, m-xylene, and toluene have similar **polarities**, therefore, the main basis for separation is **volatility**. The more volatile a component the ** higher its vapor pressure**, hence the more time it spends in the **gaseous mobile phase**, giving it a **shorter** retention time. Therefore, components of a liquid mixture will elute in order of **increasing boiling points/decreasing volatilities/increasing polarities with the stationary phase**.

3 0
3 years ago
Other questions:
  • A thin‐walled tube with a diameter of 12 mm and length of 25 m is used to carry exhaust gas from a smoke stack to the laboratory
    10·1 answer
  • The 10 foot wide circle quarter gate AB is articulated at A. Determine the contact force between the gate and the smooth surface
    10·1 answer
  • If a ball is dropped from a height its velocity will increase until it hits the ground, assuming that aerodynamic drag due to th
    6·1 answer
  • 10. To cut 1/4" (6 mm) thick mild steel at a rate of 40 inches per minute, the current would be set to
    7·1 answer
  • Please help I need it by today!!!
    10·1 answer
  • How many volts of electricity would it take to power up an entire city? Take Tokyo for example. Please explain!
    12·1 answer
  • For the same cross-sectional area, which column provides the higher buckling load: a circular bar or a circular tube?
    15·1 answer
  • I need solution fast plesss​
    9·1 answer
  • Merchandise without an expiration date like electronics, tools and home goods typically have a longer
    15·1 answer
  • Kaya just bought a house and realizes that the chimney needs to be totally torn down and rebuilt. She needs to call an expert si
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!