Health impacts of waterborne microbes: Difference between revisions

From Opasnet
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 77: Line 77:
MicrobeLogDecrease <- Ovariable("MicrobeLogDecrease",
MicrobeLogDecrease <- Ovariable("MicrobeLogDecrease",
                                 dependencies=data.frame(
                                 dependencies=data.frame(
                                   Name=c("TreatmentEfficiency", "Disinfection", "ChlorineEfficiency"),
                                   Name=c("TreatmentEfficiency", "ChlorineEfficiency", "OzoneEfficiency", "UVEfficiency"),
                                   Ident=c("Op_en7954/variable", "Op_en7955/variable", "Op_en7956/efficiency")
                                   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 disinfection and other treatment
                                   # Calculate the total log decrease of pathogen concentration from treatment methods
                                  # methods, then sum them to get the total not including chlorination
                                   MicrobeLogDecrease <- oapply(TreatmentEfficiency, cols="TreatmentMethod", FUN=sum)
                                   MicrobeLogDecrease <- oapply(Disinfection, cols="TreatmentMethod", FUN=sum) +
                                   # Then sum that with the disinfection methods to get the total microbe log decrease
                                    oapply(TreatmentEfficiency, cols="TreatmentMethod", FUN=sum)
                                   MicrobeLogDecrease <- MicrobeLogDecrease+ChlorineEfficiency+OzoneEfficiency+UVEfficiency
                                   # Then sum that with chlorination to get the total microbe log decrease
                                   MicrobeLogDecrease <- MicrobeLogDecrease+ChlorineEfficiency
                                    
                                    
                                   return(MicrobeLogDecrease)
                                   return(MicrobeLogDecrease)
Line 145: Line 143:
                       formula = function(...){
                       formula = function(...){
                         out <- TreatedConcentration * RawConsumption
                         out <- TreatedConcentration * RawConsumption
                         colnames(out@output)[colnames(out@output) == "Pathogen"] <- "Exposure_agent
                         colnames(out@output)[colnames(out@output) == "Pathogen"] <- "Exposure_agent"
                         return(out)
                         return(out)
                       }
                       }

Latest revision as of 10:10, 11 September 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

Log decrease of concentration of microbes in drinking water due to water treatment

+ Show code

Pathogen concentration in drinking water

+ Show code

The amount of pathogens an average water consumer is exposed to in a day

+ Show code

See also