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
Len [333]
2 years ago
14

A solid steel shaft ABCDE turns freely in bearings at points A and E. The shaft is driven by the gear at C, which applies a torq

ue T2 5 325 lb-ft. Gears at B and D are driven by the shaft and have resisting torques T1 5 200 lb-ft and T3 5125 lb-ft, respectively. Segments BC and CD have lengths LBC 5 20 in. and LCD 515 in. and the shear modulus G 511,600 ksi. Determine the minimum required diameter (d) of the shaft if the allowable shear stress t a 56 ksi. Also calculate the angle of twist between gears B and D.
Engineering
1 answer:
SOVA2 [1]2 years ago
7 0

Answer:

Hello your question is poorly written  below is the well written question and the diagram attached to your question is attached below as w ell

A solid steel shaft ABCDE turns freely in bearings at points A and E. The shaft is driven by the gear at C, which applies a torque T2 325 lb-ft. Gears at B and D are driven by the shaft and have resisting torques T1  200 lb-ft and T3 125 lb-ft, respectively. Segments BC and CD have lengths LBC  20 in. and LCD 15 in. and the shear modulus G 11,600 ksi. Determine the minimum required diameter (d) of the shaft if the allowable shear stress t a 56 ksi. Also calculate the angle of twist between gears B and D.

answer :

a) d ≈ 12.7 inches

b) ∅bc = 1.62 * 10^-3 rad

   ∅cd = 7.59 * 10^-4 rad

Explanation:

Given data :

G = 11600 ksi

Ta11 = 6 ksi

<u>a)  determine the minimum  required diameter </u>

Apply the relation below

Toc / Ip = Ta11 / R  = G*∅ / L

∴ Ip =  Tbc * R / Ta11

  π / 32 *  (d)^4 = [ ( 200 * 12 ) * ( d/2 )]  / 6

therefore : d = 12.7 inches

<u>b) determine angle of twist between gears B and D </u>

attached below is the detailed solution

) ∅bc = 1.62 * 10^-3 rad

   ∅cd = 7.59 * 10^-4 rad

You might be interested in
Ordan has _ 5 8 can of green paint and _ 3 6 can of blue paint. If the cans are the same size, does Jordan have more green paint
Morgarella [4.7K]

Answer:

Jordan has more green paints

Explanation:

Given

Green = \frac{5}{8}

Blue = \frac{3}{6}

Required

Which paint does he have more?

For better understanding, it's better to convert both measurements to decimal.

For the green paint:

Green = \frac{5}{8}

Green = 0.625

For the blue paint:

Blue = \frac{3}{6}

Blue = 0.5

By comparison:

0.625 > 0.5

<em>This means that Jordan has more green paints</em>

3 0
3 years ago
The section should span between 10.9 and 13.4 cm (4.30 and 5.30 inches) as measured from the end supports and should be able to
Sergeeva-Olga [200]

Answer:

hello below is missing piece of the complete question

minimum size = 0.3 cm

answer : 0.247 N/mm2

Explanation:

Given data :

section span : 10.9 and 13.4 cm

minimum load applied evenly to the top of span  : 13 N

maximum load for each member ; 4.5 N

lets take each member to be 4.2 cm

Determine the max value of P before truss fails

Taking average value of section span ≈ 12 cm

Given minimum load distributed evenly on top of section span = 13 N  

we will calculate the value of   by applying this formula

= \frac{Wl^2}{12}  =  (0.013 * 0.0144 )/ 12  =  1.56 * 10^-5

next we will consider section ; 4.2 cm * 0.3 cm

hence Z (section modulus ) = BD^2 / 6  

                                             = ( 0.042 * 0.003^2 ) / 6  = 6.3*10^-8

Finally the max value of P( stress ) before the truss fails

= M/Z = ( 1.56 * 10^-5 ) / ( 6.3*10^-8 )  

          = 0.247 N/mm2

5 0
2 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
2 years ago
How many GT2RS cars were made in 2019
labwork [276]

Answer:

1000

Explanation:

3 0
3 years ago
Read 2 more answers
You don't have to notify employees that a lockout/tagout is about to begin?
Sergeu [11.5K]

Answer:

When the imposter is sus : O

Explanation:

3 0
3 years ago
Other questions:
  • 9 b. A sign (including the post and base) weighs 40 pounds and is
    8·1 answer
  • 3) What kind of bridges direct their load along it's curve and into the
    12·1 answer
  • You are watching the weather forecast and the weatherman says that strong thunderstorms and possible tornadoes are likely to for
    15·1 answer
  • What is a quasi-equilibrium process? What is its importance in engineering?
    14·1 answer
  • Determine the magnitude and the location of the hydrostatic force on the 2m by 4 m vertical rectangular gate shown in Figure P3.
    12·1 answer
  • Who does each person work for? Monica works for a power company, Travis works for a utilities company, and Maggie is self-employ
    15·2 answers
  • Software that is released to have users test out the "bugs" is known as Ransomeware O Break-in software 2 O Flim flam software O
    15·1 answer
  • Whats the purpose of the keyway
    13·1 answer
  • Why do the quadrants in coordinate plane go anti-clockwise?.
    6·1 answer
  • What person at the construction worksite keeps workers safe from asbestos exposure?
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!