필터 지우기
필터 지우기

How can i solve a implicit ode boundary value problem in matlab?

조회 수: 3 (최근 30일)
xosro
xosro 2017년 8월 21일
댓글: Torsten 2017년 8월 22일
I have the following equation, but i cannot employ ode45 or ode15i order to solve the equation.
y-(x/2)*y' - a*y''/(2*(1-b*y'')^2)=0
where a, b are constant and positive and y is function of x. with boundary conditions: y(-inf)=c, y(inf)=c where c is constant.
  댓글 수: 1
Torsten
Torsten 2017년 8월 22일
Multiply by 2*(1-b*y'')^2 and solve the resulting quadratic equation for y''.
Now you have an explicit equation for y'' which can be solved using bvp4c (maybe after a coordinate transformation from your infinite interval to a finite one, e.g. by the transformation z=atan(x)).
Best wishes
Torsten.

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

답변 (0개)

카테고리

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