Skip to main content

Zoonotic Disease, Avian Influenza, and Nonautonomous Models

  • Chapter
An Introduction to Mathematical Epidemiology

Part of the book series: Texts in Applied Mathematics ((TAM,volume 61))

  • 7224 Accesses

Abstract

This chapter treats avain influenza (AI) as an example of zoonotic diseases. Simple AI model, involving poultry and humans, is introduced and fitted to H5N1 human case data. Tools from Chap. 6 are employed to evaluate multiple AI control strategies. The chapter argues that more detailed H5N1 data suggest that there is seasonality in the transmission of AI. Non-autonomous models as a modeling tool to seasonality are introduced. Tools for the analysis of non-autonomous models, such as the Poincare map, are discussed and their use is illustrated on a simple non-autonomous SI model. Simulations suggest that the simple non-autonomous model with disease-induced mortality is capable of exhibiting chaotic behavior.

This is a preview of subscription content, log in via an institution to check access.

Access this chapter

eBook
USD 16.99
Price excludes VAT (USA)
  • Available as EPUB and PDF
  • Read on any device
  • Instant download
  • Own it forever
Softcover Book
USD 64.99
Price excludes VAT (USA)
  • Compact, lightweight edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info
Hardcover Book
USD 89.99
Price excludes VAT (USA)
  • Durable hardcover edition
  • Dispatched in 3 to 5 business days
  • Free shipping worldwide - see info

Tax calculation will be finalised at checkout

Purchases are for personal use only

Institutional subscriptions

References

  1. N. Bacaër and R. Ouifki, Growth rate and basic reproduction number for population models with a simple periodic factor, Math. Biosci., 210 (2007), pp. 647–658.

    Article  MathSciNet  MATH  Google Scholar 

  2. CDC, Key facts about avian influenza (bird flu) and highly pathogenic avian influenza A (H5N1) virus.

    Google Scholar 

  3. F. A. B. Coutinho, M. N. Burattini, L. F. Lopez, and E. Massad, Threshold conditions for a non-autonomous epidemic system describing the population dynamics of dengue, Bull. Math. Biol., 68 (2006), pp. 2263–2282.

    Article  MathSciNet  MATH  Google Scholar 

  4. FAO, Faostat.

    Google Scholar 

  5. S. Iwami, Y. Takeuchi, and X. Liu, Avian–human influenza epidemic model, Math. Biosci., 207 (2007), pp. 1–25.

    Article  MathSciNet  MATH  Google Scholar 

  6. C. M. Hurvich and C.-L. Tsai,, Avian flu pandemic: can we prevent it? J. Theoret. Biol., 257 (2009), pp. 181–190.

    Article  MathSciNet  Google Scholar 

  7. J. Ma and Z. Ma, Epidemic threshold conditions for seasonally forced SEIR models, Math. Biosci. Eng., 3 (2006), pp. 161–172.

    Article  MathSciNet  MATH  Google Scholar 

  8. M. Martcheva, An evolutionary model of influenza A with drift and shift, J. Biol. Dynamics, 6 (2012), pp. 299–332.

    Article  MathSciNet  Google Scholar 

  9. G. I. Marchuk,, Avian flu: modeling and implications for control, J. Biol. Systems, 22 (2014), pp. 151–175.

    Article  MathSciNet  Google Scholar 

  10. L. H. Taylor, S. M. Latham, and M. E. Woolhouse, Risk factors for human disease emergence, Philosophical Transactions of the Royal Society B: Biological Sciences, 356 (2001), pp. 983–989.

    Article  Google Scholar 

  11. H. R. Thieme,, Mathematics in population biology, Princeton Series in Theoretical and Computational Biology, Princeton University Press, Princeton, NJ, 2003.

    Google Scholar 

  12. P. N. V. Tu, Dynamical systems, Springer-Verlag, Berlin, 1992. An introduction with applications in economics and biology.

    Google Scholar 

  13. P. N. V. Tu,, Modeling seasonality in avian influenza H5N1, J. Biol. Systems, 21 (2013), pp. 1340004, 30.

    Google Scholar 

  14. W. Wang, Y. Cai, M. Wu, K. Wang, and Z. Li, Complex dynamics of a reaction–diffusion epidemic model, Nonlinear Anal. Real World Appl., 13 (2012), pp. 2240–2258.

    Article  MathSciNet  MATH  Google Scholar 

  15. WHO, Cumulative number of confirmed human cases of avian influenza A(H5N1) reported to WHO.

    Google Scholar 

  16. WIKI, List of countries by population.

    Google Scholar 

Download references

Acknowledgements

The author thanks Necibe Tuncer for help with fittings.

Author information

Authors and Affiliations

Authors

Appendix

Appendix

In this appendix, we include Matlab code that fits model (11.1)–(11.2) to the data in Table 11.1.

1 function Ch11fitting_model1

2

3 clear all

4 close all

5 clc

6

7 load AFluDatCumHalf14.txt %Imports the data file

8

9 tdata = AFluDatCumHalf14(:,1);

10 qdata = AFluDatCumHalf14(:,2);

11

12 tforward = (0:0.01:9)’;

13 tmeasure = [1:50:901]’;

14

15 format long

16

17 function dy = model_1(t,y,k)

18

19 Lb = 1200;

20 L = 1000;

21 mb = 1/2;

22 nb = 36.5;

23 mu = 1/65;

24 nu = 36.5;

25

26 dy = zeros(5,1);

27

28 dy(1) = Lb −k(1) * y(1) * y(2)−mb * y(1);

29 dy(2) = k(1) * y(1) * y(2)−(nb+mb) * y(2);

30 dy(3) = L − k(2) * y(3) * y(2)−mu * y(3);

31 dy(4) = k(2) * y(3) * y(2)−(mu+nu) * y(4);

32 dy(5) = k(2) * y(3) * y(2);

33

34 end

35

36 function q = model1(k,tdata)

37

38 [T,Y] = ode23s(@(t,y)(model_1(t,y,k)),tforward,

39 [2400 k(3) 65000 0.0007 .0007]);

40

41 q = Y(tmeasure(:),5);

42

43 end

44

45 k = [0.0158 0.00000001063 0.9]; % Initial values for parameters

46

47 lb = [0.0 0.0 0.0];

48

49

50

51 for i = 1:5

52

53 [k,resnorm] = lsqcurvefit(@model1,k,tdata,qdata,lb,[],...

54 optimset(’Disp’,’iter’,’TolX’,10̂(−20),’TolFun’,10̂(−20)))

55 end

56

57

58 [T,Y] = ode15s(@(t,y)(model_1(t,y,k)),tforward,[2400 ...

59 k(3) 65000 .0007 .0007]);

60

61

62

63 figure(1)

64

65 plot(tdata,qdata,’r.’);

66 hold on

67 plot(tforward,Y(:,5),’b−’);

68

69

70 end

71

72 end

Problems

11.1. For model (11.1)–(11.2), obtain a list of the countries that have human cases from the main source of data [166]. Use [58] to obtain the number of poultry units for these countries. Use [167] to determine the human population of the affected countries. Parameterize model (11.1)–(11.2) with these data.

11.2. Consider the AI model with pandemic strain [80]

$$\displaystyle{ \mathbf{DomesticBirds:}\left \{\begin{array}{l} S_{d}'(t) =\varLambda _{d} -\beta _{d}S_{d}I_{d} -\mu _{d}S_{d}, \\ I_{d}'(t) =\beta _{b}S_{d}I_{d} - (\mu _{d} +\nu _{d})I_{d}.\end{array} \right. }$$
(11.20)

The spillover model for humans with pandemic strain takes the form

$$\displaystyle{ \mathbf{Humans:}\left \{\begin{array}{l} S'(t) =\varLambda -\beta SI_{d} -\beta _{Z}SZ -\mu S, \\ I'(t) =\beta SI_{d} - (\mu +\nu +\rho )I, \\ Z'(t) =\rho I +\beta _{Z}SZ - (\mu +\nu _{Z})Z.\end{array} \right. }$$
(11.21)

where Z is the number of individuals infected by the pandemic strain.

  1. (a)

    Compute the reproduction numbers of the avian and the pandemic strains.

  2. (b)

    Fit the model to the data in Table 11.1. Take ν z  = 36. 5. Estimate the reproduction numbers from the fit. The reproduction number of the pandemic strain should be between 1. 5 and 3.

  3. (c)

    Compute the invasion number of the pandemic strain.

  4. (d)

    Compute the elasticity of the pandemic invasion number with respect to I d . Culling facilitates invasion, but how pronounced is that effect?

11.3. Consider the reproduction number

$$\displaystyle{\mathcal{R}_{0} = \frac{<\beta _{d} >\varLambda _{d}} {\mu _{d}^{2}}.}$$

Using the periodicity properties of \(\sin\), simplify it as much as possible.

11.4. Show that model (11.14) has as a reproduction number

$$\displaystyle{\mathcal{R}_{0} = \frac{<\beta _{d} >\varLambda _{d}} {\mu _{d}^{2}}.}$$

11.5. Prove equality (11.16).

11.6. Let β(t), μ(t), and γ(t) be periodic with period T. Consider the model

$$\displaystyle{I'(t) =\beta (t)(1 - I(t))I(t) - (\mu (t) +\gamma (t))I(t).}$$
  1. (a)

    Compute the reproduction number of this model.

  2. (b)

    Show that \(\mathcal{R}_{0}\) computed in (a) gives a threshold, that is, the DFE is locally asymptotically stable if \(\mathcal{R}_{0} < 1\) and unstable if \(\mathcal{R}_{0} > 1\).

  3. (c)

    Sow that the DFE is globally asymptotically stable if \(\mathcal{R}_{0} < 1\).

11.7. Let β(t), μ(t), and γ(t) be periodic with period T. Consider the model (see Problem 11.6)

$$\displaystyle{I'(t) =\beta (t)(1 - I(t))I(t) - (\mu (t) +\gamma (t))I(t).}$$
  1. (a)

    Show that the model has a unique periodic solution if \(\mathcal{R}_{0} > 1\).

  2. (b)

    Show that the periodic solution is globally asymptotically stable.

11.8. Let β(t), μ(t), and γ(t) be periodic with period T. Consider the two-strain model

$$\displaystyle{ \begin{array}{l} I_{1}'(t) =\beta _{1}(t)(1 - I_{1}(t) - I_{2}(t))I_{1}(t) - (\mu _{1}(t) +\gamma _{1}(t))I_{1}(t), \\ I_{2}'(t) =\beta _{2}(t)(1 - I_{1}(t) - I_{2}(t))I_{2}(t) - (\mu _{2}(t) +\gamma _{2}(t))I_{2}(t). \end{array} }$$
(11.22)
  1. (a)

    Define the reproduction number of each strain.

  2. (b)

    Let ξ 1(t) and ξ 2(t) be the periodic solutions of strain one alone and strain two alone. Define the invasion numbers of strain one and strain two.

Hint: You have to look at the stability of the solution (ξ 1(t), 0). Define the Floquet exponent for strain two and read off the invasion number.

Rights and permissions

Reprints and permissions

Copyright information

© 2015 Springer Science+Business Media New York

About this chapter

Cite this chapter

Martcheva, M. (2015). Zoonotic Disease, Avian Influenza, and Nonautonomous Models. In: An Introduction to Mathematical Epidemiology. Texts in Applied Mathematics, vol 61. Springer, Boston, MA. https://doi.org/10.1007/978-1-4899-7612-3_11

Download citation

Publish with us

Policies and ethics