simscape-gravity/index.org

6.8 KiB

Gravity with Simscape Models

Introduction   ignore

We would like to include gravity in a Simscape multi-body model while starting the simulation at the equilibrium.

The basic idea is to first perform a simulation of the system until it goes at it rest position and save the rest position forces and deflection in each joint.

We can then think of three solutions to start a new simulation directly at the steady state position:

  • Change the equilibrium position $l_0$ of each joint such that at $t=0$, $k \times l_0$ is equal to the previously measured force in the joint. Here, it is suppose that we constrain the initial position of the joint to be equal to zero. Then, these forces cancel each other and the simulation starts at equilibrium.
  • Add an External force (or maybe the "Internal Force") in the direction of the joint (the "resolution frame" is fixed to the solids) equal to the opposite of the previously measured force.
  • After the first simulation, measure the final change of position of each joint, then set the initial position to be the measured static position. Then, the simulation will start at equilibrium, but all the elements will be "deflected".

The three solutions are tested below.

Simulink

  open 'gravity_test.slx'
/tdehaeze/simscape-gravity/media/branch/master/figs/simscape_model.png
Simscape model used for the simulations

Initial Simulation

  g = -10; % [m/s^2]

  k = 1e3; % Stiffness [N/m]
  c = 10; % Damping [N/(m/s)]

  l0 = 0; % Initial wanted position [m]
  leq = 0; % equilibrium position [m]

  F_ext = 0; % External force [N]
  F_act = 0; % Actuator force [N]
<<plt-matlab>>
/tdehaeze/simscape-gravity/media/branch/master/figs/sim_init.png
Initial Simulation (png, pdf)

Change the equilibrium position

  l0 = 0; % Initial wanted position [m]
  leq = -out_init.Fm.Data(end)/k; % equilibrium position [m]

  F_ext = 0; % External force [N]
  F_act = 0; % Actuator force [N]
<<plt-matlab>>
/tdehaeze/simscape-gravity/media/branch/master/figs/sim_change_eq_position.png
Simulation after changing the equilibrium position of the joint (png, pdf)

Add external force

  l0 = 0; % Initial wanted position [m]
  leq = 0; % equilibrium position [m]

  F_ext = -out_init.Fm.Data(end); % External force [N]
  F_act = 0; % Actuator force [N]
<<plt-matlab>>
/tdehaeze/simscape-gravity/media/branch/master/figs/sim_add_external_force.png
Simulater after adding an external force applied to the solid (png, pdf)

Change initial position

  l0 = out_init.d.Data(end); % Initial wanted position [m]
  leq = 0; % equilibrium position [m]

  F_ext = 0; % External force [N]
  F_act = 0; % Actuator force [N]
<<plt-matlab>>
/tdehaeze/simscape-gravity/media/branch/master/figs/sim_change_initial_position.png
Simulation after changing the initial position of the joint (png, pdf)

Conclusion

Three techniques:

  • Change the equilibrium position

    • This does not change the equilibrium position of the system
  • Add external force

    • May not be physical
  • Change the initial position

    • The static position is not the same as the static position without gravity
    • Very easy to implement

Changing the equilibrium position of each joint seem the most practical solution.