Health impacts of waterborne microbes: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(Created page with "Category:Drinking water Category:Water guide {{variable|moderator=Heta}} == Question == What are the health impacts of waterborne microbes in drinking water? == Ans...")
 
No edit summary
Line 26: Line 26:
==== RCode ====
==== RCode ====


How much cold tap water Finns use per day?
Daily cold tap water use of Finns  


<rcode name="consumption">
<rcode name="consumption">
# This is code Op_en:/consumption on page [[Health impacts of waterborne microbes]]
# This is code Op_en7957/consumption on page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
library(OpasnetUtils)


Line 39: Line 39:


<rcode name="rawconsumption">
<rcode name="rawconsumption">
# This is code Op_en:/rawconsumption in page [[Health impacts of waterborne microbes]]
# This is code Op_en7957/rawconsumption in page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
library(OpasnetUtils)


dependencies = data.frame(
dependencies = data.frame(
Name = c("Wateruse"),
Name = c("Wateruse"),
Ident = c("Op_fi1757/consumption")
Ident = c("Op_en7957/consumption")
)
)


Line 55: Line 55:
oprint(RawConsumption)
oprint(RawConsumption)
</rcode>
</rcode>
Concentrations of pathogens in drinking water
<rcode
name="pathconcentration"
label="Initialize variable"
graphics="1"
>
#This is code "Op_en7957/pathconcentration" on page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
dependencies <- data.frame(
Name = c("RawConcentration", "Disinfection", "TreatmentEfficiency", "ChlorineEfficiency"),
Ident = c("Op_en7953/variable", "Op_en7955/variable", "Op_en7954/variable", "Op_en7956/efficiency")
)
funktio <- function(...) {
#MicrobeLogDecrease <- combine(Disinfection, TreatmentEfficiency, ChlorineEfficiency, name = "MicrobeLogDecrease")
#MicrobeLogDecrease@output[["TreatmentMethod"]][
# MicrobeLogDecrease@output[["MicrobeLogDecreaseSource"]] == "ChlorineEfficiencyF"
#] <- "Chlorination"
#MicrobeLogDecrease <- oapply(MicrobeLogDecrease, cols = c("TreatmentMethod", "ChlorineDoseSource"), FUN = sum, na.rm = TRUE)
# Varo laskemasta kloorausta monesti
#MicrobeLogDecrease@output <- fillna(MicrobeLogDecrease@output, colnames(MicrobeLogDecrease@output)[MicrobeLogDecrease@marginal])
MicrobeLogDecrease <- orbind(Disinfection, TreatmentEfficiency)
MicrobeLogDecrease <- orbind(MicrobeLogDecrease, ChlorineEfficiency)
MicrobeLogDecrease <- fillna(MicrobeLogDecrease, grep("Source$", colnames(MicrobeLogDecrease)))
MicrobeLogDecrease$DisinfectionResult[is.na(MicrobeLogDecrease$DisinfectionResult)] <- 0
MicrobeLogDecrease$TreatmentEfficiencyResult[is.na(MicrobeLogDecrease$TreatmentEfficiencyResult)] <- 0
MicrobeLogDecrease$ChlorineEfficiencyResult[is.na(MicrobeLogDecrease$ChlorineEfficiencyResult)] <- 0
MicrobeLogDecrease$MicrobeLogDecreaseResult <- MicrobeLogDecrease$DisinfectionResult +
MicrobeLogDecrease$TreatmentEfficiencyResult + MicrobeLogDecrease$ChlorineEfficiencyResult
MicrobeLogDecrease <- Ovariable(
"MicrobeLogDecrease",
dependencies = data.frame(
Name = c("Disinfection", "TreatmentEfficiency", "ChlorineEfficiency")
),
output = MicrobeLogDecrease
)
MicrobeLogDecrease <- CheckMarginals(MicrobeLogDecrease, verbose = FALSE)
MicrobeLogDecrease <- oapply(MicrobeLogDecrease, cols = c("TreatmentMethod"), FUN = sum, na.rm = TRUE)
out <- RawConcentration * 10 ^(-1*(MicrobeLogDecrease))
return(out@output)
}
TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = dependencies, formula = funktio, save = TRUE)
oprint(TreatedConcentration)
</rcode>
== 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. [http://www.ncbi.nlm.nih.gov/pubmed/7972957 Recommended distributions for exposure factors frequently used in health risk assessment.]  Risk Analysis 14(4), 533-553.

Revision as of 06:09, 5 July 2019



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:

Calculations

RCode

Daily cold tap water use of Finns

+ Show code


+ Show code

Concentrations of pathogens in drinking water

+ Show code

See also