bjerrum(seacarb)
bjerrum()所属R语言包:seacarb
Bjerrum plot
比杰伦形图
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot the concentration of the various ionic forms of a molecule as a function of pH
作为pH的函数绘制的各种离子形式的分子的浓度
用法----------Usage----------
bjerrum(K1=K1(), K2=NULL, K3=NULL, phmin=2, phmax=12, by=0.1, conc=1,
type="l", col="black", ylab="Concentration (mol/kg)", add=FALSE, ...)
参数----------Arguments----------
参数:K1
First dissociation constant
首先解离常数
参数:K2
Second dissociation constant, default is NULL
第二解离常数,默认值是NULL
参数:K3
Third dissociation constant, default is NULL
三解离常数,默认值是NULL
参数:phmin
Minimum pH value, default is 2
最低pH值,默认值是2
参数:phmax
Maximum pH value, default is 12
最大的pH值,默认值是12
参数:by
Increment on the pH axis, default is 0.1
递增的pH值轴,默认为0.1
参数:conc
concentration of molecule, default is 1
分子的浓度,默认为1
参数:type
Type of plot, default is line
图类型,默认为线
参数:col
Color of plot, default is black
色彩的图,默认为黑色
参数:ylab
Label of Y axis, default is (mol/kg)
Y轴的标签,默认为(摩尔/千克)
参数:add
false:start new, true: add to current, default is false
假:启动新的,正确的:添加到当前,默认是假的
参数:...
Graphical parameters (see par) and any further arguments of plot, typically plot.default, may also be supplied as arguments to this function. Hence, the high-level graphics control arguments described under par and the arguments to title may be supplied to this function.
图形参数(见par)和任何进一步的论据的图,通常plot.default,还可以提供作为这个函数的参数。因此,高层次的图形控制在par和title的参数可能会提供给该函数的参数。
Details
详细信息----------Details----------
Note that the concentration is plotted in mol/kg only if conc is given is mol/kg
请注意,浓度绘制摩尔/公斤,仅当浓给出是摩尔/千克
(作者)----------Author(s)----------
Karline Soetaert <a href="mailto:K.Soetaert@nioo.knaw.nl">K.Soetaert@nioo.knaw.nl</a>
参考文献----------References----------
参见----------See Also----------
matplot, par, speciation.
matplot,par,speciation。
实例----------Examples----------
## Plot the bjerrum plot for the carbonate system using the default values[#图bjerrum图的碳酸盐系统使用默认值]
bjerrum(K1(),K2(),main="DIC speciation",lwd=2)
abline(v=-log10(K1()),col="grey")
mtext(side=3,at=-log10(K1()),"pK1")
abline(v=-log10(K2()),col="grey")
mtext(side=3,at=-log10(K2()),"pK2")
legend("left",lty=1:3,lwd=2,legend=c(expression(CO[2]),expression(HCO[3]^"-"),
expression(CO[3]^"2-")))
## Plot the bjerrum plot for phosphate using the default values[#图bjerrum图磷酸盐使用默认值]
bjerrum(K1p(),K2p(),K3p(),main="phosphate speciation",lwd=2)
legend("left",lty=1:4,lwd=2,legend=c(expression(H[3]~PO[4]),
expression(H[2]~PO[4]^"-"),
expression(HPO[4]^"2-"),expression(PO[4]^"3-")))
## Plot the bjerrum plot for the carbonate system using the values other [碳酸盐系统的使用其他】#绘制的bjerrum的的图]
## than the default ones, showing the effect of temperature[#比默认的,示出温度的影响]
bjerrum(K1(T=25,S=35),K2(T=25,S=35),conc=1.3,main="effect of temperature" )
bjerrum(K1(T=0,S=35),K2(T=0,S=35),conc=1.3,add=TRUE,col="red")
legend("left",lty=1,col=c("black","red"),legend=c("T=25 oC","T=0 oC"))
legend("right",lty=1:3,legend=c(expression(CO[2]),expression(HCO[3]^"-"),
expression(CO[3]^"2-")))
## Plot the bjerrum plot for the carbonate system using the values other [碳酸盐系统的使用其他】#绘制的bjerrum的的图]
## than the default ones, showing the effect of salinity[#比默认的显示效果的盐度]
bjerrum(K1(T=25,S=35),K2(T=25,S=35),conc=1.3,main="effect of salinity" )
bjerrum(K1(T=25,S=5),K2(T=25,S=5),conc=1.3,add=TRUE,col="blue")
legend("left",lty=1,col=c("black","blue"),legend=c("S=35","S=5"))
legend("right",lty=1:3,legend=c(expression(CO[2]),expression(HCO[3]^"-"),
expression(CO[3]^"2-")))
## Plot the bjerrum plot for the carbonate system using the values other [碳酸盐系统的使用其他】#绘制的bjerrum的的图]
## than the default ones, showing the effect of pressure[#比默认的值,显示压力的影响]
bjerrum(K1(P=0),K2(P=0),conc=1.3,main="effect of pressure" )
bjerrum(K1(P=300),K2(P=300),conc=1.3,add=TRUE,col="green")
legend("left",lty=1,col=c("black","green"),legend=c("P=0","P=300"),title="atm")
legend("right",lty=1:3,legend=c(expression(CO[2]),expression(HCO[3]^"-"),
expression(CO[3]^"2-")))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|