-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow simulations until Nov 2021 at least. #127
base: main
Are you sure you want to change the base?
Conversation
…3rd of Dec last date of some time series.
…e last 14 days can get one.
…bined baseline scenario.
@@ -90,8 +90,12 @@ def _calculate_test_demand_from_share_known_cases( | |||
""" | |||
n_newly_infected = states["newly_infected"].sum() | |||
n_pos_tests = n_newly_infected * share_known_cases | |||
untested = ~states["knows_immune"] & ~states["pending_test"] | |||
|
|||
has_not_received_pcr_test_recently = states["cd_received_test_result_true"] < -14 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This possible problem came up in a review on sid today.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which problem are you referring to?
@@ -90,8 +90,12 @@ def _calculate_test_demand_from_share_known_cases( | |||
""" | |||
n_newly_infected = states["newly_infected"].sum() | |||
n_pos_tests = n_newly_infected * share_known_cases | |||
untested = ~states["knows_immune"] & ~states["pending_test"] | |||
|
|||
has_not_received_pcr_test_recently = states["cd_received_test_result_true"] < -14 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which problem are you referring to?
No description provided.