How to plot a vector map for a differential system(in ode45) with a switch condition ?

3 次查看(过去 30 天)
% y is output from ode45
[gridx1,gridy1]=meshgrid(logspace(thetamin,thetamax,length(y(1:fix(end/2),1))),logspace(thetadotmin,thetadotmax,length(thetadot(1:fix(end/2),2))));
quiver(y(1:fix(end/2),1), y(1:fix(end/2),2),gridx1,gridy1);%Only plotted the first half of the output to avoid the even higher frequency areas and used logspace in place of linspace to avoid hanging my laptop
I wish to plot a vector map for a switching system along the switching surface h. So far, I tried quiver, which just hangs my laptop when the high frequency switching condition occurs.
Example problem:
  2 个评论
Vignesh Ramakrishnan
编辑:Vignesh Ramakrishnan 2022-6-15
Sorry, I can't. I should've posted a toy problem instead. Also, the code has a lot of event triggers etc which would take away the focus from my main problem here i.e. scaling.

请先登录,再进行评论。

回答(1 个)

Sam Chak
Sam Chak 2022-6-14
编辑:Sam Chak 2022-6-14
Since you didn't provide the code, the following involves some guesswork in an attempt to reproduce/duplicate your graph.
The simplest form of is probably a additive function, and so I've tried . But, your scale at is relatively small.
k = 0;
fv1 = @(t, x, y) y;
fv2 = @(t, x, y) k*sin(t) + 5.2*sign(-((4/10)*x + y));
opt = odeset('RelTol', 1e-4, 'AbsTol', 1e-6);
[t, v] = ode45(@(t, x) ([fv1(t, x(1), x(2)); fv2(t, x(1), x(2))]), [0 20], [10 0], opt);
Next is plotting.
subplot(2,1,1)
plot(t, v(:,1), 'linewidth', 1.5)
subplot(2,1,2)
plot(v(:,1), v(:,2), 'linewidth', 1.5)
hold on
And then the quiver plot is added.
[X, Y] = meshgrid(0:10/14:10, -4:4/7:0); % Do NOT make very fine mesh partitions
U = Y;
V = 5.2*sign(-((4/10)*X + Y));
quiver(X, Y, U, V, 0.5)
I'll let the Experts to handle your case for , which indicates an non-autonomous system. Probably require quiver3() to show the evolution of the direction field in 3D as the system response is propagated forward in time t, as demonstrated by Dr. @Star Strider in this solution:

类别

Help CenterFile Exchange 中查找有关 Vector Fields 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by