Filter löschen
Filter löschen

Getting an error solving differential equation "free variable must be included in vars"

10 Ansichten (letzte 30 Tage)
Hi. I am trying to solve the equations : du/dt = k1*s - k2*u*v dv/dt = k3*s - k4*v
where s = floor(t/4)
Now i wrote the code :
syms T t u(t) v(t) u0 v0 Y
Du = diff(u);
Dv = diff(v); k1=1;k2=1;k3=1;k4=1; s=floor(t/4);
ode1 = Du == k1*s-k2*u*v;
ode2 = Dv == k3*s-k4*v;
[ode_vf, ode_subs] = odeToVectorField(ode1,ode2);
ode_fcn = matlabFunction(ode_vf, 'vars',{T,Y});
tspan = linspace(0, 20, 10);
icv = [0; 0]+sqrt(eps);
[t,y] = ode45(ode_fcn, tspan, icv);
figure(1)
plot(t, y)
grid
But i am getting the error :
Error using sym/matlabFunction>checkVarsSubset (line 234)
The free variable t must be included in the 'Vars' value.
>>> Error in sym/matlabFunction>checkVars (line 222) checkVarsSubset(vexpanded,funvars);
>>>Error in sym/matlabFunction (line 154) vars = checkVars(funvars,opts);
Please let me know what to do here !!1

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jun. 2017
You have
ode_fcn = matlabFunction(ode_vf, 'vars',{T,Y});
but your ode_vf does not include any variable named T; it includes a variable named t (lower-case)
ode_fcn = matlabFunction(ode_vf, 'vars',{t,Y});
  5 Kommentare
siddharth tripathi
siddharth tripathi am 25 Jun. 2017
Thanks a lot. I was making a really silly mistake.
Can you please let me know how to plot "s" on the same graph ?
Hold on plot(t,s) doesn't work !

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by