How to solve for dI/dz differential equation using runge kutta 4th order method?

조회 수: 1 (최근 30일)
ANAM SAIFI
ANAM SAIFI 2021년 11월 16일
편집: James Tursa 2021년 11월 18일
  댓글 수: 1
James Tursa
James Tursa 2021년 11월 18일
편집: James Tursa 2021년 11월 18일
You have multiple independent variables listed, t and z. I think we need more information about what your overall problem is and what initial or boundary conditions you have.

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

답변 (1개)

Sudharsana Iyengar
Sudharsana Iyengar 2021년 11월 16일
use ode45
create a function of your diffrential equations and use ODE 45.
This is an example, do a similar for yours.
function dydt = odefcn(t,y,A,B)
dydt = zeros(2,1);
dydt(1) = y(2);
dydt(2) = (A/B)*t.*y(1);
end
Then call your function
A = 1;
B = 2;
tspan = [0 5];
y0 = [0 0.01];
[t,y] = ode45(@(t,y) odefcn(t,y,A,B), tspan, y0);
plotting result
plot(t,y(:,1),'-o',t,y(:,2),'-.')

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by