calc_MDL: Compute MDL

Description Usage Arguments Value Examples

View source: R/summary_functions.R

Description

Compute Maximum Daily Effluent Limitation (MDL) according to methods in EPA's Technical Support Document for Water Quality-based Toxics Control.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
calc_MDL(
  WLAa,
  WLAc,
  WLAhh,
  cv,
  n_samples = 4,
  prob_LTA = 0.99,
  percentile_MDL = 0.99,
  percentile_AML = 0.95
)

Arguments

WLAa

Numeric. Acute wasteload allocation (WLA). All WLA units should be identical.

WLAc

Numeric. Chronic wasteload allocation (WLA). All WLA units should be identical.

WLAhh

Numeric. Human health wasteload allocation (WLA). All WLA units should be identical.

cv

Numeric. Coefficient of variation (CV) of effluent data. See cv_adj function.

n_samples

Numeric. Number of sample observations.

prob_LTA

Numeric (fraction). Allowable exceedance probability of the WLA used to estimate long-term average (LTA).

percentile_MDL

Numeric (fraction). Lognormal distribution location for MDL.

percentile_AML

Numeric (fraction). Lognormal distribution location for AML.

Value

Numeric value in same units as the WLAs.

Examples

1
calc_MDL(WLAa=4, WLAc=1, WLAhh=10, cv=0.6)

reasonabletools documentation built on Nov. 8, 2020, 4:24 p.m.