R/x2pCO2.R

Defines functions x2pCO2

Documented in x2pCO2

# Copyright (C) 2014 James Orr
# This file is part of seacarb.
# Seacarb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or any later version.
# Seacarb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with seacarb; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
# Convert xCO2 (ppm) to pCO2 (uatm)

x2pCO2 <- function(S=35, T=25, Patm=1, xCO2=400){
  pH20 <- vapress(T=T, S=S, form="d2007")
  pCO2 <- (Patm - pH20) * xCO2
return(pCO2)
}
jpgattuso/seacarb-git documentation built on Feb. 17, 2024, 7:26 a.m.