fW.Standcarb(SoilR)
fW.Standcarb()所属R语言包:SoilR
Effects of moisture on decomposition rates according to the StandCarb model
水分对分解率的影响的StandCarb模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates the effects of moisture on decomposition rates according to the StandCarb model.
计算分解速率的影响的水分根据的StandCarb模型。
用法----------Usage----------
参数----------Arguments----------
参数:Moist
A scalar or vector containing values of moisture content of a litter or soil pool (%).
包含一个标量或矢量的枯枝落叶或土池(%)水分含量值。
参数:MatricShape
A scalar that determines when matric limit is reduced to the point that decay can begin to occur.
标量时,确定基质限制沦落到这个地步,的衰变可以开始发生。
参数:MatricLag
A scalar used to offset the curve to the left or right.
一个标量,用于向左或向右偏移曲线。
参数:MoistMin
A scalar determining the minimum moisture content.
标量确定的最低水分含量。
参数:MoistMax
A scalar determining the maximum moisture content without diffusion limitations.
标量确定的最大水分含量不扩散限制。
参数:DiffuseShape
A scalar that determines the range of moisture contents where diffusion is not limiting.
一个标量,确定其中扩散不限制的范围内的水分含量。
参数:DiffuseLag
A scalar used to shift the point when moisture begins to limit diffusion.
一个标量,水分点时,开始限制扩散转移。
值----------Value----------
A data frame with limitation due to water potential (MatricLimit), limitation due to oxygen diffusion (DiffuseLimit), and the overall limitation of moisture on decomposition rates (MoistDecayIndex).
一种数据框的限制,由于对水的电位(MatricLimit),由于氧的扩散(DiffuseLimit),并且整体的水分限制对分解速率(MoistDecayIndex)限制。
(作者)----------Author(s)----------
Carlos A. Sierra <csierra@bgc-jena.mpg.de>, Markus Mueller <mamueller@bgc-jena.mpg.de>
参考文献----------References----------
实例----------Examples----------
MC=0:500
DeadFoliage=fW.Standcarb(MC)
DeadBranch=fW.Standcarb(MC,MoistMax=200)
DeadWood=fW.Standcarb(MC,MoistMax=150)
StableSoil=fW.Standcarb(MC,MoistMin=15,MoistMax=100)
plot(MC,DeadFoliage$MoistDecayIndex,type="l",xlab="Moisture Content (%)",ylab="f(W) (unitless)",main="Effects of moisture on decomposition rates according to the StandCarb model")
lines(MC,DeadBranch$MoistDecayIndex,col=4)
lines(MC,DeadWood$MoistDecayIndex,col=3)
lines(MC,StableSoil$MoistDecayIndex,col=2)
legend("topright",c("Dead Foliage","Dead Branch","Dead Wood","Stable Soil"),lty=c(1,1,1),col=c(1,4,3,2),bty="n")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|