I need code of Matlab to simulate the result in this paper:
Analysis of a Delayed SIR Model with Exponential Birth and Saturated Incidence Rate Wanwan Wang, Maoxing Liu* , Jinqing Zhao
Hi Mohamed H Hassan
I read this Paper and I Hope this code can Help you :
% Define the DDEs
function dydt = sir_model(t, y, Z)
% Parameters from paper
beta = ...; % Fill in from paper
gamma = ...; % Fill in from paper
mu = ...; % Fill in from paper
N = ...; % Fill in from paper
% ... Add other parameters
% Previous values
S_tau = Z(1,:);
I_tau = Z(2,:);
% Equations from paper
dS = ...; % Fill in from paper
dI = ...; % Fill in from paper
dR = ...; % Fill in from paper
dydt = [dS; dI; dR];
end
% Define delays
lags = ...; % Fill in from paper
% Initial conditions and history
y0 = ...; % Fill in from paper
history = ...; % Fill in from paper
% Time span
tspan = [0 100]; % Example
% Solve using dde23
sol = dde23(@sir_model, lags, y0, tspan, [], history);
% Plot the results
figure;
plot(sol.x, sol.y(1,:), '-r', sol.x, sol.y(2,:), '-g', sol.x, sol.y(3,:), '-b');
legend('Susceptible', 'Infected', 'Recovered');
xlabel('Time');
ylabel('Population');
title('Delayed SIR Model');
mathworks.com
see this
https://www.mathworks.com/matlabcentral/answers/460308-how-to-plot-system-of-fractional-delay-differential-equations
Source to get Impact factor of journals
01 March 2021 6,654 2 View
I would like to get more information on the cyclic compressive fatigue testing (BS EN 12697 - 25) which is typically done for bituminous material in pavement design. Any one can advise on the...
28 February 2021 2,004 3 View
I am currently doing research on the adsorption of heavy metal using magnetic reduce graphene oxide. I use AAS to determine the concentration of the heavy metal. I prepare the Pb solution with...
26 February 2021 9,580 4 View
25 February 2021 6,760 1 View
if we expose the fish after acclimatization to particular toxin in order to find out LC 50 (96 hours).Should we keep the fish off feed or with feed for that duration. Some literature show that...
24 February 2021 357 2 View
Colleagues, I have been using ANSYS to model concrete strengthened FRP sheets, but less than happy with it. Any has recommendation for efficient, easy to use FE program for modelling concrete...
22 February 2021 7,528 3 View
The pandemic has led to depression and anxiety and its negative effects shouldn't be ignored. However, it has also led some people to become more resilient! What do you think? Thank you.
21 February 2021 4,733 19 View
I work on estimation of alpha amylase activity using dinitrosalisylic acid reagent If i put the reagent to stope the enzymatic reaction and allow the reagent to react with the produced reducing...
17 February 2021 7,402 4 View
the samples are not completely soluble - just swelled the solvents that's mean the sample may be partially soluble any suggestion, please
16 February 2021 8,801 3 View
i want to implement pseudo random number generator in matlab ...i request to every one if someone have code these PRNG share with me SplitMix Permuted Congruential Generator (PCG) Random...
14 February 2021 6,828 7 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
The following code (see 1st 2 images attached) is used to produce PID controller values that are designed to control the system (G). The code finds the PID controller values (noted as k) by using...
28 February 2021 6,560 14 View
I have input and output data set for "ANFIS modeling in MATLAB", and I am getting some negative predicted values of output in testing. However, the predicted values of output in training are...
28 February 2021 3,459 3 View
I am required to learn about Flyback converters and I got stuck not knowing to full design of the power supply flyback converter Based USB Charger Model using Simulink, especially the design model...
25 February 2021 5,435 2 View
I do need the Matlab code of Fractal Discrete Cosine Transform (FDCT). Can anyone who has already implement this code, help me with the implementation of this transform?
24 February 2021 5,602 2 View
Hi Hope you are well. Can you please share your code for D2D implementation in Matlab. I want to implement D2D in Matlab based Vienna simulator and struggling to deploy D2D. Thanks
24 February 2021 9,378 3 View
Dear colleagues If anyone has a model of multi-effect distillation in EES or MATLAB software, please send it to me.
24 February 2021 7,282 1 View
Hi, I am a third year chemistry undergrad doing my group project in which I need to predict the HPLC retention time of 20 aromatic molecules. to do this we require the chemical properties of these...
24 February 2021 1,384 3 View
I use Matlab 2014b to capture some images with a PointGrey camera connected with USB3 port. I initialize the camera in a function which basically execute these followed lines : vid =...
22 February 2021 6,386 1 View
How to build fouling and erosion simulation model for Aero Engine compressor and turbine rotor in Simulink / Matlab?
22 February 2021 3,697 1 View