Nitrogen Provided by Organic Fertilization
Source:R/calc_N_from_organic_fertilizer.R
organic_fertilization.RdCalculates the amount of nitrogen (N) supplied to the soil through organic
fertilization. Optionally applies DPI efficiency by material type, soil
texture and distribution technique (when soil_group and
distribution_efficiency are given). In the balance formula the term
to subtract is the efficient N (N utile) available to the crop in the
year of application, not total N (DPI Guida / FertDPI).
Usage
organic_fertilization(
source = "Cattle slurry",
frequency = "every year",
quantity = 100,
soil_group = NULL,
distribution_efficiency = NULL,
f.table = NFert::f.table
)Arguments
- source
The source of organic fertilizer (e.g., "Cattle slurry", "Composted manure").
- frequency
The frequency of application (e.g., "every year", "every two years").
- quantity
The amount of organic fertilizer applied per application (in m3/ha cubic metres, or t/ha). Use
0for no organic application (returns 0 kg N/ha).- soil_group
Optional. Soil group from
calc_soil_group_and_id_rag()(e.g. "Sandy textures", "Franco") to use DPI efficiency by texture. IfNULL, efficiency is taken fromf.table(no texture/distribution).- distribution_efficiency
Optional. "efficient", "medium", or "low" (DPI: Alta/Media/Bassa). Required if
soil_groupis set. Efficient = injection, fertigation, incorporation within 4 h.- f.table
A data frame with columns
source,frequency,value. Used whensoil_groupisNULL. Default isNFert::f.table.
Value
The estimated amount of nitrogen (N) in kg/ha available to the crop
(efficient N when soil_group and distribution_efficiency are set).