You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# STI dynamics-------------------------------------------------------------------------------------------------------------------------------------------------
317
335
cm.flow("S_STI", "Ia_STI", (args["Psi"]) *foi_STI(y, args)) # Susceptible to asymptomatic
318
336
cm.flow("S_STI", "Is_STI", (1-args["Psi"]) *foi_STI(y, args)) # Susceptible to symptomatic
319
-
cm.flow("Ia_STI", "S_STI", args["gamma_STI"]) # Asymptomatic to susceptible (recovery)
320
-
cm.flow("Ia_STI", "T_STI", lambda_a(y,args)) # Asymptomatic to tested and treatment
321
-
cm.flow("Is_STI", "T_STI", lambda_s(y,args)) # Symptomatic to tested and treatment
322
-
cm.flow("T_STI", "S_STI", args["gammaT_STI"]) # Treatment to susceptible (immunity loss)
323
-
cm.dy["S_STI"] -=args["Sigma"] # Influx
337
+
cm.flow("Ia_STI", "S_STI", args["gamma_STI"]) # Asymptomatic to susceptible (recovery)
338
+
cm.flow("Ia_STI", "T_STI", lambda_a(y,args)) # Asymptomatic to tested and treatment
339
+
cm.flow("Is_STI", "T_STI", lambda_s(y,args)) # Symptomatic to tested and treatment
340
+
cm.flow("T_STI", "S_STI", args["gammaT_STI"]) # Treatment to susceptible (immunity loss)
0 commit comments