Learn R Programming

tidywater (version 0.7.0)

biofilter_toc: Determine TOC removal from biofiltration using Terry & Summers BDOC model

Description

This function applies the Terry model to a water created by define_water to determine biofiltered DOC (mg/L).

Usage

biofilter_toc(water, ebct, ozonated = TRUE)

Value

A water class object with modeled DOC removal from biofiltration.

Arguments

water

Source water object of class "water" created by define_water.

ebct

The empty bed contact time (min) used for the biofilter

ozonated

Logical; TRUE if the water is ozonated (default), FALSE otherwise

Examples

Run this code
library(tidywater)
water <- define_water(ph = 7, temp = 25, alk = 100, toc = 5.0, doc = 4.0, uv254 = .1) %>%
  biofilter_toc(ebct = 10, ozonated = FALSE)

Run the code above in your browser using DataLab