Learn R Programming

tidywater (version 0.7.0)

calculate_hardness: Calculate hardness from calcium and magnesium

Description

This function takes Ca and Mg in mg/L and returns hardness in mg/L as CaCO3

Usage

calculate_hardness(ca, mg, type = "total", startunit = "mg/L")

Value

A numeric value for the total hardness in mg/L as CaCO3.

Arguments

ca

Calcium concentration in mg/L as Ca

mg

Magnesium concentration in mg/L as Mg

type

"total" returns total hardness, "ca" returns calcium hardness. Defaults to "total"

startunit

Units of Ca and Mg. Defaults to mg/L

Examples

Run this code
calculate_hardness(50, 10)

water_defined <- define_water(7, 20, 50, 100, 80, 10, 10, 10, 10, tot_po4 = 1)
calculate_hardness(water_defined@ca, water_defined@mg, "total", "M")

Run the code above in your browser using DataLab