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
Mumz [18]
3 years ago
5

Gear A has a mass of 1 kg and a radius of gyration of 30 mm; gear B has a mass of 4 kg and a radius of gyration of 75 mm; gear C

has a mass of 9 kg and a radius of gyration of 100 mm. The system is at rest when a couple M0 of constant magnitude 4 N, m is applied to gear C. Assuming that no slipping occurs between the gears, determine the number of revolutions required for disk A to reach an angular velocity of 288 rpm. (Round the final answer to three decimal places.)
The number of revolutions required for disk A to reach an angular velocity of 288 rpm is ________ rev.
Engineering
1 answer:
Kruka [31]3 years ago
6 0

Answer:

(4.5125 * 10^-3 kg.m^2)ω_A^2

Explanation:

solution:

Moments of inertia:

I = mk^2

Gear A: I_A = (1)(0.030 m)^2 = 0.9*10^-3 kg.m^2

Gear B: I_B = (4)(0.075 m)^2 = 22.5*10^-3 kg.m^2

Gear C: I_C = (9)(0.100 m)^2 = 90*10^-3 kg.m^2

Let r_A be the radius of gear A, r_1 the outer radius of gear B, r_2 the inner radius of gear B, and r_C the radius of gear C.

r_A=50 mm

r_1 =100 mm

r_2 =50 mm

r_C=150 mm

At the contact point between gears A and B,

r_1*ω_b = r_A*ω_A

ω_b = r_A/r_1*ω_A

       = 0.5ω_A

At the contact point between gear B and C.

At the contact point between gears A and B,

r_C*ω_C = r_2*ω_B

ω_C = r_2/r_C*ω_B

       = 0.1667ω_A

kinetic energy T = 1/2*I_A*ω_A^2+1/2*I_B*ω_B^2+1/2*I_C*ω_C^2

                           =(4.5125 * 10^-3 kg.m^2)ω_A^2

You might be interested in
Develop a chase plan that matches the forecast and compute the total cost of your plan. (Negative amounts should be indicated by
vladimir2022 [97]

Answer:

The answer for the question :

"Develop a chase plan that matches the forecast and compute the total cost of your plan. (Negative amounts should be indicated by a minus sign. Leave no cells blank - be certain to enter "0" wherever required. Omit the "$" sign in your response.)"

is explained in the attachment.

Explanation:

4 0
2 years ago
Preheat and postheating are necessary when welding gray cast iron. *<br> True<br> False
Zepler [3.9K]
True will be your answer have a great day
5 0
2 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
2 years ago
Race car is accelerating and has a velocity of 10 m/s @ t=0. It completes a lap on a circular track of 400 m in 14 seconds. Calc
wariber [46]

Answer:

component of acceleration are a = 3.37 m/s² and ar = 22.74 m/s²

magnitude of acceleration is  22.98 m/s²

Explanation:

given data

velocity = 10 m/s

initial time to = 0

distance s = 400 m

time t = 14 s

to find out

components and magnitude of acceleration after the car has travelled 200 m

solution

first we find the radius of circular track that is

we know  distance S = 2πR

400 = 2πR

R = 63.66 m

and tangential acceleration is

S = ut + 0.5 ×at²

here u is initial speed and t is time and S is distance

400 = 10 × 14  + 0.5 ×a (14)²

a = 3.37 m/s²

and here tangential acceleration is constant

so  velocity at distance 200 m

v² - u² = 2 a S

v² = 10² + 2 ( 3.37) 200

v = 38.05 m/s

so radial acceleration at distance 200 m

ar = \frac{v^2}{R}

ar = \frac{38.05^2}{63.66}

ar = 22.74 m/s²

so magnitude of total acceleration is

A = \sqrt{a^2 + ar^2}

A = \sqrt{3.37^2 + 22.74^2}

A = 22.98 m/s²

so magnitude of acceleration is  22.98 m/s²

8 0
3 years ago
In a team, a person’s efforts are less identifiable than when that person works independently. Because the person’s efforts are
Eduardwww [97]
The answer is deindividuation - a psychological state in which a person does not feel individual responsibility.
3 0
3 years ago
Other questions:
  • When encountering low visibility from rain or fog, you should use your ____.
    12·1 answer
  • Suppose you are designing a sliding window protocol for a 1 Mbps point-to-point link to the moon, which has a one-way latency of
    10·1 answer
  • A 625 g basketball and a 58.5 g tennis ball are dropped from a height of d = 1.5 m onto the floor. The coefficient of restitutio
    10·1 answer
  • A 15-ft beam weighing 570 lb is lowered by means of two cables unwinding from overhead cranes. As the beam approaches the ground
    9·1 answer
  • An inventor tries to sell you his new heat engine that takes in 40 J of heat at 87°C on each cycle, expels 30 J at 27°C, and doe
    14·1 answer
  • Help now please evaluate using the commutative property: 40 (32) (10) (25)
    8·1 answer
  • In fully developed laminar flow in a circular pipe the velocity at R/2 (mid-way between the wall surface and the centerline) is
    10·2 answers
  • For an isotropic material, E and ν are often chosen as the two independent engineering constants. There are other elastic consta
    9·1 answer
  • Brainly and points if you want
    13·2 answers
  • Examples of reciprocating motion in daily life
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!