From f9e761edab2f0d739d31a4820e18acb536dc3421 Mon Sep 17 00:00:00 2001 From: Andrejh Date: Mon, 21 Feb 2022 14:43:20 +0100 Subject: [PATCH] timestep change --- cara/short_range_plots/scripts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cara/short_range_plots/scripts.py b/cara/short_range_plots/scripts.py index 3e537d3c..810ac13b 100644 --- a/cara/short_range_plots/scripts.py +++ b/cara/short_range_plots/scripts.py @@ -22,7 +22,7 @@ from mpl_toolkits.axes_grid1.inset_locator import mark_inset ######### Plot material ######### np.random.seed(2000) SAMPLE_SIZE = 250000 -TIMESTEP = 0.1 +TIMESTEP = 0.01 #viral_loads = np.linspace(2, 12, 600) _VectorisedFloat = typing.Union[float, np.ndarray] @@ -151,7 +151,7 @@ def concentration_curve(models, labels, labelsDose, colors, linestyles, thicknes def plot_vD_vs_exposure_time(exp_models: typing.List[mc.ExposureModel], labels, colors, linestyles, points: int = 20, time_in_minutes: bool = False, normalize_y_axis: bool = False) -> None: - TIMESTEP = 0.01 + TIMESTEP = 0.001 concentration_models = [model.concentration_model for model in exp_models] exposed_models = [model.exposed for model in exp_models]