Calculate hardness from calcium and magnesium
This function takes Ca and Mg in mg/L and returns hardness in mg/L as CaCO3
calculate_hardness(ca, mg, type = "total", startunit = "mg/L")
ca
: Calcium concentration in mg/L as Camg
: Magnesium concentration in mg/L as Mgtype
: "total" returns total hardness, "ca" returns calcium hardness. Defaults to "total"startunit
: Units of Ca and Mg. Defaults to mg/LA numeric value for the total hardness in mg/L as CaCO3.
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")
Useful links