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
34kurt
3 years ago
11

What are the controlling LRFD load combinations for dead and floor live load?

Engineering
1 answer:
yuradex [85]3 years ago
3 0

Answer:

1) 1.4(D + F)

2) 1.2(D + F + T) + 1.6(L + H) + 0.5(Lr or S or R)

3) 1.2D + 1.6(Lr or S or R) + ((0.5 or 1.0)*L or 0.8W)

4) 1.2D + 1.6W + (0.5 or 1.0)*L + 0.5(Lr or S or R)

5) 1.2D + 1.0E + (0.5 or 1.0)*L + 0.2S

6) 0.9D + 1.6W + 1.6H

7) 0.9D + 1.0E + 1.6H

Explanation:

Load and Resistance Factor Design

there are 7 basic load combination of LRFD that is

1) 1.4(D + F)

2) 1.2(D + F + T) + 1.6(L + H) + 0.5(Lr or S or R)

3) 1.2D + 1.6(Lr or S or R) + ((0.5 or 1.0)*L or 0.8W)

4) 1.2D + 1.6W + (0.5 or 1.0)*L + 0.5(Lr or S or R)

5) 1.2D + 1.0E + (0.5 or 1.0)*L + 0.2S

6) 0.9D + 1.6W + 1.6H

7) 0.9D + 1.0E + 1.6H

and

here load factor for L given ( * ) mean it is  permitted = 0.5 for occupancies when live load is less than or equal to 100 psf

here

D is dead load and L is live load

E is earth quake load and S is snow load

W is wind load and R is rain load

Lr is roof live load

You might be interested in
The entire system of components that produces power and transmits it to the road is called the vehicle's _____.
IrinaK [193]

Answer:

Powertrain

Explanation:

6 0
3 years ago
Can u say what’s this
tatuchka [14]

Answer:

particles of a solid object packed together

7 0
3 years ago
Read 2 more answers
Every two years or at recommendation by manufacturer.
9966 [12]

Answer:

Manufacturer’s Recommendations means the instructions, procedures, and recommendations which are issued by the manufacturer of any equipment used at the Facility relating to the operation, maintenance, or repair of such equipment, and any revisions or updates thereto from time to time issued by the manufacturer.

Manufacturer’s Recommendations means the instructions, procedures and recommendations which are issued by any manufacturer of the Equipment relating to the operation, maintenance and repair of the Equipment and any revisions to such instructions, procedures and recommendations agreed to by any manufacturer of the Equipment and which are valid at the time such operation, repair and maintenance is being carried out.

Manufacturer’s Recommendations means the written instructions, procedures and recommendations which are issued by the original equipment manufacturer of any plant or equipment used at the Utility Plant relating to the operation, maintenance and repair of such plant or equipment and any revisions thereto issued by the manufacturer, which are valid and applicable at the time such operation, maintenance or repair is undertaken. Notwithstanding the above, Manufacturer’s Recommendations shall not include any instructions, procedures or recommendations of a manufacturer of any plant or equipment that the Owner and the Operator have agreed in writing to exclude from this definition or have agreed in writing should not be followed.

Explanation:

4 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
Consider this example of a recurrence relation. A police officer needs to patrol a gated community. He would like to enter the g
SashulF [63]

Answer:

the police officer cruise each streets precisely once and he enters and exit with the same gate.

Explanation:

NB: kindly check below for the attached picture.

The term ''Euler circuit'' can simply be defined as the graph that shows the edge of K once in a finite way by starting and putting a stop to it at the same vertex.

The term "Hamiltonian Circuit" is also known as the Hamiltonian cycle which is all about a one time visit to the vertex.

Here in this question, the door is the vertex and the road is the edge.

The information needed to detemine a Euler circuit and a Hamilton circuit is;

"the police officer cruise each streets precisely once and he enters and exit with the same gate."

Check attachment for each type of circuit and the differences.

7 0
3 years ago
Other questions:
  • A large part in a turbine-generator unit operates near room temperature and is made of ASTM A470-8 steel ( ). A surface crack ha
    11·1 answer
  • A hypothetical A-B alloy of composition 57 wt% B-43 wt% A at some temperature is found to consist of mass fractions of 0.5 for b
    15·1 answer
  • Who invented a control unit for an artificial heart?<br> ements<br> ante
    8·1 answer
  • ⚠️Answer needed quick!!⚠️
    5·1 answer
  • Which of the following is an essential component of reinforced concrete?
    9·1 answer
  • For some transformation having kinetics that obey the Avrami equation, the parameter n is known to have a value of 2. If, after
    14·1 answer
  • thanh thẳng AD có kích thước và chịu lực như hình.biết P1 = 10kn, p2=5kn,M=15kn*m,a=2m.Hãy xách định phản lực liên kết tại A,b
    14·1 answer
  • Hey friends.... ajao bat Kare ✌️✌️❤️​
    7·2 answers
  • Which of the following is most likely to require changes to existing zoning laws?
    13·1 answer
  • What is resonance as in ultrasound waves formation using magnetostriction method​
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!