Solving Integro-differential equation with limited integral
이전 댓글 표시
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
채택된 답변
추가 답변 (2개)
Claudio Gelmi
2017년 1월 6일
1 개 추천
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일
Gelmi help me! How can I use your method to solve this equation?

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
ash
2015년 6월 29일
Torsten
2015년 6월 30일
The system to solve is
(w1(t(i+1))-w1(t(i)))/h = w2(t(i))
(w2(t(i+1))-w2(t(i)))/h = w3(t(i))
(w3(t(i+1))-w3(t(i)))/h = w4(t(i))
(w4(t(i+1))-w4(t(i)))/h = [sum_{j=1}^{j=Npnts-1}(w2(t(i+1))+w2(t(i)))*h/2]*w3(t(i))
(i=1,Npnts-1)
These are 4*(Npts-1) equations in which you will have to include the boundary conditions.
You can use fsolve to solve this system of polynomial equations.
Best wishes
Torsten.
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
카테고리
도움말 센터 및 File Exchange에서 Numeric Solvers에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!