From 0870abd663adce79fde59c70998c6480dd8af960 Mon Sep 17 00:00:00 2001 From: markus Date: Thu, 4 Feb 2021 12:27:17 +0100 Subject: [PATCH] change O-mode CMD --- cara/montecarlo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index a053e010..62e83391 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -64,7 +64,7 @@ concentration_vs_diameter = ( (1 / d) * (1.0 / (np.sqrt(2 * np.pi) * 0.5)) * np.exp(-1 * (np.log(d) - 1.4) ** 2 / (2 * 0.5 ** 2))), # O-mode np.vectorize(lambda d: - (1 / d) * (0.001 / (np.sqrt(2 * np.pi) * 0.56)) * np.exp(-1 * (np.log(d) - 5.49) ** 2 / (2 * 0.56 ** 2))) + (1 / d) * (0.001 / (np.sqrt(2 * np.pi) * 0.56)) * np.exp(-1 * (np.log(d) - 4.98) ** 2 / (2 * 0.56 ** 2))) )