Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

ODE45 to solve non-time function

조회 수: 1 (최근 30일)
David Winthrop
David Winthrop 2013년 2월 14일
마감: MATLAB Answer Bot 2021년 8월 20일
I would like to use ode45 to solve the following D.E.
T'' + (1/x)*T' + G = 0
T'(x=0) = 0
k*T'(x=.5) + h*(T(x=.5) - 300) = 0;
where T = T(x) and G is a constant. I was told ODE45 can only be used for non-time equations but that can't be right because mathematically it doesn't matter. So I made the following substitution
f = T', f' = T''
then I get my system as
f' + (1/x)*f + G = 0
f(x=0) = 0
k*f(x=.5) + h*(T(x=.5) - 300) = 0;
But see I don't know how to deal with the T in the second boundary condition. Any advice?
  댓글 수: 1
David Winthrop
David Winthrop 2013년 2월 15일
Perhaps the evening crowd will have some advice here? G is a constant.

답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by