Help with non-linear block spring mass system

3 visualizaciones (últimos 30 días)
Cristian Rohozneanu
Cristian Rohozneanu el 1 de Feb. de 2024
Respondida: Fangjun Jiang el 1 de Feb. de 2024
How can I add a block for the nonlinear term so that I can simulate the system?
  3 comentarios
Fangjun Jiang
Fangjun Jiang el 1 de Feb. de 2024
The nonlinear part is the k() function. It is simple enough to construct it using blocks.
The block diagram is far from the correct implementation. Use two integrators to construct q1, two integrators for q2, two integrators for q3. And then construct the rest.
Cristian Rohozneanu
Cristian Rohozneanu el 1 de Feb. de 2024
This implementation of the scheme is done without considering the nonlinear term, in the first part I didn't need it, I just need to add now and simulate the system with the nonlinear part.

Iniciar sesión para comentar.

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 1 de Feb. de 2024
  1. Use two integrators connected in series to construct q1. The output is q1, the input is "q1 two dot". In the middle, it is "q1 dot".
  2. Do the same for q2 and q3
  3. Then you have Delta1=q1-q2, Delta2=q2-q3
  4. k(Delta1)=K0*Delta1+K1*(Delta1)^3 should be easy. You can even make it a function to apply the same for Delta2
  5. Then connect the signal lines in Simulink according to the last three lines of your equations. You will have the correct Simulink implementation of your mathmatical equations.

Categorías

Más información sobre General Applications en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by