Health impacts of waterborne microbes: Difference between revisions
Jump to navigation
Jump to search
(→RCode) |
(→RCode) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 60: | Line 60: | ||
objects.store(RawConsumption) | objects.store(RawConsumption) | ||
cat("Ovariable RawConsumption saved. \n") | cat("Ovariable RawConsumption saved. \n") | ||
</rcode> | </rcode> | ||
Line 94: | Line 77: | ||
MicrobeLogDecrease <- Ovariable("MicrobeLogDecrease", | MicrobeLogDecrease <- Ovariable("MicrobeLogDecrease", | ||
dependencies=data.frame( | dependencies=data.frame( | ||
Name=c("TreatmentEfficiency", " | Name=c("TreatmentEfficiency", "ChlorineEfficiency", "OzoneEfficiency", "UVEfficiency"), | ||
Ident=c("Op_en7954/variable", "Op_en7955/ | Ident=c("Op_en7954/variable", "Op_en7956/efficiency", "Op_en7955/ozefficiency", "Op_en7955/uvefficiency") | ||
), | ), | ||
formula=function(...){ | formula=function(...){ | ||
# Calculate the total log decrease of pathogen concentration from | # Calculate the total log decrease of pathogen concentration from treatment methods | ||
MicrobeLogDecrease <- oapply(TreatmentEfficiency, cols="TreatmentMethod", FUN=sum) | |||
MicrobeLogDecrease <- | # Then sum that with the disinfection methods to get the total microbe log decrease | ||
MicrobeLogDecrease <- MicrobeLogDecrease+ChlorineEfficiency+OzoneEfficiency+UVEfficiency | |||
# Then sum that with | |||
MicrobeLogDecrease <- MicrobeLogDecrease+ChlorineEfficiency | |||
return(MicrobeLogDecrease) | return(MicrobeLogDecrease) | ||
Line 128: | Line 109: | ||
TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = data.frame( | TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = data.frame( | ||
Name=c("RawConcentration", "MicrobeLogDecrease | Name=c("RawConcentration", "MicrobeLogDecrease"), | ||
Ident=c("Op_en7953/variable", "Op_en7957/logdecrease | Ident=c("Op_en7953/variable", "Op_en7957/logdecrease") | ||
), | ), | ||
formula = function(...){ | formula = function(...){ | ||
# Calculate the concentration of bacteria after treatment from log decrease | # Calculate the concentration of bacteria after treatment from log decrease | ||
out <- RawConcentration * 10 ^(-1*(MicrobeLogDecrease)) | out <- RawConcentration * 10 ^(-1*(MicrobeLogDecrease)) | ||
Line 157: | Line 136: | ||
library(OpasnetUtils) | library(OpasnetUtils) | ||
exposure <- Ovariable("exposure", | |||
dependencies = data.frame( | dependencies = data.frame( | ||
Name = c("TreatedConcentration", "RawConsumption"), | Name = c("TreatedConcentration", "RawConsumption"), | ||
Line 163: | Line 142: | ||
), | ), | ||
formula = function(...){ | formula = function(...){ | ||
out <- TreatedConcentration * RawConsumption | |||
colnames(out@output)[colnames(out@output) == "Pathogen"] <- "Exposure_agent" | |||
return(out) | |||
} | } | ||
) | ) | ||
objects.store( | objects.store(exposure) | ||
cat("Ovariable | cat("Ovariable exposure saved. \n") | ||
</rcode> | </rcode> |
Latest revision as of 10:10, 11 September 2019
Moderator:Heta (see all) |
|
Upload data
|
Question
What are the health impacts of waterborne microbes in drinking water?
Answer
Rationale
Data
Health impacts of waterborne microbes depends on the following parameters:
- Exposure to pathogens
- Drinking water consumption
- Concentrations of pathogens in drinking water
Calculations
RCode
Daily cold tap water use of Finns
Log decrease of concentration of microbes in drinking water due to water treatment
Pathogen concentration in drinking water
The amount of pathogens an average water consumer is exposed to in a day
See also
- Water guide
- http://permanent.access.gpo.gov/lps35390/cfpub.epa.gov/ncea/cfm/recordisplay.cfm-deid=55145.htm
- Finley, B., Proctor, D., Scott, P., Harrington, N., Paustenbach, D., Price, P. 1994. Recommended distributions for exposure factors frequently used in health risk assessment. Risk Analysis 14(4), 533-553.
- Havelaar, A. and Melse, J. M. (2003). Quantifying public health risk in the WHO Guidelines for Drinking‐ Water Quality: a burden of disease approach. RIVM raport 734301022. Bilthoven, RIVM.