Health impacts of waterborne microbes: Difference between revisions

From Opasnet
Jump to navigation Jump to search
 
(14 intermediate revisions by the same user not shown)
Line 28: Line 28:
Daily cold tap water use of Finns  
Daily cold tap water use of Finns  


<rcode name="consumption">
<rcode
      name="consumption"
      label="Initialize water use"
      embed=1
>
# This is code Op_en7957/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 34: Line 38:
Wateruse = Ovariable("Wateruse", data = data.frame(WateruseResult = 1153))
Wateruse = Ovariable("Wateruse", data = data.frame(WateruseResult = 1153))


objects.save(Wateruse)
objects.store(Wateruse)
cat("Ovariable Wateruse saved. \n")


oprint(Wateruse)
</rcode>
</rcode>


<rcode name="rawconsumption">
<rcode
        name="rawconsumption"
        label="Initialize raw consumption"
embed=1
>
# This is code Op_en7957/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)
Line 51: Line 59:


objects.store(RawConsumption)
objects.store(RawConsumption)
cat("Ovariable RawConsumption saved. \n")


oprint(RawConsumption)
</rcode>
</rcode>


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


<rcode  
<rcode  
Line 61: Line 69:
label="Initialize microbe log decrease"  
label="Initialize microbe log decrease"  
graphics="1"
graphics="1"
embed=1
>
>
#This is code "Op_en7957/logdecrease" on page [[Health impacts of waterborne microbes]]
#This is code "Op_en7957/logdecrease" on page [[Health impacts of waterborne microbes]]
Line 68: 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 86: Line 93:


objects.store(MicrobeLogDecrease)
objects.store(MicrobeLogDecrease)
cat("Ovariable MicrobeLogDecrease saved. \n")


</rcode>
</rcode>
Pathogen concentration in drinking water


<rcode  
<rcode  
name="pathconcentration"  
name="pathconcentration"  
label="Initialize microbe log decrease"  
label="Initialize pathogen concentration"  
graphics="1"
graphics="1"
embed=1
>
>
#This is code "Op_en7957/pathconcentration" on page [[Health impacts of waterborne microbes]]
#This is code "Op_en7957/pathconcentration" on page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
library(OpasnetUtils)


TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = data.frame(
                                  Name=c("RawConcentration", "MicrobeLogDecrease"),
                                  Ident=c("Op_en7953/variable", "Op_en7957/logdecrease")
                                  ),
                                  formula = function(...){


                                    # Calculate the concentration of bacteria after treatment from log decrease
                                    out <- RawConcentration * 10 ^(-1*(MicrobeLogDecrease))
                                   
                                    return(out)
                                  })


TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = dependencies, formula = funktio)
objects.store(TreatedConcentration)


objects.store(TreatedConcentration)
cat("Ovariable TreatedConcentration saved. \n")


</rcode>
</rcode>
Line 108: Line 128:
The amount of pathogens an average water consumer is exposed to in a day
The amount of pathogens an average water consumer is exposed to in a day


<rcode name="exposure">
<rcode
        name="exposure"
        label="Initialize exposure"
embed=1
>
#This is code "Op_en7957/exposure" on page [[Health impacts of waterborne microbes]]
#This is code "Op_en7957/exposure" on page [[Health impacts of waterborne microbes]]
library(OpasnetUtils)
library(OpasnetUtils)


Exposure <- Ovariable("Exposure",  
exposure <- Ovariable("exposure",  
                       dependencies = data.frame(
                       dependencies = data.frame(
                         Name = c("TreatedConcentration", "RawConsumption"),
                         Name = c("TreatedConcentration", "RawConsumption"),
Line 118: Line 142:
                         ),
                         ),
                       formula = function(...){
                       formula = function(...){
                         return(TreatedConcentration * RawConcumption)
                        out <- TreatedConcentration * RawConsumption
                        colnames(out@output)[colnames(out@output) == "Pathogen"] <- "Exposure_agent"
                         return(out)
                       }
                       }
)
)


objects.store(Exposure)
objects.store(exposure)
cat("Ovariable exposure saved. \n")


</rcode>
</rcode>

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