Forces on a Mechnical System (Spring, Damper etc )

AI Thread Summary
The discussion focuses on deriving equations for a mechanical system involving springs and dampers in the Laplace domain. Participants express confusion about the direction of forces acting on the masses and how to properly account for the effects of dampers and springs in their equations. Clarifications are provided regarding the interpretation of velocity differences, with emphasis on how these differences affect whether forces are tensile or compressive. The importance of free body diagrams is highlighted to better understand the forces acting on each mass. Overall, the conversation aims to solidify understanding of force balance in mechanical systems.
jegues
Messages
1,085
Reaction score
3

Homework Statement



Write equations that could be used to solve for, V_{1}(s) \quad , \quad V_{2}(s) in the Laplace domain for the mechanical system shown in the figure attached.

Homework Equations





The Attempt at a Solution



I think I understand most of the problem, but I think I am confused about the direction of the forces.

I am looking to write two equations as follows,

\sum \text{Forces on M1} = 0 \quad , \quad \sum \text{Forces on M2} = 0

First,

\sum \text{Forces on M1} = 0

b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t)) + M_{1}\frac{dv_{1}(t)}{dt} = r(t)

Second,

\sum \text{Forces on M2} = 0

b_{1}(v_{2}(t) - v_{1}(t)) + k\int v_{2}(t) dt + M_{2}\frac{dv_{2}(t)}{dt} = 0

Here are the things I am confused about,

  1. For the forces on the dampers, how do I figure out whether it is (v2-v1) or (v1-v2) in each of the two cases?
  2. Why is the force from the spring not considered in the first equation, i.e. summation of forces on M1?

I am capable of completing the rest of the problem without any issues, but I just want to clarify my understanding with regards to those two questions.
 

Attachments

  • MassSystem.JPG
    MassSystem.JPG
    17.2 KB · Views: 494
Physics news on Phys.org
jegues said:

Homework Statement



  1. For the forces on the dampers, how do I figure out whether it is (v2-v1) or (v1-v2) in each of the two cases?
  2. Why is the force from the spring not considered in the first equation, i.e. summation of forces on M1?

I am capable of completing the rest of the problem without any issues, but I just want to clarify my understanding with regards to those two questions.

First question 2: If you isolate M1 as a free body, the spring is not connected to M1 and is not exerting a force on it.

Question 1: If the velocity difference makes the dashpot get bigger, then the force is tensile. If the velocity difference makes the dashpot smaller, then the force is compressive.
 
Hi Chestermiller! :smile:

Chestermiller said:
First question 2: If you isolate M1 as a free body, the spring is not connected to M1 and is not exerting a force on it.

Question 1: If the velocity difference makes the dashpot get bigger, then the force is tensile. If the velocity difference makes the dashpot smaller, then the force is compressive.

The answer to question 2 is clear, but I am still confused about question 1.

Let's take the damper b2 as an example.


If the velocity difference makes the dashpot get bigger, then the force is tensile.

There are two possible velocity differences

v_{1}(t) - 0, \quad \text{or} \quad 0 - v_{1}(t)

I'm confused as to how to interpret these two velocity differences. How are you supposed to know which difference makes the dashpot bigger or smaller without knowing whether the velocity is positive or negative?

If you assume its positive, then how would we interpret the first velocity difference? Are we saying that the bottom portion of the dashpot is moving down faster than the top portion of the dashpot effectively making the dashpot bigger, thus tencile force upwards?

I think I am understanding something backwards.
 
jegues said:
Hi Chestermiller! :smile:



There are two possible velocity differences

v_{1}(t) - 0, \quad \text{or} \quad 0 - v_{1}(t)

I'm confused as to how to interpret these two velocity differences. How are you supposed to know which difference makes the dashpot bigger or smaller without knowing whether the velocity is positive or negative?

If you assume its positive, then how would we interpret the first velocity difference? Are we saying that the bottom portion of the dashpot is moving down faster than the top portion of the dashpot effectively making the dashpot bigger, thus tencile force upwards?

I think I am understanding something backwards.
If the bottom portion of the dashpot is moving down faster than the top portion of the dashpot, then the dashpot is in tension, and wires or bars connecting it to the ceiling and to mass M1 are in tension. The wire connected to the ceiling is pulling downward with a force of b2v1, and the wire connected to the mass is pulling upward with a force of b2v1.
 
Chestermiller said:
the wire connected to the mass is pulling upward with a force of b2v1.

If this is the case, and,

M_{1}\frac{dv_{1}(t)}{dt}

is a force acting on the mass in the downwards direction, then how are the forces on the same side of the equation with the same sign?

i.e. b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t)) + M_{1}\frac{dv_{1}(t)}{dt} = r(t)
 
jegues said:
If this is the case, and,

M_{1}\frac{dv_{1}(t)}{dt}

is a force acting on the mass in the downwards direction, then how are the forces on the same side of the equation with the same sign?

i.e. b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t)) + M_{1}\frac{dv_{1}(t)}{dt} = r(t)

Still looking for clarification on this!
 
jegues said:
If this is the case, and,

M_{1}\frac{dv_{1}(t)}{dt}

is a force acting on the mass in the downwards direction, then how are the forces on the same side of the equation with the same sign?

i.e. b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t)) + M_{1}\frac{dv_{1}(t)}{dt} = r(t)
M_{1}\frac{dv_{1}(t)}{dt} is not an actual force acting on the mass. Mathematically, according to Newton's second law, M_{1}\frac{dv_{1}(t)}{dt} is the difference between the actual forces acting in the downward direction and the actual forces acting in the upward direction. Draw a free body diagram showing M1. There are two forces acting in the upward direction, and one force acting in the downward direction.

Forces acting in downward direction = r(t)

Sum of forces acting in upward direction=b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t))

Maybe it would help if the force balance equation were expressed in the following equivalent form:
M_{1}\frac{dv_{1}(t)}{dt} = r(t)-(b_{2}(v_{1}(t) - 0) + b_{1}(v_{1}(t) - v_{2}(t)))
 
Hi again Chestermiller! :smile:

Thank you for your explanation, things are much more clear now!

I tried to apply my new knowledge to a separate problem just to make sure its clear in my head! (See figure attached)

So the sum of the forces on the cart are,

m\frac{dv_{c}(t)}{d_{t}} = k \int v_{c}(t)dt + b(v_{t}(t) - v_{c}(t)) + k \int v_{t}(t)

The part I am confused about here is how to use the relative velocities and determine the direction of the force on the cart due to the spring.

You had explained how to reason out the force direction for the damper based on the relative velocity in a previous post i.e.
If the velocity difference makes the dashpot get bigger, then the force is tensile. If the velocity difference makes the dashpot smaller, then the force is compressive.
but what about for the spring?

Thanks again for all your help!
 

Attachments

  • TruckandCart.JPG
    TruckandCart.JPG
    39.1 KB · Views: 429
It's the same concept for the spring as for the dashpot. There should be a minus sign in front of the integral for the cart velocity. The tension is the spring is determined by the displacement of one end relative to the other end.

Chet
 
Back
Top