% This script needs the file Fseir.m to run
% Fseir.m contains the differential equation model
% S is the number of Susceptible individuals at each time step
% E is the number of Exposed individuals at each time step
% I is the number of Infected individuals at each time step
% R is the number of Recovered individuals at each time step
N=1000; %Population Size
%-- initial condictions
i0=5; % initial condition for I
s0=N-i0; % initial condition for S
e0=0; % initial condition for E
r0=0; % initial condition for R
% --
T=100; % evaluation time
%-- parameters
beta=0.5; % infectious rate
gamma= 0.1; % recover rate
omega= 0.1; % migration rate of latency
%--
S0E0I0R0=[s0 e0 i0 r0]; % initial condictions Vector
Tspam=[0:0.1:T]; % time interval
%-- Numerical Integration
[T,Y] = ode45(@(t,Y) Fseir(t,Y,beta,gamma,omega,N),Tspam,S0E0I0R0);
%--
S=Y(:,1); % Solution S
E=Y(:,2); % Solution E
I=Y(:,3); % Solution I
R=Y(:,4); % Solution R (another solution is R=N-S-E-I)
%----- plots -----
plot(T,S,'k');
hold on;
grid on;
plot(T,E,'m:');
plot(T,I,'r--');
plot(T,R,'b-.');
title(['SEIR model: \beta= ',num2str(beta),', \gamma= ',num2str(gamma), '\omega= ',num2str(omega), ', N=',num2str(N)])
xlabel('Time')
ylabel('Number of Individuals')
legend('S','E','I','R','Location','best')
%------------------
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
SEIR Epidemic Model传染病学模型(Matlab完整源码和数据) SEIR模型是一种常见的传染病传播模型,用于描述人群感染某种传染病的过程。SEIR模型将人群划分为四个互相转化的状态: 易感者(Susceptible,S):指还没有感染病毒的人群,但是有可能被感染。 潜伏期者(Exposed,E):指已经感染了病毒,但是还没有出现症状的人群。 感染者(Infectious,I):指已经感染并且有症状的人群,可以传染给其他人。 康复者(Recovered,R):指已经从感染中康复的人群,具有免疫力,不会再次感染。
资源推荐
资源详情
资源评论
收起资源包目录
SEIR.zip (4个子文件)
1.png 37KB
Fseir.m 262B
run_SEIR.m 1KB
SEIR_model.jpg 45KB
共 4 条
- 1
资源评论
- Albatros9002024-04-07资源值得借鉴的内容很多,那就浅学一下吧,值得下载!
- qq_419647962023-10-30感谢资源主的分享,很值得参考学习,资源价值较高,支持!
- m0_750284702023-06-17资源使用价值高,内容详实,给了我很多新想法,感谢大佬分享~
前程算法屋
- 粉丝: 5443
- 资源: 782
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功