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
ozzi
3 years ago
15

Q1) Determine the force in each member of the

Engineering
1 answer:
Sever21 [200]3 years ago
8 0

Answer:

  • CD = DE = DF = 0
  • BC = CE = 15 N tension
  • FA = 15 N compression
  • CF = 15√2 N compression
  • BF = 25 N tension
  • BG = 55/2 N tension
  • AB = (25√5)/2 N compression

Explanation:

The only vertical force that can be applied at joint D is that of link CD. Since joint D is stationary, there must be no vertical force. Hence the force in link CD must be zero, as must the force in link DE.

At joint E, the only horizontal force is that applied by link EF, so it, too, must be zero.

Then link CE has 15 N tension.

The downward force in CE must be balanced by an upward force in CF. Of that force, only 1/√2 of it will be vertical, so the force in CF is a compression of 15√2 N.

In order for the horizontal forces at C to be balanced the 15 N horizontal compression in CF must be balanced by a 15 N tension in BC.

At joint F, the 15 N horizontal compression in CF must be balanced by a 15 N compression in FA. CF contributes a downward force of 15 N at joint F. Together with the external load of 10 N, the total downward force at F is 25 N. Then the tension in BF must be 25 N to balance that.

At joint B, the 25 N downward vertical force in BF must be balanced by the vertical component of the compressive force in AB. That component is 2/√5 of the total force in AB, which must be a compression of 25√5/2 N.

The <em>horizontal</em> forces at joint B include the 15 N tension in BC and the 25/2 N compression in AB. These are balanced by a (25/2+15) N = 55/2 N tension in BG.

In summary, the link forces are ...

  • (25√5)/2 N compression in AB
  • 15 N tension in BC
  • 25 N tension in BF
  • 0 N in CD, DE, and EF
  • 15 N tension in CE
  • 15√2 compression in CF
  • 15 N compression in FA

_____

Note that the forces at the pins of G and A are in accordance with those that give a net torque about those point of 0, serving as a check on the above calculations.

You might be interested in
What is stress corrosion cracking?
aksik [14]

Answer:

The growth of crack formation in a corrosive environment.

Explanation:

6 0
3 years ago
Who's your favorite singer and WHT your favorite song​
Anna007 [38]

Answer:

and my favorite song is popular loner

Explanation:

my favorite rapper is rod wave

6 0
3 years ago
Read 2 more answers
Which bulb has the lowest total cost of operation? (a) Incandescent (b) Fluorescent (c) LED
Finger [1]

Answer: LED have the lowest cost of operation.

Explanation:

If we ignore the initial procurement cost of the items the operational cost of any device consuming electricity is given by

Cost=Energy\times cost/unit

Among the three item's LED consumes the lowest power to give the same level of brightness as compared to the other 2 item's thus LED's shall have the lowest operational cost.

6 0
4 years ago
computer language C++ (Connect 4 game)( this is all the info that was givin no input or solution) I used the most recent version
Mariana [72]

Answer:

C++ code explained below

Explanation:

#include "hw6.h"

//---------------------------------------------------

// Constructor function

//---------------------------------------------------

Connect4::Connect4()

{

ClearBoard();

}

//---------------------------------------------------

// Destructor function

//---------------------------------------------------

Connect4::~Connect4()

{

// Intentionally empty

}

//---------------------------------------------------

// Clear the Connect4 board

//---------------------------------------------------

void Connect4::ClearBoard()

{

// Initialize Connect4 board

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

board[r][c] = ' ';

// Initialize column counters

for (int c = 0; c < COLS; c++)

count[c] = 0;

}

//---------------------------------------------------

// Add player's piece to specified column in board

//---------------------------------------------------

bool Connect4::MakeMove(int col, char player)

{

// Error checking

if ((col < 0) || (col >= COLS) || (count[col] >= ROWS))

return false;

// Make move

int row = count[col];

board[row][col] = player;

count[col]++;

return true;

}

//---------------------------------------------------

// Check to see if player has won the game

//---------------------------------------------------

bool Connect4::CheckWin(char player)

{

// Loop over all starting positions

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

if (board[r][c] == player)

{

// Check row

int count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) &&

(board[r+d][c] == player)) count++;

if (count == WIN) return true;

 

// Check column

count = 0;

for (int d = 0; d < WIN; d++)

if ((c+d < COLS) &&

(board[r][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check first diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) && (c+d < COLS) &&

(board[r+d][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check second diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r-d >= 0) && (c+d < COLS) &&

(board[r-d][c+d] == player)) count++;

if (count == WIN) return true;

}

return false;

}

//---------------------------------------------------

// Print the Connect4 board

//---------------------------------------------------

void Connect4::PrintBoard()

{

// Print the Connect4 board

for (int r = ROWS-1; r >= 0; r--)

{

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw board contents

cout << "| ";

for (int c = 0; c < COLS; c++)

cout << board[r][c] << " | ";

cout << "\n";

}

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw column numbers

cout << " ";

for (int c = 0; c < COLS; c++)

cout << c << " ";

cout << "\n\n";

}

//---------------------------------------------------

// Main program to play Connect4 game

//---------------------------------------------------

int main()

{

  int choice;

  int counter = 0;

  srand (time(NULL));

  Connect4 board;

  cout << "Welcome to Connect 4!" << endl << "Your Pieces will be labeled 'H' for human. While the computer's will be labeled 'C'" << endl;

  board.PrintBoard();

  cout << "Where would you like to make your first move? (0-6)";

  cin >> choice;

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  while (board.CheckWin('C') == false && board.CheckWin('H') == false && counter != 21){

  while (board.MakeMove(rand() % 7, 'C') == false){}

  board.PrintBoard();

  cout << "Where would you like to make your next move?" << endl;

  cin >> choice;

  board.MakeMove(choice,'H');

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  }

 

  if (board.CheckWin('C')){

  cout << "Computer Wins!" << endl;}

  else if (counter == 21){cout << "Tie Game!" << endl;}

  else {cout << "Human Wins!" << endl;}

  board.PrintBoard();

}

4 0
3 years ago
Fast plz-The mirror check may involve ______________.
barxatty [35]

Answer:

Realigning the mirror

Explanation:

mirrors should be aligned to minimize blind spots, not look at the tires.

6 0
3 years ago
Other questions:
  • Find the thickness of the material that will allow heat transfer of 6706.8 *10^6 kcal during the 5 months through the rectangle
    8·1 answer
  • A spherical seed of 1 cm diameter is buried at a depth of 1 cm inside soil (thermal conductivity of 1 Wm-1K-1) in a sufficiently
    14·1 answer
  • If the resistance reading on a DMM'S meter face is to 22.5 ohms in the range selector switch is set to R X 100 range, what is th
    5·1 answer
  • A 5000-lb truck is being used to lift a 1000-lb boulder B that is on a 200-lb pallet A. Knowing that the truck starts from rest
    8·1 answer
  • if a voltage is applied to a capacitor, current flows easily at first and then slows as the capacitor becomes charged. Inductors
    5·1 answer
  • Think of an employee object. What are several of the possible states that the object may have over time?
    6·1 answer
  • Which of the following was a sustainable power source used during the Middle Ages?
    9·2 answers
  • Which of the following can not be used to store an electrical charge?
    11·1 answer
  • Help please i will give brainlist
    9·2 answers
  • A bridge a mass of 800 kg and is able to support up to 4 560 kg. What is its structural efficiency?
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!