Skip to content

Commit

Permalink
added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wjallen committed Oct 4, 2024
1 parent 487bdc6 commit 06e98f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 0 additions & 5 deletions data/texas/nu_value_matrix.csv

This file was deleted.

3 changes: 3 additions & 0 deletions src/baseclasses/ModelParameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ def __init__(self, simulation_properties:Type[InputProperties]):
self.chi = 1/float(simulation_properties.chi)

self.rho = float(simulation_properties.rho)

# the user enters one nu value for each age group, assumed to be low risk
# population. use multiplier 9x to derive values for high risk population
self.nu_values = [[],[]]
self.nu_values[0] = [float(x) for x in simulation_properties.nu]
self.nu_values[1] = [float(x)*9 for x in simulation_properties.nu]
Expand Down

0 comments on commit 06e98f5

Please sign in to comment.