Computes physical or economic water productivity per unit of water used.
water_productivity(
yield,
water_applied,
price = NULL,
unit = "mm",
verbose = TRUE
)Numeric vector. Crop yield (kg/ha).
Numeric vector. Total water applied (mm or m3/ha).
Numeric. Market price per kg of produce (currency/kg).
If NULL (default), returns physical water productivity.
Character. Unit of water input: "mm" (default) or
"m3".
Logical. If TRUE, prints informational messages.
Default TRUE.
Numeric vector. Physical water productivity in kg/m3 when
price is NULL, or economic water productivity in
currency/m3 when price is specified.
Physical water productivity: $$WP = \frac{Y}{W_{m3}}$$
Economic water productivity: $$WP_{econ} = \frac{Y \times P}{W_{m3}}$$
When unit = "mm", water is converted to m3/ha using 1 mm = 10 m3/ha.
Molden, D. et al. (2010). Improving agricultural water productivity: Between optimism and caution. Agricultural Water Management, 97(4), 528-535. doi:10.1016/j.agwat.2009.03.023
water_productivity(4500, 500, unit = "mm")
#> Physical WP computed (kg/m3).
#> [1] 0.9
water_productivity(4500, 500, price = 25, unit = "mm")
#> Economic WP computed (currency/m3).
#> [1] 22.5