Torque input into ode45

I want to solve the set of differential equations with external torques as additional parameters
function dx = myfun(t, x, tor1, tor2)
x[1] = ...;
x[2] = ...;
end
I understand that this can be done using anonymous functions with trailing parameters
[T, Y] = ode45(@(t,x) myfun(t, x, tor1, tor2), ts, x0);
Everything works fine when the torques, tor1 and tor2, are constants. However, I need my input torques to be a function of the system parameters x[1],x[2] etc. If I try to define my torques as a function I get the error "Inputs must be floats, namely single or double".
Also, since my torques are controlled by PID controllers, I also need the torques to be a function of the integrals of certain system parameters.
How can I go about doing this?

1 Commento

darova
darova il 10 Nov 2019
Modificato: darova il 10 Nov 2019
Use round brackets:
x(1) = ...;
x(2) = ...;
x = x'; % derivative vrctor should be vertical

Accedi per commentare.

Risposte (0)

Prodotti

Release

R2019b

Tag

Richiesto:

il 10 Nov 2019

Modificato:

il 10 Nov 2019

Community Treasure Hunt

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

Start Hunting!

Translated by