R/cond.to.spc.R

Defines functions cond.to.spc

Documented in cond.to.spc

#' Converts conductance to specific conductivity
#'
#' @param SpCond specific conductance (microsiemens per centimeter)
#' @param Temp temperature (Degree C)
#' @keywords Conductivity
#' @export
#' @return Calculates specific conductivity consistent with Method 2510B of the Standard Methods for the Examination of Water and Wastewater (20th Edition).
#' @examples
#' cond.to.spc(25.5,1321)

cond.to.spc=function(temp,cond){
  spc=cond/(1+0.0191*(temp-25))
  return(spc)
}
SwampThingPaul/AnalystHelper documentation built on March 29, 2024, 6:41 p.m.