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
erastova [34]
3 years ago
15

The cantilevered W530 x 150 beam shown is subjected to a 9.8-kN force F applied by means of a welded plate at A. Determine the e

quivalent force-couple system at the centroid of the beam cross-section at the cantilever O.

Engineering
1 answer:
snow_lady [41]3 years ago
4 0

The <em>equivalent force-couple system</em> at O is the force and couple experienced when at point O due to the applied force at point A

The <em>equivalent force couple</em> system at O due to force <em>F</em> are;

Force, F =  (<u>8.65·i - 4.6·j</u>) KN

Couple, M₀ ≈ <u>40.9 </u>k kN·m

The reason the above values are correct is as follows:

The known values for the <em>cantilever</em> are;

The <em>height </em>of the beam = 0.65 m

The <em>magnitude of </em>the applied <em>force</em>, F = 9.8 kN

The <em>length </em>of the beam = 4.9 m

The <em>angle </em>away from the vertical the force is applied = 26°

The required parameter:

The <em>equivalent force-couple system</em> at the centroid of the beam cross-section of the cantilever

Solution:

The <em>equivalent force-couple system</em> is the force-couple system that can replace the given force at centroid of the beam cross-section at the cantilever O ;

The <em>equivalent force</em> \overset \longrightarrow F = 9.8 kN × cos(28°)·i - 9.8 kN × sin(28°)·j

Which gives;

The <em>equivalent force</em> \overset \longrightarrow F ≈ (<u>8.65·i - 4.6·j</u>) KN

The <em>couple </em><em>acting </em>at point O due to the force <em>F</em> is given as follows;

The <em>clockwise moment</em> = <em>9.8 kN × cos(28°) × 4.9</em>

The <em>anticlockwise moment</em> = <em>9.8 kN × sin(28°) 0.65/2 </em>

The sum of the moments = Anticlockwise moment - Clockwise moments

∴ The <em>sum </em>of the moments, ∑M, gives the moment acting at point O as follows;

M₀ = <em>9.8 kN × sin(28°) 0.65/2 - 9.8 kN × cos(28°) × 4.9</em>  ≈ 40.9 kN·m

The couple acting at O, due to F,  M₀ ≈ <u>40.9 kN·m</u>

The equivalent force couple system acting at point O due the force, F, is as follows

F =  (8.65·i - 4.6·j) KN

M₀ ≈ <u>40.9 </u>k kN·m

Learn more about equivalent force systems here:

brainly.com/question/12209585

You might be interested in
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
Pedro holds a heavy science book over his head for 10 minutes. Petro is doing work during that time. True or False
algol [13]

Answer:

True because he is working his arms to lift and hold the weight

Explanation:

4 0
3 years ago
4. What are these parts commonly called?
patriot [66]

These parts are commonly called carburetor emulsion tubes. These tubes maintain the air-fuel ratio at different speeds.

The carburetor is a device of the combustion engine power supply system that mixes fuel and air in order to facilitate internal combustion.

The carburetor emulsion tubes are tubes that maintain the air-fuel ratio at different velocities.

These tubes (carburetor emulsion tubes) are small brass cylinders where the metering needle slides into them.

Learn more about carburetors here:

brainly.com/question/4237015

7 0
3 years ago
Identify factors that can cause a process to become out of control. Give several examples of such factors.
Oliga [24]

Answer:

Explained

Explanation:

This situation can occur because of various factors such as:

  • Gradual deterioration of lubrication and coolant.
  • change of environmental condition such as temperature, humidity, moisture, etc.
  • Change in the properties of incoming raw material
  • An increase or decrease in the temperature of the heat treating operation
  • Debris interfering with the manufacturing process.
4 0
3 years ago
What should be given to a customer before doing a repair?
natima [27]
A. I believe, lmk if I’m right
7 0
3 years ago
Other questions:
  • If a ball is dropped from a height​ (H) its velocity will increase until it hits the ground​ (assuming that aerodynamic drag due
    5·1 answer
  • A cylindrical specimen of a hypothetical metal alloy is stressed in compression. If its original and final diameters are 30.00 a
    14·1 answer
  • A hollow aluminum sphere, with an electrical heater in the center, is used in tests to determine the thermal conductivity of ins
    14·2 answers
  • A car is about to start but it blows up. what is the problem with the car<br> ?
    6·2 answers
  • A circuit contains four 100 ohm resistors connected in series. If you test the circuit with a DMM you should read a total resist
    14·1 answer
  • Filler metals range in diameter from 1/16" to 3/8"*<br> O<br> true<br> O False
    15·1 answer
  • Where do you prefer to live?
    5·2 answers
  • in the multiple pipe system shown below, which of the following is true concerning the linear system?.
    14·1 answer
  • In which of the following states would homes most likely have the deepest foundation?
    13·1 answer
  • Calculate the acceleration of a 2000kg single engine airlane just before take off when the thrust of the engine is 500n?
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!