Health impacts of waterborne microbes: Difference between revisions

From Opasnet
Jump to navigation Jump to search
Line 55: Line 55:
</rcode>
</rcode>


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


<rcode  
<rcode  
Line 86: Line 86:


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


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


<rcode  
<rcode  
Line 98: Line 100:
library(OpasnetUtils)
library(OpasnetUtils)


TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = data.frame(
                                  Name=c("RawConcentration", "MicrobeLogDecrease"),
                                  Ident=c("Op_en7953/variable", "Op_en7957/logdecrease")
                                  ),
                                  formula = function(...){
                                    # Use the rows of RawConcentration with the right type of raw water
                                    # THE DATA FOR WHICH RAW WATER TYPE TO USE COMES IN REALITY FROM THE USER???
                                    # THIS HAS TO BE CHANGED WHEN INTERFACE IS MADE
                                    raw.water <- "Surface water - high load"
                                   
                                    RawConcentration <- RawConcentration[RawConcentration$'Raw water source' == raw.water]
                                   
                                    # Calculate the concentration of bacteria after treatment from log decrease
                                    out <- RawConcentration * 10 ^(-1*(MicrobeLogDecrease))
                                   
                                    return(out)
                                  })


objects.store(TreatedConcentration)


TreatedConcentration <- Ovariable("TreatedConcentration", dependencies = dependencies, formula = funktio)
cat("Ovariable TreatedConcentration saved. \n")
 
objects.store(TreatedConcentration)


</rcode>
</rcode>
Line 123: Line 141:


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


</rcode>
</rcode>

Revision as of 06:37, 16 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

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