Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Elastica Controllers #31

Open
mstoelzle opened this issue Mar 7, 2022 · 0 comments
Open

Elastica Controllers #31

mstoelzle opened this issue Mar 7, 2022 · 0 comments
Assignees

Comments

@mstoelzle
Copy link
Contributor

mstoelzle commented Mar 7, 2022

This issue shall describe the approach to implement some simple (model-based) controllers for the simulated soft robotic arm. Obviously, first #25 needs to be completed.

To get the soft robot moving, it makes sense to implement some simple PID / PD controller in configuration-space. A PD controller for set-point regulation would look like this:

Then, we should consider some simple model-based controllers. In particular interesting for set-point regulation would be:

\tau = Kq + G(q) + K_\mathrm{p} (\bar{q}-q) - K_\mathrm{d} \dot{q}

where the gains of the feedback component can be reduced or even set to zero.

This will require the identification of the elasticity matrix K and the gravitational term G(q). While we can set the gravity to zero for the start, we can identify the (diagonal) constant matrix K with the following strategy:

  1. Apply a torque tau to the system.
  2. Wait for the system to reach steady-state
  3. Compute the K with K=tau/q
  4. We can do that for a few points, and identify our optimal fit for K with least-squares
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants