フィルターのクリア

Help with differential equation Kolmogorov in queuing theory

7 ビュー (過去 30 日間)
Le Duc Long
Le Duc Long 2020 年 6 月 29 日
コメント済み: Le Duc Long 2020 年 6 月 29 日
Hi everybody,
I have a problem with differential equation Kolmogorov in queuing theory. Now I need to write a code to solve the equation system (1) with the condition (2) and (3) according to Euler method. I wrote the code but the output didn't seem right (please see images). Any one can see my code and give me some advices. Thanks so much
clear all
tspan = [0:0.01:5];
n=6;
ic=zeros(1,n+1);
for ii=1:n+1
ic(1,1)=1;
end
[t, p] = ode45(@odeFun, tspan, ic);
figure ('name','xac suat theo time')
plot(t, p)
legend({'p7'})
function dpdt = odeFun(t, p)
lambda = 4.8;
mu = 2;
A=[-1 0 0 0 0 0 0;
1 -1 0 0 0 0 0;
0 1 -1 0 0 0 0;
0 0 1 -1 0 0 0;
0 0 0 1 -1 0 0;
0 0 0 0 1 -1 0;
0 0 0 0 0 1 0];
B=[0 1 0 0 0 0 0;
0 -1 0 0 0 0 0;
0 0 -2 2 0 0 0;
0 0 0 -2 2 0 0;
0 0 0 0 -2 2 0;
0 0 0 0 0 -2 2;
0 0 0 0 0 0 -2];
dpdt = (lambda.*A + mu.*B)*p;
end
.

採用された回答

Alan Stevens
Alan Stevens 2020 年 6 月 29 日
Your code doesn't maintain condition (2) for all times. You should eliminate p6 from equations (1) using condition (2), then use the ode solver to solve for the others. You can subsequently calculate p6 for each timestep.
  8 件のコメント
Alan Stevens
Alan Stevens 2020 年 6 月 29 日
Try this:
tspan = 0:0.01:5;
n=6;
ic=zeros(1,n);
for ii=1:n
ic(1,1)=1;
end
[t, p] = ode45(@odeFun, tspan, ic);
p6 = (1 - sum(p,2));
figure ('name','xac suat theo time')
plot(t, p)
legend('p0','p1','p2','p3','p4','p5')
function dpdt = odeFun(~, p)
lambda = 4.8;
mu = 2;
A=[-1 0 0 0 0 0 ;
1 -1 0 0 0 0 ;
0 1 -1 0 0 0 ;
0 0 1 -1 0 0 ;
0 0 0 1 -1 0 ;
0 0 0 0 1 -1 ];
B=[0 1 0 0 0 0 ;
0 -1 2 0 0 0 ;
0 0 -2 2 0 0 ;
0 0 0 -2 2 0 ;
0 0 0 0 -2 2 ;
-2 -2 -2 -2 -2 -4] ;
v = [0 0 0 0 0 2]';
dpdt = (lambda.*A + mu.*B + mu*v)*p;
end
Notice that the book plots only p0 to p5. It's still not identical to the book! I don't know if this is because the book used a simple Euler method (as you mentioned in your original post) and MATLAB is using a more accurate Runge-Kutta method, or not. I'll leave you to investigate!
Le Duc Long
Le Duc Long 2020 年 6 月 29 日
Thanks for your help. I do not know why the condition p0(t)+p1(t)+...+pn(t) is diffrent 1. The condition (2) is true with any time value. Can you explain more? Best regards!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by