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
mojhsa [17]
3 years ago
6

When trying to solve a frame problem it will typically be necessary to draw many free body diagrams. a)-True b)-False

Engineering
1 answer:
klasskru [66]3 years ago
6 0

Answer:

True

Explanation:

When trying to solve a frame problem in Engineering or Physics, it will typically be necessary to draw more than one body diagram.

When we have several parts of the frame or a set of frames, we have the anchor point, as well as the intersections of frames. Besides that, usually, there is a particle or rigid body together with the frame system. In this sense, usually, it is required to analyze a body diagram for the particle or rigid body suspended, as well as the intersections of the frames. So, usually, it will be required a minimum of two body diagrams.

If the system is more complex, or there are many intersections points, it will be required more than two body diagrams.

Finally, indeed, it will typically be necessary to draw many-body diagrams. 

You might be interested in
What's the monomer? Show the structure.
ivolga24 [154]

In order to understand a monomer let´s first see the structure of a polymer. As an example, in the first figure polyethylene (or polyethene) is shown. This polymer, like every other one, is composed of many repeated subunits, these subunits are called monomer. In the second figure, polyethylene's monomer is shown.  

7 0
3 years ago
The Stefan-Boltzmann law can be employed to estimate the rate of radiation of energy H from a surface, as in
Mazyrski [523]

Explanation:

A.

H = Aeσ^4

Using the stefan Boltzmann law

When we differentiate

dH/dT = 4AeσT³

dH/dT = 4(0.15)(0.9)(5.67)(10^-8)(650)³

= 8.4085

Exact error = 8.4085x20

= 168.17

H(650) = 0.15(0.9)(5.67)(10^-8)(650)⁴

= 1366.376watts

B.

Verifying values

H(T+ΔT) = 0.15(0.9)(5.67)(10)^-8(670)⁴

= 1542.468

H(T+ΔT) = 0.15(0.9)(5.67)(10^-8)(630)⁴

= 1205.8104

Error = 1542.468-1205.8104/2

= 168.329

ΔT = 40

H(T+ΔT) = 0.15(0.9)(5.67)(10)^-8(690)⁴

= 1735.05

H(T-ΔT) = 0.15(0.9)(5.67)(10^-8)(610)⁴

= 1735.05-1059.83/2

= 675.22/2

= 337.61

5 0
3 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
What mass of LP gas is necessary to heat 1.4 L of water from room temperature (25.0 ∘C) to boiling (100.0 ∘C)? Assume that durin
DochEvi [55]

Answer:

m_{LP}=0.45\,kg

Explanation:

Let assume that heating and boiling process occurs under an athmospheric pressure of 101.325 kPa. The heat needed to boil water is:

Q_{water} = (1.4\,L)\cdot(\frac{1\,m^{3}}{1000\,L} )\cdot (1000\,\frac{kg}{m^{3}} )\cdot [(4.187\,\frac{kJ}{kg\cdot ^{\textdegree}C} )\cdot (100^{\textdegree}C-25^{\textdegree}C)+2257\,\frac{kJ}{kg}]

Q_{water} = 3599.435\,kJ

The heat liberated by the LP gas is:

Q_{LP} = \frac{3599.435\,kJ}{0.16}

Q_{LP} = 22496.469\,kJ

A kilogram of LP gas has a minimum combustion power of 50028\,kJ. Then, the required mass is:  

m_{LP} = \frac{22496.469\,kJ}{50028\,\frac{kJ}{kg} }

m_{LP}=0.45\,kg

6 0
3 years ago
Befor operating any plant,machinery or equipment,you should​
SIZIF [17.4K]

Answer:

Always make sure that you are properly protected and that it is all clear to be operated on.

3 0
3 years ago
Read 2 more answers
Other questions:
  • In C++ the declaration of floating point variables starts with the type name float or double, followed by the name of the variab
    14·1 answer
  • Oil with a density of 800 kg/m3 is pumped from a pressure of 0.6 bar to a pressure of 1.4 bar, and the outlet is 3 m above the i
    9·1 answer
  • The textile industry has seen steady growth in the United States.<br> O True<br> O False
    12·1 answer
  • An Ideal gas is being heated in a circular duct as while flowing over an electric heater of 130 kW. The diameter of duct is 500
    11·1 answer
  • In a production turning operation, the foreman has decreed that a single pass must be completed on the cylindrical workpiece in
    7·1 answer
  • Guys, can you rate this toolbox, please. It is my DT project, made for car trips, what do you think of the idea/design/usability
    12·1 answer
  • Is microwave man made
    5·2 answers
  • Sort the following alphabets using MergeSort and give required steps. [2 Marks]
    9·1 answer
  • The term _______________refers to the science of using fluids to perform work.
    9·2 answers
  • Q1-A Lossless transmission line is 80 cm long and operates at a frequency of 500 MHz. Two line parameters are L=0.15μH/m and C=9
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!