The mathematics behind modelling
이전 댓글 표시
This is my first time using MATLAB and despite reading up on tutorials I am still confused in regards to how to utilise MATLAB. I am trying to simulate a SEIR model, which consists of a system of differential equations, for the spread of dengue fever in MATLAB with the following equations and parameters:
Thank you!!!
댓글 수: 2
John D'Errico
2015년 12월 29일
Please stop posting the identical question every hour just because you are in a hurry. I've now deleted most of your replicate questions.
Walter Roberson
2015년 12월 29일
There was a Mathworks server problem this morning that prevented people from telling that their question had been posted.
채택된 답변
추가 답변 (2개)
Torsten
2016년 1월 7일
function main
to = 0;
tf = 100;
tspan = [to tf];
y0 = [5535002 50 50 0 0 0 0 ];
[t,S] = ode45(@denguefeverODE, tspan, y0);
plot(t,S)
title('Human Population Without Control')
xlabel('Time')
ylabel('Susceptible, Exposed, Infected, Recovered')
legend('Susceptible', 'Exposed', 'Infected', 'Recovered')
function dSdt = denguefeverODE(t,S)
Nh = 5535002;
Nm = 33210012;
uh = 0.0045;
um = 0.02941;
Pmh = 0.375;
Phm = 0.750;
beta = 1;
nu_h = 0.1666;
epsilon_m = 0.1;
tau_h = 0.1176;
f = 6;
dSdt = zeros(7,1);
dSdt(1) = uh*Nh - (beta*Pmh*(S(7)/Nh)+uh)*S(1);
dSdt(2) = beta*Pmh*(S(7)/Nh)*S(1) - (tau_h+uh)*S(2);
dSdt(3) = tau_h*S(2)-(nu_h+uh)*S(3);
dSdt(4) = nu_h*S(3)-uh*S(4);
dSdt(5) = um*Nm - (beta*Phm*(S(3)/Nh)+um)*S(5);
dSdt(6) = beta*Phm*(S(3)/Nh)*S(5);
dSdt(7) = epsilon_m*S(6) - um*S(7);
Best wishes
Torsten.
댓글 수: 7
Muse Riveria
2016년 1월 7일
Torsten
2016년 1월 7일
You mean two plot-commands :
figure(1);
plot(t,S(:,1),t,S(:,2),t,S(:,3),t,S(:,4));
figure(2);
plot(t,S(:,5),t,S(:,6),t,S(:,7));
?
Best wishes
Torsten.
Muse Riveria
2016년 1월 7일
Muse Riveria
2016년 1월 7일
So you ask how to implement the equations of the article which already contain a control strategy ? Or do you ask how to modify your equations to include a control strategy ?
I ask this because the equations for the mosquitos in the article seem to differ from the equations you use.
Best wishes
Torsten.
Muse Riveria
2016년 1월 9일
Star Strider
2016년 1월 10일
I doubt the DEs would change, since the epidemiology would be essentially the same, but the parameters likely would. (Islands in the Caribbean might be similar enough to not require any significant changes.) If you’re using them for a more northerly latitude in response to global warming, there are several changes you would have to consider. The human epidemiology would be the same, but you might have to consult with an entomologist with a particular interest in Aedes aegypti to determine what would have to change about the vectors.
MOUSSA DOUMBIA
2016년 6월 6일
0 개 추천
Can anybody provide me a sample of an optimal control problem with 3 different control functions?
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!