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
Ivan
3 years ago
5

An electric motor is to be supported by four identical mounts. Each mount can be treated as a linear prevent problems due requir

ed that the amplitude of motion should not exceed 0.1 mm per 1 N of unbalance force. The mass of the motor is 120 kg and the operating speed is 720 rpm Use the concept of transfer function to determine the required stiffhess coefficient of each mount.
Engineering
1 answer:
Artyom0805 [142]3 years ago
8 0

GIVEN:

Amplitude, A = 0.1mm

Force, F =1 N

mass of motor, m = 120 kg

operating speed, N = 720 rpm

\frac{A}{F} =  \frac{0.1\times 10^{-3}}{1} = 0.1\times 10^{-3}

Formula Used:

A = \frac{F}{\sqrt{(K_{t} - m\omega ^{2}) +(\zeta \omega ^{2})}}

Solution:

Let Stiffness be denoted by 'K' for each mounting, then for 4 mountings it is 4K

We know that:

\omega = \frac{2 \pi\times N}{60}

so,

\omega = \frac{2 \pi\times 720}{60} = 75.39 rad/s

Using the given formula:

Damping is negligible, so, \zeta = 0

\frac{A}{F} will give the tranfer function

Therefore,

\frac{A}{F} = \frac{1}{\sqrt{(4K - 120\ ^{2})}}

0.1\times 10^{-3} =  \frac{1}{\sqrt{(4K - 120\ ^{2})}}

Required stiffness coefficient, K = 173009 N/m = 173.01 N/mm

You might be interested in
Along with refining craft skills another way to increase the odds for career advancement is to
Xelga [282]

The acquisition of additional certifications with a personal refined craft skills can increase the odds for career advancemen.

<h3>What is a career advancement?</h3>

An advancement is achieved in a career if a professional use their skill sets, determination or perserverance to achieve new career height.

An example of a career advancement is when an employee progresses from entry-level position to management and transits from an occupation to another.

Therefore, the Option A is correct.

Read more about career advancement

<em>brainly.com/question/7053706</em>

7 0
2 years ago
Roads in rural areas are _______.
Roman55 [17]

Answer:

Explanation:

Mountain roads often zigzag across a mountain with a series of sharp turns called. switchbacks.

6 0
3 years ago
Read 2 more answers
Suppose you have two boxes in front of you. One box contains a Thevenin Equivalent (voltage source in series with a resistor) an
fomenos

Answer:

1. Measure the temperature of the boxes and leave them unconnected.

2. Norton reduces his circuit down to a single resistance in parallel with a constant current source. A real-life Norton equivalent circuit would be continuously wasting power (as heat) as the current source dumps energy into the resistor, even when externally unconnected, while a Thevenin equivalent circuit would sit there doing nothing.

3. The Norton equivalent box would get warm and eventually run out of power. The Thevenin equivalent box would stay at ambient temperature.

8 0
3 years ago
15
AveGali [126]

Answer:

b

Explanation:

4 0
3 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
3 years ago
Other questions:
  • The wheel and the attached reel have a combined weight of 50lb and a radius of gyration about their center of 6 A k in = . If pu
    9·1 answer
  • How was math used to determine new origami crease plans?
    10·1 answer
  • A 2.2-kg model rocket is launched vertically and reaches an altitude of 70 m with a speed of 30 m/s at the end of powered flight
    5·1 answer
  • A truck is hauling a 300-kg log out of a ditch using a winch attached to the back of the truck. Knowing the winch applies a cons
    14·1 answer
  • For an irreversible isothermal process occured in a system with temperature T, which following expression best evaluates the cha
    11·1 answer
  • A cantilever beam of length L = 70 in is made from two side-by-side structural-steel channels of size 3 in weighing 5.0 lbf/ft.
    9·1 answer
  • Tech a says the higher the numarical gear ratio (4:1), the more torque that will be applied to the wheels. Tech b says that the
    13·2 answers
  • How do you solve this. I dont know how so I need steps if you dont mind
    13·1 answer
  • Explain the problems and their possible solution for electricity problems ?​
    8·1 answer
  • A student used a 500-ml graduated cylinder to measure the volume of water in a 1-cup measure. three trials of the measurement ga
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!