This function calculates the phosphate availability.
Usage
osi_c_phosphor_uk(B_LU, A_SOM_LOI, A_P_OL)
Arguments
- B_LU
(numeric) The crop code
- A_SOM_LOI
(numeric) The percentage organic matter in the soil
- A_P_OL
(numeric) The P-content of the soil extracted with Olsen (mg P /kg)
Value
The phosphate availability index in United Kingdom derived from extractable soil P fractions. A numeric value.
Examples
osi_c_phosphor_uk(B_LU = 265,A_SOM_LOI = 3,A_P_OL = 5)
#> [1] 0.2179032
osi_c_phosphor_uk(B_LU = c(265,1019),A_SOM_LOI = c(3,4),A_P_OL = c(3.5,5.5))
#> [1] 0.1231208 0.2423314