Added cn reference to the code
This commit is contained in:
parent
ad74d68db4
commit
f5f0365725
1 changed files with 2 additions and 2 deletions
|
|
@ -161,7 +161,7 @@ def expiration_distribution(BLO_factors):
|
|||
"""
|
||||
Returns an Expiration with an aerosol diameter distribution, defined
|
||||
by the BLO factors (a length-3 tuple).
|
||||
The total concentration of aerosols is computed by integrating
|
||||
The total concentration of aerosols, cn, is computed by integrating
|
||||
the distribution between 0.1 and 30 microns - these boundaries are
|
||||
an historical choice based on previous implementations of the model
|
||||
(it limits the influence of the O-mode).
|
||||
|
|
@ -169,7 +169,7 @@ def expiration_distribution(BLO_factors):
|
|||
dscan = np.linspace(0.1, 30. ,3000)
|
||||
return mc.Expiration(CustomKernel(dscan,
|
||||
BLOmodel(BLO_factors).distribution(dscan),kernel_bandwidth=0.1),
|
||||
BLOmodel(BLO_factors).integrate(0.1, 30.))
|
||||
cn=BLOmodel(BLO_factors).integrate(0.1, 30.))
|
||||
|
||||
|
||||
expiration_BLO_factors = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue