Solving Integro-differential equation with limited integral
조회 수: 8 (최근 30일)
이전 댓글 표시
Hi,
How can I solve this equation numerically using matlab
w''''=w''*int(w'^2,0,1)
I tried using the standard form of ODE function, the only problem I faced is how to represent that limited integral Thanks
댓글 수: 0
채택된 답변
Torsten
2015년 6월 25일
Write your integro-differential equation as
w1'=w2
w2'=w3
w3'=w4
w4'=w3*integral_{t=0}^{t=1}w2^2(t') dt'
Then discretize the interval [0:1] in n subintervals 0=t(1)<t(2)<...<t(n)=1.
Compute the derivatives as
wj'(t(i))=(wj(t(i+1))-wj(t(i)))/dt (j=1,2,3,4)
and compute the integral using the trapezoidal rule.
You'll arrive at a polynomial system (order 3) of equations for the unknowns
wj(t(2)),wj(t(3)),...,wj(t(n)) (j=1,2,3,4)
which can be solved by fsolve, e.g.
No chance to use ODE45 in this case.
Another way might be to use ODE45 and iteratively adjust the value of the integral, but I'm not sure whether this method will converge.
Good luck !
Best wishes
Torsten.
댓글 수: 1
Hewa selman
2021년 12월 22일
Hello
Now are you sure that we can adjust the value of integral, then put it in system and solve it by ode45 or ode15s.
추가 답변 (2개)
Claudio Gelmi
2017년 1월 6일
Take a look at this solver:
Article "IDSOLVER: A general purpose solver for nth-order integro-differential equations": http://dx.doi.org/10.1016/j.cpc.2013.09.008
Best wishes,
Claudio
댓글 수: 2
Fernando Fernandes
2021년 1월 14일
I've downloaded your paper, but i'm a beginner in Matlab. Do I need the solver in http://cpc.cs.qub.ac.uk/summaries/AEQU_v1_0.html ???
How can I install this?
ash
2015년 6월 28일
댓글 수: 4
Torsten
2015년 6월 30일
Sorry, should read
(w4(t(i+1))-w4(t(i)))/h = [sum_{j=1}^{j=Npnts-1}(w2(t(j+1))+w2(t(j)))*h/2]*w3(t(i))
Best wishes
Torsten.
SOZHAESWARI P
2021년 9월 5일
How to solve the numerical solution of nonlinear parabolic integro differential equation for two grid finite element method example MATLAB codings
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!