From a4114edaf948daab00871ac09c50d4b24572daa4 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Fri, 3 Sep 2021 15:53:35 +0200 Subject: [PATCH] bug fix on label --- cara/montecarlo.py | 4 ++-- cara/plot_output.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cara/montecarlo.py b/cara/montecarlo.py index 967417bb..9120581c 100644 --- a/cara/montecarlo.py +++ b/cara/montecarlo.py @@ -170,7 +170,7 @@ def exposure_model_from_vl_breathing_cn(): r"$\mathbf{c_{n,B}=0.06}$", color=cmap.to_rgba(cn), size='small') fig.colorbar(cmap, ticks=[0.01, 0.1, 0.5], - label="Particle emission concentration, ${c_{n,B}$") + label="Particle emission concentration, ${c_{n,B}}$") ax.set_yscale('log') ############# Coleman ############# @@ -237,7 +237,7 @@ def exposure_model_from_vl_talking_cn(): r"$\mathbf{c_{n,L}=0.2}$", color=cmap.to_rgba(cn), size='small') fig.colorbar(cmap, ticks=[0.01, 0.5, 1.0, 2.0], - label="Particle emission concentration, ${c_{n,L}$") + label="Particle emission concentration, ${c_{n,L}}$") ax.set_yscale('log') ############# Coleman ############# diff --git a/cara/plot_output.py b/cara/plot_output.py index fbb41323..4af9af8b 100644 --- a/cara/plot_output.py +++ b/cara/plot_output.py @@ -9,15 +9,15 @@ from cara.test_plots import * # Exhaled virions while talking, seated # print('\n<<<<<<<<<<< Vlout for Talking, seated >>>>>>>>>>>') -exposure_model_from_vl_talking() +#exposure_model_from_vl_talking() # Exhaled virions while breathing, seated # print('\n<<<<<<<<<<< Vlout for Breathing, seated >>>>>>>>>>>') -exposure_model_from_vl_breathing() +#exposure_model_from_vl_breathing() # Exhaled virions while talking according to BLO model, seated # print('\n<<<<<<<<<<< Vlout for Talking, seated with chosen Cn,L >>>>>>>>>>>') -exposure_model_from_vl_talking_cn() +#exposure_model_from_vl_talking_cn() # Exhaled virions while breathing according to BLO model, seated # print('\n<<<<<<<<<<< Vlout for Breathing, seated with chosen Cn,B >>>>>>>>>>>')