Generate bifurcation diagram for 2D system

柔情痞子 提交于 2021-02-07 03:30:39

问题


Drawing bifurcation diagram for 1D system is clear but if I have 2D system on the following form dx/dt=f(x,y,r), dy/dt=g(x,y,r)

And I want to generate a bifurcation diagram in MATLAB for x versus r. What is the main idea to do that or any hints which could help me?


回答1:


You first have to do some math:

Setting each of the functions to zero gives you two functions y(x) (called the nullclines), which you can plot in a phase diagram. Where the two lines intersect are the fixed-points (equilibria) of your system.

Now, you have to take the jacobian of your system and plug each of those fixed-points in, which will give you the linear stability analysis of the system.

The location of the fixed points and the stability of each point can now be computed as a you vary r (the bifurcation parameter).

For the programming:

-use newton's method (fsolve in MATLAB) to find where the equations are zero -eig will help you find the eigenvalues of the system.

However

It depends on your system.

If you're supposed to be looking for limit cycles or chaos or something, you'll have to use one of the ode solvers and then the analysis becomes more tricky. I suppose you could develop a poincare-bendixson algorithm, but that would be involved and details would depend on your system.




回答2:


I don't think MATLAB has anything built in that would give you a bifurcation diagram. There is this third-party solution:

http://www.mathworks.com/matlabcentral/fileexchange/8382



来源:https://stackoverflow.com/questions/10693525/generate-bifurcation-diagram-for-2d-system

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!