NRE: Calculate Fertilizer N Recovery Efficiency (NRE)

View source: R/NRE.R

NRER Documentation

Calculate Fertilizer N Recovery Efficiency (NRE)

Description

The percentage of fertilizer N that is taken up by the plant. Formula: NRE = ((PlantNf - PlantN0) / FertN) * 100

Usage

NRE(PlantNf, PlantN0, FertN)

Arguments

PlantNf

A numeric vector of plant N in fertilized conditions.

PlantN0

A numeric vector of plant N in control conditions.

FertN

A numeric value or vector for fertilizer N input.

Value

A numeric vector of NRE percentages.

Examples

PlantNf <- c(3.5, 4.0, 4.2)
PlantN0 <- c(2.0, 2.0, 2.0)
FertN <- 50
NRE(PlantNf, PlantN0, FertN)

NUETON documentation built on Dec. 18, 2025, 1:07 a.m.