Multiple initial conditions differential equations

2 ビュー (過去 30 日間)
Zach
Zach 2011 年 5 月 31 日
Is there a way to solve multiple initial conditions in the same ode solver?
  1 件のコメント
Zach
Zach 2011 年 5 月 31 日
To be more specific I have a bunch of points consisting of x and y coordinates. Each point is considered an agent. And each agent has it's x and y coordinates determined by it's own x and y direction DE. I have this set up in a GUI where the students select the number of agents and the two DE's. I was looking for a way to only use one x array and one y array to solve all the different point (agents) for the same time step. If this is two vague I can try and explain it more clearly.

サインインしてコメントする。

採用された回答

Matt Tearle
Matt Tearle 2011 年 5 月 31 日
There's no immediate way to do this (AFAIK). Some possible workarounds would be to make a larger system of equations (ie just stack the x-y pairs into one big vector), or to run multiple times and specify the time points where you want the solution. In the latter case, you could either do this for all runs or for the first and then use the times returned for that run as inputs for the remaining runs.
(Dumb question: is there any reason they have to be at the same time points? If, for example, you're just plotting the results, would you even notice the time points?)
  2 件のコメント
Zach
Zach 2011 年 5 月 31 日
thanks! and the reason for all having the same time points is cause i'm plotting each agent after every time step. I think I'm slowly working my way towards something.
Matt Tearle
Matt Tearle 2011 年 6 月 1 日
OK, if you want it simultaneously, maybe you could go with the first approach of making it a big system of (repeated) equations.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by