Numerically Solving a System of Differential Equations in Parallel?

조회 수: 2 (최근 30일)
Kevin Bachovchin
Kevin Bachovchin 2014년 4월 4일
답변: nathan raynal-castang 2019년 4월 11일
Hello,
If I have a system of coupled differential equations:
dx1dt = f1(x1,x2)
dx2dt = f2(x1,x2)
Is there a way to solve this system of differential equations in parallel? (I'm thinking something like one function computes dx1dt and another function computes dx2dt and the two functions communicate with each other in order to share x1 and x2 after each time step.)
Thank you,
Kevin

답변 (2개)

Mischa Kim
Mischa Kim 2014년 4월 4일
Kevin, check out this answer. Your x1 and x2 are the u and w variables.
  댓글 수: 5
Kevin Bachovchin
Kevin Bachovchin 2014년 4월 9일
What I want is for one function to compute dx1dt and another function to compute dx2dt in parallel and then the two processors communicate with each other in order to share x1 and x2 after each time step. Is something like that possible?
Mischa Kim
Mischa Kim 2014년 4월 10일
As Jan and I tried to point out these type of coupled numerical problems do not lend themselves for parallelization. Parallelization works best if you can send off independent jobs to e.g. different processor cores.

댓글을 달려면 로그인하십시오.


nathan raynal-castang
nathan raynal-castang 2019년 4월 11일
as far I as know it is not possible, however, if you have to solve it multiple times, you could use paralel computing to solve the equation with different parameters multiple times .

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by