kconv(seacarb)
kconv()所属R语言包:seacarb
Conversion factors to change the pH scale of dissociation constants
转换因素来改变pH值的解离常数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Conversion factors from the total scale to the free and seawater scales
从总规模的自由和海水尺度的转换因素
用法----------Usage----------
kconv(S=35,T=25, P=0, kf="x")
参数----------Arguments----------
参数:S
Salinity, default is 35
盐度,默认为35
参数:T
Temperature in degrees Celsius, default is 25oC
摄氏温度,默认为25℃
参数:P
Hydrostatic pressure in bar (surface = 0), default is 0
条形的静水压力(表面= 0),默认为0
参数:kf
"pf" for using Kf from Perez and Fraga (1987) and "dg" for using Kf from Dickson and Riley (1979 in Dickson and Goyet, 1994); the default value is "pf", except if T is outside the ragne 9 to 33oC or of S is outside the range 10 to 40. In these cases, the default is "dg".
“PF”使用KF佩雷斯和弗拉加(1987年)和“DG”使用KF迪克森和Riley(1979年中迪克森和Goyet,1994年),默认值是“PF”,除非T是外部ragne 9 33oC或S的是10~40的范围之外。在这些情况下,默认为“DG”。
Details
详细信息----------Details----------
It is critical to consider that each formulation is valid in specific ranges of temperature and salinity: - Perez and Fraga (1987): S ranging between 10 and 40 and T ranging between 9 and 33oC. - Dickson and Riley (1979 in Dickson and Goyet, 1994): S ranging between 0 and 45 and T ranging between 0 and 45oC.
这是关键的考虑,每个配方是有效的,在特定的温度和盐度范围: - 佩雷斯和弗拉加(1987):S介于10和40和T 9和33oC之间。 - 迪克森和Riley(1979年中迪克森和Goyet,1994年):S 0~45和T介于0和45℃之间。
值----------Value----------
The function returns a list with 3 conversion factors :
该函数返回一个列表,3个转换系数:
参数:ktotal2SWS
to convert from the total scale to seawater scale
从总规模将其转换到海水规模
参数:ktotal2free
to convert from the total scale to the free scale
转换从总规模的免费规模
参数:kfree2SWS
to convert from the free scale to the seawater scale
转换免费规模的海水规模
(作者)----------Author(s)----------
Karline Soetaert <a href="mailto:K.Soetaert@nioo.knaw.nl">K.Soetaert@nioo.knaw.nl</a>
参考文献----------References----------
<h3>See Also</h3> <code>pHconv</code>.
实例----------Examples----------
##To convert dissociation constants from the total scale to the free scale[#要转换的总规模从解离常数的免费规模]
## (at salinity=35, temperature=25oC and atmospheric pressure):[#(在盐度= 35,温度= 25℃和大气压力下):]
kconv(35,25,0)
conv <- kconv()
c(K1_total=K1(),K1_SWS=K1()*conv$ktotal2SWS,K1_free=K1()*conv$ktotal2free)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|