From f5f0365725772f073281911f0de2490bf5dce618 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Mon, 17 Jan 2022 14:01:40 +0100 Subject: [PATCH] Added cn reference to the code --- cara/monte_carlo/data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cara/monte_carlo/data.py b/cara/monte_carlo/data.py index 3b9172d2..290f5920 100644 --- a/cara/monte_carlo/data.py +++ b/cara/monte_carlo/data.py @@ -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 = {