Total protein output per hectare from crop production.

protein_yield(yield, protein_content, verbose = TRUE)

Arguments

yield

Numeric vector. Crop yield (kg/ha).

protein_content

Numeric vector. Protein content (percent).

verbose

Logical. If TRUE, prints informational messages. Default TRUE.

Value

Numeric vector. Protein yield (kg/ha).

Details

Formula: $$PY = Yield \times Protein Content / 100$$

Examples

protein_yield(yield = 4500, protein_content = 12.5)
#> Protein yield computed (kg/ha).
#> [1] 562.5