root {medfate}R Documentation

Root functions

Description

Functions to calculate properties of fine/coarse roots within the soil, given root system parameters and soil layer definition.

Usage

root_conicDistribution(Zcone, d)

root_ldrDistribution(Z50, Z95, d)

root_individualRootedGroundArea(VolInd, V, d, rfc)

root_specificRootSurfaceArea(specificRootLength, rootTissueDensity)

root_fineRootRadius(specificRootLength, rootTissueDensity)

root_fineRootHalfDistance(rootLengthDensity)

root_fineRootAreaIndex(
  Ksoil,
  krhizo,
  lai,
  specificRootLength,
  rootTissueDensity,
  rootLengthDensity
)

root_fineRootBiomass(
  Ksoil,
  krhizo,
  lai,
  N,
  specificRootLength,
  rootTissueDensity,
  rootLengthDensity
)

root_rhizosphereMaximumConductance(
  Ksoil,
  fineRootBiomass,
  lai,
  N,
  specificRootLength,
  rootTissueDensity,
  rootLengthDensity
)

root_fineRootSoilVolume(fineRootBiomass, specificRootLength, rootLengthDensity)

root_coarseRootSoilVolumeFromConductance(
  Kmax_rootxylem,
  VCroot_kmax,
  Al2As,
  v,
  d,
  rfc
)

root_coarseRootLengthsFromVolume(VolInd, v, d, rfc)

root_coarseRootLengths(v, d, depthWidthRatio = 1)

root_coarseRootSoilVolume(v, d, depthWidthRatio = 1)

root_horizontalProportions(poolProportions, VolInd, N, V, d, rfc)

Arguments

Zcone

A vector of depths (in mm) corresponding to the root cone tip.

d

The width (in mm) corresponding to each soil layer.

Z50

A vector of depths (in mm) corresponding to 50% of roots.

Z95

A vector of depths (in mm) corresponding to 95% of roots.

VolInd

Volume of soil (in m3) occupied by coarse roots per individual.

V

Matrix of proportions of fine roots (cohorts x soil layers).

rfc

Percentage of rock fragment content (volume basis) for each layer.

specificRootLength

Specific fine root length (length of fine roots over weight).

rootTissueDensity

Fine root tissue density (weight over volume at turgidity).

rootLengthDensity

Fine root length density (length of fine roots over soil volume; cm/cm3)

Ksoil

Soil saturated conductivity (mmol·m-1·s-1·MPa-1).

krhizo

Rhizosphere maximum conductance per leaf area (mmol·m-2·s-1·MPa-1).

lai

Leaf area index.

N

Density of individuals per hectare.

fineRootBiomass

Biomass of fine roots (g).

Kmax_rootxylem

Sapwood-specific hydraulic conductivity of root xylem (in kg H2O·s-1·m-1·MPa-1).

VCroot_kmax

Root xylem maximum conductance per leaf area (mmol·m-2·s-1·MPa-1).

Al2As

Leaf area to sapwood area ratio (in m2·m-2).

v

Vector of proportions of fine roots in each soil layer.

depthWidthRatio

Ratio between radius of the soil layer with the largest radius and maximum rooting depth.

poolProportions

Division of the stand area among plant cohorts (proportions).

Details

Value

See details.

Author(s)

Miquel De Cáceres Ainsa, CREAF

References

Schenk, H., Jackson, R., 2002. The global biogeography of roots. Ecol. Monogr. 72, 311–328.

Sperry, J. S., Y. Wang, B. T. Wolfe, D. S. Mackay, W. R. L. Anderegg, N. G. Mcdowell, and W. T. Pockman. 2016. Pragmatic hydraulic theory predicts stomatal responses to climatic water deficits. New Phytologist 212, 577–589.

See Also

spwb, forest2spwbInput, soil

Examples

#Load example plot plant data
data(exampleforestMED)

#Default species parameterization
data(SpParamsMED)

ntree = nrow(exampleforestMED$treeData)

#Initialize soil with default soil params
S = soil(defaultSoilParams())

#Calculate conic root system for trees
V1 = root_conicDistribution(Z=rep(2000,ntree), S$dVec)            
print(V1)
     
#Calculate LDR root system for trees (Schenck & Jackson 2002)
V2 = root_ldrDistribution(Z50 = rep(200,ntree), 
                          Z95 = rep(1000,ntree), S$dVec)
print(V2)     


[Package medfate version 3.2.0 Index]