fW.Daycent1(SoilR)
fW.Daycent1()所属R语言包:SoilR
Effects of moisture on decomposition rates according to the DAYCENT model
水分对分解率的影响的DAYCENT模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculates the effects of Soil Water Content on decomposition rates according to the Daycent Model.
根据的Daycent模型计算土壤水分含量对分解率的影响。
用法----------Usage----------
参数----------Arguments----------
参数:swc
A scalar or vector with soil water content of a soil layer (cm).
一个标量或矢量与土壤含水量的土壤层(厘米)。
参数:a
Empirical coefficient. For fine textured soils a = 0.6. For coarse textured soils a = 0.55.
经验系数。织纹细腻土壤= 0.6。对于粗质土壤为a = 0.55。
参数:b
Empirical coefficient. For fine textured soils b = 1.27. For coarse textured soils b = 1.70.
经验系数。细质土壤B = 1.27。对于粗质土壤B = 1.70。
参数:c
Empirical coefficient. For fine textured soils c = 0.0012. For coarse textured soils c = -0.007.
经验系数。细质土壤C = 0.0012。对于粗质土壤C = -0.007。
参数:d
Empirical coefficient. For fine textured soils d = 2.84. For coarse textured soils d = 3.22.
经验系数。细质土壤D = 2.84。对于粗质土壤D = 3.22。
参数:partd
Particle density of soil layer.
粒子密度的土壤层。
参数:bulkd
Bulk density of soil layer (g/cm^3).
土壤层的堆积密度(克/厘米^ 3)。
参数:width
Thickness of a soil layer (cm).
的土壤层的厚度(厘米)。
值----------Value----------
A data frame with values of water filled pore space (wfps) and effects of soil water content on decomposition rates. Both vectors are unitless.
一个数据框的值的水填充孔隙空间(粮食计划署)和土壤水分含量对分解率的影响。这两个向量是无量纲的。
(作者)----------Author(s)----------
Carlos A. Sierra <csierra@bgc-jena.mpg.de>, Markus Mueller <mamueller@bgc-jena.mpg.de>
参考文献----------References----------
实例----------Examples----------
swc=seq(0,0.8,by=0.01) # A sequence of values of soil water content[土壤水分含量值的序列]
fine=fW.Daycent1(swc)
coarse=fW.Daycent1(swc,a=0.55,b=1.7,c=-0.007,d=3.22)
#This plot reproduces Figure 2b in Kelly et al. (2000)[此图再现图2b凯利等人。 (2000)]
plot(fine,type="l",xlim=c(0,1))
lines(coarse,lwd=2)
legend("topleft",c("coarse","fine"),lty=c(1,1),lwd=c(2,1),bty="n")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|