diff --git a/README.md b/README.md
index b081f43d..c4e8d8b0 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ CARA – COVID Airborne Risk Assessment tool
Henriques A, Mounet N, Aleixo L, Elson P, Devine J, Azzopardi G, Andreini M, Rognlien M, Tarocco N, Tang J. (2022). Modelling airborne transmission of SARS-CoV-2 using CARA: risk assessment for enclosed spaces. _Interface Focus 20210076_. https://doi.org/10.1098/rsfs.2021.0076
Reference on the Short-range expiratory jet model from:
-Wei Jia, Jianjian Wei, Pan Cheng, Qun Wang, Yuguo Li. (2022). Exposure and respiratory infection risk via the short-range airborne route. _Building and Environment_ *219*: 109166.
+Jia W, Wei J, Cheng P, Wang Q, Li Y. (2022). Exposure and respiratory infection risk via the short-range airborne route. _Building and Environment_ *219*: 109166.
https://doi.org/10.1016/j.buildenv.2022.109166
## Applications
diff --git a/cara/apps/templates/base/index.html.j2 b/cara/apps/templates/base/index.html.j2
index 11be5401..bf7e702f 100644
--- a/cara/apps/templates/base/index.html.j2
+++ b/cara/apps/templates/base/index.html.j2
@@ -62,7 +62,7 @@
Download citation
Short-range expiratory jet model from:
- - Wei Jia, Jianjian Wei, Pan Cheng, Qun Wang, Yuguo Li. (2022).
+
- Jia W, Wei J, Cheng P, Wang Q, Li Y. (2022).
Exposure and respiratory infection risk via the short-range airborne route.
Building and Environment 219: 109166. doi.org/10.1016/j.buildenv.2022.109166
diff --git a/cara/models.py b/cara/models.py
index 013c8663..f539c2e2 100644
--- a/cara/models.py
+++ b/cara/models.py
@@ -1096,7 +1096,7 @@ class ShortRangeModel:
def dilution_factor(self) -> _VectorisedFloat:
'''
The dilution factor for the respective expiratory activity type.
- Based on the two-stage (jet/puff) expiratory jet model by Wei et al (2022) - https://doi.org/10.1016/j.buildenv.2022.109166
+ Based on the two-stage (jet/puff) expiratory jet model by Jia et al (2022) - https://doi.org/10.1016/j.buildenv.2022.109166
'''
# Average mouth diameter
D = 0.02
@@ -1159,7 +1159,7 @@ class ShortRangeModel:
concentration_model.infected.particle.diameter, long_range_normed_concentration)
# Short-range concentration formula. The long-range concentration is added in the concentration method (ExposureModel).
- # based on continuum model proposed by Wei et al (2022) - https://doi.org/10.1016/j.buildenv.2022.109166
+ # based on continuum model proposed by Jia et al (2022) - https://doi.org/10.1016/j.buildenv.2022.109166
return ((1/dilution)*(jet_origin_concentration - long_range_normed_concentration_interpolated))
return 0.