Agent-based Simulation of An SIR epidemic model for COVID-19 spread with fuzzy parameter: the case of Indonesia

No preview image

1 collaborator

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 6.4.0 • Viewed 182 times • Downloaded 15 times • Run 0 times
Download the 'Agent-based Simulation of An SIR epidemic model for COVID-19 spread with fuzzy parameter: the case of Indonesia' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


WHAT IS IT?

(a general understanding of what the model is trying to show or explain)

HOW IT WORKS

(what rules the agents use to create the overall behavior of the model)

HOW TO USE IT

(how to use the model, including a description of each of the items in the Interface tab)

THINGS TO NOTICE

(suggested things for the user to notice while running the model)

THINGS TO TRY

(suggested things for the user to try to do (move sliders, switches, etc.) with the model)

EXTENDING THE MODEL

(suggested things to add or change in the Code tab to make the model more complicated, detailed, accurate, etc.)

NETLOGO FEATURES

(interesting or unusual features of NetLogo that the model uses, particularly in the Code tab; or where workarounds were needed for missing features)

RELATED MODELS

(models in the NetLogo Models Library and elsewhere which are of related interest)

CREDITS AND REFERENCES

(a reference to the model's URL on the web if it has one, as well as any other necessary credits, citations, and links)

Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

globals [
  S           ; Susceptible proportion
  I           ; Infected proportion
  R           ; Recovered proportion
  beta        ; Infection rate
  mu_c        ; COVID death rate
  gamma       ; Recovery rate
  R0          ; Basic reproduction number

  ; Fuzzy parameters
  ;omega_min   ; Minimum virus load (default: 10)
  ;omega_0     ; Mid virus load (default: 100)
  ;omega       ; Current virus load (input via slider)

  ; Control parameters
  ;tau         ; Vaccine effectiveness (0-1)
  ;piy          ; Health protocol compliance (0-1)
  ;theta       ; Treatment effectiveness (0-1)
  ;vartheta    ; Medical factor (0-1, default: 0.9)

  ; Basic rates
  ;mu          ; Natural birth/death rate (default: 0.00625)
  ;mu0_c       ; Base COVID death rate (default: 0.00022114)
  ;gamma0      ; Base recovery rate (default: 0.001042)
]

breed [susceptibles susceptible]
breed [infecteds infected]
breed [recovereds recovered]

to setup
  clear-all
  ; Initialize proportions from paper data (scaled to proportions)
  set S 268757171 / 269600000  ; ≈0.996
  set I 457735 / 269600000     ; ≈0.0017
  set R 385094 / 269600000     ; ≈0.0014

  ; Initialize plots
  reset-ticks
end 

to go
  ; Update fuzzy parameters
  compute-beta
  compute-mu_c
  compute-gamma

  ; Calculate derivatives
  let dS (mu - (beta * S * I) - (mu + tau + piy) * S)
  let dI ((beta * S * I) - (mu + mu_c + theta + gamma) * I)
  let dR ((theta + gamma) * I + (piy + tau) * S - mu * R)

  ; Update proportions using Euler method
  set S S + dS * 0.1  ; Smaller time step for stability
  set I I + dI * 0.1
  set R R + dR * 0.1

  ; Calculate R0
  set R0 (beta * mu * (1 - tau) * (1 - piy)) /
         ((piy + tau + mu) * (theta + mu_c + gamma + mu))

  ; Ensure proportions stay reasonable
  set S max list 0 S
  set I max list 0 I
  set R max list 0 R

  tick
  update-plots
end 

to compute-beta
  ; Calculate infection rate based on virus load
  ifelse omega <= omega_min [
    set beta 0
  ] [
    ifelse omega < omega_0 [
      set beta ((omega - omega_min) * (1 - tau) * (1 - piy)) /
              (omega_0 - omega_min)
    ] [
      set beta (1 - tau) * (1 - piy)
    ]
  ]
end 

to compute-mu_c
  ; Calculate COVID death rate
  ifelse omega < omega_0 [
    set mu_c (((1 - vartheta) - mu0_c) * (1 - theta) * (omega / omega_0)) + mu0_c
  ] [
    set mu_c (1 - vartheta) * (1 - theta) + theta * mu0_c
  ]
end 

to compute-gamma
  ; Calculate recovery rate
  ifelse omega < omega_0 [
    set gamma ((gamma0 - 1) * (1 - theta) * (omega / omega_0)) + 1
  ] [
    set gamma gamma0 * (1 - theta) + theta
  ]
end 

to updates-plots
  set-current-plot "Population Proportions"
  plotxy ticks S
  set-current-plot-pen "Infected"
  plotxy ticks I
  set-current-plot-pen "Recovered"
  plotxy ticks R
end 

There is only one version of this model, created 5 months ago by Mark Angelo Gallardo.

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.