fit_PV_curve( data, varnames = list(psi ="psi", mass ="mass", leaf_mass ="leaf_mass", bag_mass ="bag_mass", leaf_area ="leaf_area"), title =NULL)
Arguments
data: Dataframe
varnames: Variable names. varnames = list(psi = "psi", mass = "mass", leaf_mass = "leaf_mass", bag_mass = "bag_mass", leaf_area = "leaf_area") where psi is leaf water potential in MPa, mass is the weighed mass of the bag and leaf in g, leaf_mass is the mass of the leaf in g, bag_mass is the mass of the bag in g, and leaf_area is the area of the leaf in cm2.
title: Graph title
Returns
fit_PV_curve fits pressure-volume curve data to determine: SWC: saturated water content per leaf mass (g H2O g leaf dry mass ^ -1), PI_o: osmotic potential at full turgor (MPa), psi_TLP: leaf water potential at turgor loss point (TLP) (MPa), RWC_TLP: relative water content at TLP (%), eps: modulus of elasticity at full turgor (MPa), C_FT: relative capacitance at full turgor (MPa ^ -1), C_TLP: relative capacitance at TLP (MPa ^ -1), and C_FTStar: absolute capacitance per leaf area (g m ^ -2 MPa ^ -1). Element 1 of the output list contains the fitted parameters, element 2 contains the water-psi graph, and element 3 contains the 1/psi-100-RWC graph.
Examples
# Read in datadata <- read.csv(system.file("extdata","PV_curve.csv", package ="photosynthesis"))# Fit one PV curvefit <- fit_PV_curve(data[data$ID =="L2",], varnames = list( psi ="psi", mass ="mass", leaf_mass ="leaf_mass", bag_mass ="bag_mass", leaf_area ="leaf_area"))# See fitted parametersfit[[1]]# Plot water mass graphfit[[2]]# Plot PV Curvefit[[3]]# Fit all PV curves in a filefits <- fit_many(data, group ="ID", funct = fit_PV_curve, varnames = list( psi ="psi", mass ="mass", leaf_mass ="leaf_mass", bag_mass ="bag_mass", leaf_area ="leaf_area"))# See parametersfits[[1]][[1]]# See water mass - water potential graphfits[[1]][[2]]# See PV curvefits[[1]][[3]]# Compile parameter outputspars <- compile_data( data = fits, output_type ="dataframe", list_element =1)# Compile the water mass - water potential graphsgraphs1 <- compile_data( data = fits, output_type ="list", list_element =2)# Compile the PV graphsgraphs2 <- compile_data( data = fits, output_type ="list", list_element =3)
References
Koide RT, Robichaux RH, Morse SR, Smith CM. 2000. Plant water status, hydraulic resistance and capacitance. In: Plant Physiological Ecology: Field Methods and Instrumentation (eds RW Pearcy, JR Ehleringer, HA Mooney, PW Rundel), pp. 161-183. Kluwer, Dordrecht, the Netherlands
Sack L, Cowan PD, Jaikumar N, Holbrook NM. 2003. The 'hydrology' of leaves: co-ordination of structure and function in temperate woody species. Plant, Cell and Environment, 26, 1343-1356
Tyree MT, Hammel HT. 1972. Measurement of turgor pressure and water relations of plants by pressure bomb technique. Journal of Experimental Botany, 23, 267