Matlab ODE Solvers - Paramater Question
조회 수: 8 (최근 30일)
이전 댓글 표시
Greetings,
I working with a system of differential equations that model amount of components as a reaction proceeds. I want to pass a variable parameter through one of matlab's ode solvers (probably 45/15). This is in addition to time bounds, so it would be like ode45(function, times, [X1(0),X2(0),...X5(0)],... ). I want to find λ given something like X1(final) = 0.35. How to include this information?
Thank you (:
댓글 수: 0
답변 (2개)
Walter Roberson
2024년 5월 17일
To pass an additional parameter, use http://www.mathworks.com/help/matlab/math/parameterizing-functions.html
However... for the task of finding X1(final) = 0.35 you should be using one of the Boundary Value Problems solvers; https://www.mathworks.com/help/matlab/boundary-value-problems.html
Torsten
2024년 5월 17일
이동: Torsten
2024년 5월 17일
You mean
ode45(@(t,y)fun(t,y,lambda),times,[X1(0),X2(0),...X5(0)])
function res = fun(t,y,lambda)
...
end
? But what do you mean by "variable parameter" ? This is a contradiction in itself: A parameter isn't variable.
댓글 수: 2
Torsten
2024년 5월 17일
If you have a final condition for one of the unknown functions, you should use "bvp4c" instead of "ode45".
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!