Contact modeling between two bodies

6 vues (au cours des 30 derniers jours)
pietro
pietro le 17 Déc 2013
Commenté : Guy Rouleau le 18 Déc 2013
Hi all,
I have two DOFs model of a lumped system. It's something similar to a quarter car model.
I modeled it using simulink with no physical elements. I need modeling the contact between the two bodies, that means the displacement of m1 is limited by the position of m2. I have in mind to do this using the dynamic saturation block instead of modeling the elastic contact between both of them. Could it be a good idea or there could be some stability problems?
thanks
Cheers
Pietro

Réponse acceptée

Ryan G
Ryan G le 17 Déc 2013
I'm not sure the ideal way to do this, but off the top of my head I think you would want to set up a conditional for when they collide.
This can be done in SL blocks. In this example, since the spring is already there, you could probably just ramp up the stiffness of Ks and compensate with higher b value to damp when collision occurs. Something like
If y<x
Ks = k*10
b = b*10
else
Ks = k
b = b;
You'd have to figure out what vvalues make sense here based on your system. Running Simulation should make it apparent how to adjust your k and b.

Plus de réponses (1)

pietro
pietro le 17 Déc 2013
Hi Ryan,
Thanks for your reply, nice idea. What about using a saturation block so I will not have any dynamic problems?
  1 commentaire
Guy Rouleau
Guy Rouleau le 18 Déc 2013
It can work. In that case you want to use the Second-Order Integrator block to model the hard stop properly:
Note that such ideal system can easily cause solver problems is not modeled properly... see this for an example:

Connectez-vous pour commenter.

Catégories

En savoir plus sur General Applications dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by