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
Fofino [41]
3 years ago
11

The jib crane is supported by a pin at Cand rod AB. The rod can withstand a maximum tension of 40 kN. If the load has a mass of

2000 kg, with its center of mass located at G. Determine its maximum allowable distance x and the corresponding horizontal and vertical components of reaction at C.
Engineering
1 answer:
lakkis [162]3 years ago
6 0

Answer:

The maximum allowable distance = 5 m

Explanation:

Data:

There will be three forces on the jib. Let the forces be denoted as:

C_{x}, C_{y} and the force on pole AB

To find the angle AB makes with the horizontal beam:

tan^{-1}(\frac{3}{4}) = 36.8699

The load has a mass of 2 000 kg then, the force will be:

F = mg, where g = 9.81 m/s²

  = 2000* 9.81 = 19 620 N

Breaking AB into its x and y coordinates:

AB_{x}=ABcos(36.8699)\\AB_{y} = ABsin(36.8699)

Then,

∑M_{c} = 0

0 = (4)(AB sin (36.8699) + 0.2 (AB cos (36.8699) - (5*19620)\\AB = 38 320. 3 N

∑F_{x} = 0\\C_{x} = AB cos(36.8699)\\C_{x} = 30 656.2 N

∑F_{y} = 0\\C_{y} + AB sin (36.8699) - 19 620 = 0\\C_{y} = - 3 372.18 N

so the components of the forces will be 30 656.2 N and - 3 372.18 N

You might be interested in
At an impaired driver checkpoint, the time required to conduct the impairment test varies (according to an exponential distribut
professor190 [17]

Answer:

Option (d) 2 min/veh

Explanation:

Data provided in the question:

Average time required = 60 seconds

Therefore,

The maximum capacity that can be accommodated on the system, μ = 60 veh/hr

Average Arrival rate, λ = 30 vehicles per hour

Now,

The average time spent by the vehicle is given as

⇒ \frac{1}{\mu(1-\frac{\lambda}{\mu})}

thus,

on substituting the respective values, we get

Average time spent by the vehicle = \frac{1}{60(1-\frac{30}{60})}

or

Average time spent by the vehicle = \frac{1}{60(1-0.5)}

or

Average time spent by the vehicle = \frac{1}{60(0.5)}

or

Average time spent by the vehicle = \frac{1}{30} hr/veh

or

Average time spent by the vehicle = \frac{1}{30}\times60 min/veh

[ 1 hour = 60 minutes]

thus,

Average time spent by the vehicle = 2 min/veh

Hence,

Option (d) 2 min/veh

7 0
3 years ago
Manufacturing employees who perform assembly line work are referred to as
mamaluj [8]

Answer:

C. assembly line workers.

Explanation:

8 0
3 years ago
Read 2 more answers
8. Block A shown in the figure below weighs 2000 N. The chord attached to A passes over a
Kobotan [32]

Answer:

Read the passage. Then, answer the questions about the metaphor in boldface in the text.

Lately, I've been so overwhelmed with school and sports. There was a time when I enjoyed going to classes and going to practice every afternoon. Now, everything is piling up and wearing me down. Thankfully, I get to see you every day. You are truly the sunshine of my life. Thank you for making me laugh when I'm feeling down.

What is the context of the passage?

What is being compared in the metaphor?

What is the meaning of the metaphor?

Explanation:

4 0
2 years ago
What does snow fall from?
Klio2033 [76]

Answer:

Clouds

Explanation:

It is created by trapped dust and water.

4 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
Other questions:
  • Why is low voltage advantageous in arc welding?
    5·1 answer
  • A student is using a 12.9 ft ramp to raise an object 6 ft above the ground.
    5·1 answer
  • Que rol tiene el ecosistema el patos
    15·1 answer
  • the voltage across a 5mH inductor is 5[1-exp(-0.5t)]V. Calculate the current through the inductor and the energy stored in the i
    6·1 answer
  • The figure angle c measures 38°
    9·1 answer
  • The line touching the circle at a point ....................... is known as ........................... .
    12·1 answer
  • What is the friction factor for fully developed flow in a circular pipe where Reynolds number is 1000
    6·1 answer
  • How many steps are there in the problem-solving process?
    9·2 answers
  • Choose the correct word or phrase to complete the sentence to explain human intervention in a machine system.
    13·1 answer
  • Design an algorithm for computing √n
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!