fix unit conversion
This commit is contained in:
parent
f82ab3a6d1
commit
cd3e90823e
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ class MCInfectedPopulation(MCPopulation):
|
|||
def integrand(d: int) -> float:
|
||||
return function(d) * np.pi * d ** 3 / 6.0
|
||||
|
||||
return quad(integrand, 0.1, 30)[0]
|
||||
return quad(integrand, 0.1, 30)[0] * 1e-6
|
||||
|
||||
def emission_rate_when_present(self) -> np.ndarray:
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue