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
hodyreva [135]
3 years ago
7

A fully braced structural member in a building is subjected to several different loads, including roof loads of D = 5 k and L_r

= 7 k; floor loads of D = 6 k and occupancy L = 15 k; S = 18 k; and W = 17 k and E = 12 k (resulting from overturning forces on the lateral-force-resisting system). Consider the ASD load combinations described in Sec. 2.17 and assume the wind and seismic loads act in the same direction as the gravity toads. Find: The critical ASD combination of loads.

Engineering
1 answer:
allochka39001 [22]3 years ago
7 0

Answer: 37.4K

Explanation:

See attachment

You might be interested in
Technician A says that 5W-30 would be better to use than 20W-50 in most vehicles in
shtirl [24]
Technician is correct sorry if im wronghg
5 0
3 years ago
Read 2 more answers
A 14 inch diameter pipe is decreased in diameter by 2 inches through a contraction. The pressure entering the contraction is 28
Delicious77 [7]

Answer:

5984.67N

Explanation:

A 14 inch diameter pipe is decreased in diameter by 2 inches through a contraction. The pressure entering the contraction is 28 psi and a pressure drop of 2 psi occurs through the contraction if the upstream velocity is 4.0 ft/sec. What is the magnitude of the resultant force (lbs) needed to hold the pipe in place?

from continuity equation

v1A1=v2A2

equation of continuity

v1=4ft /s=1.21m/s

d1=14 inch=.35m

d2=14-2=0.304m

A1=pi*d^2/4

0.096m^2

a2=0.0706m^2

from continuity once again

1.21*0.096=v2(0.07)

v2=1.65

force on the pipe

(p1A1- p2A2) + m(v2 – v1)

from bernoulli

p1 + ρv1^2/2 = p2 + ρv2^2/2

difference in pressure or pressure drop

p1-p2=2psi

13.789N/m^2=rho(1.65^2-1.21^2)/2

rho=21.91kg/m^3

since the pipe is cylindrical

pressure is egh

13.789=21.91*9.81*h

length of the pipe is

0.064m

AH=volume of the pipe(area *h)

the mass =rho*A*H

0.064*0.07*21.91

m=0.098kg

(193053*0.096- 179263.6* 0.07) + 0.098(1.65 – 1.21)

force =5984.67N

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
1. A 260 ft (79.25 m) length of size 4 AWG uncoated copper wire operating at a tem-
Murljashka [212]

A 260 ft (79.25m) length of size 4 AWG uncoated copper wire operating at a temperature of 75°c has a resistance of 0.0792 ohm.

Explanation:

From the given data the area of size 4 AWG of the code is 21.2 mm², then K is the Resistivity of the material at 75°c is taken as ( 0.0214 ohm mm²/m ).

To find the resistance of 260 ft (79.25 m) of size 4 AWG,

R= K * L/ A

K = 0.0214 ohm mm²/m

L = 79.25 m

A = 21.2 mm²

R = 0.0214 * \frac{79.25}{21.2}

  = 0.0214 * 3.738

  = 0.0792 ohm.

Thus the resistance of uncoated copper wire is 0.0792 ohm

5 0
3 years ago
Whats the best used for cable -stayed bridge
nalin [4]

Answer:

a cable -stayed bridge has, one or more towers,from which cable support the bridge deck.

7 0
3 years ago
Other questions:
  • Why research and development in Maintenance Engineering?
    6·1 answer
  • A compression ignition engine when tested gave an indicator card having area 3250mm^2 and length 73mm. The calibration factor wa
    10·1 answer
  • a) Give a brief description of the type of DC motor that operates with its field windings running in Series with the armature an
    10·1 answer
  • The four strokes in a four stroke cycle engine in proper order.
    7·1 answer
  • The news media often report an earthquake's magnitude on the Richter scale. Which of the following items are characteristics of
    14·1 answer
  • Two technicians are discussing a vehicle that will not start. Tech A states that a problem with the immobilizer system may be th
    9·1 answer
  • In the fully developed region of flow in a circular pipe, does the velocity profile change in the flow direction?
    6·1 answer
  • i need jacket for my daughter who will be going on a girls scouts camping trip it cannot be bulky because she is limited to one
    8·2 answers
  • What is an advantage of a nuclear-fission reactor?.
    11·1 answer
  • What is differentiation​
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!