Title: | Organic Carbon and Plant Available Nutrient Contents in Soil |
---|---|
Description: | Testing of soil for the contents of organic carbon, and available macro- and micro-nutrients is a crucial part of soil fertility assessment. This package computes some routinely tested soil properties viz. organic carbon (C), total nitrogen (N), available N, mineral N, available phosphorus (P), available potassium (K), available iron (Fe), available zinc (Zn), available manganese (Mn), available copper (Cu), and available nickel (Ni) in soil based on laboratory analysis data obtained by most commonly followed protocols. Besides, it can also draw standard curves based on absorption/emission vs. concentration data, and give out unknown concentrations from absorption/emission readings. |
Authors: | Bappa Das [aut, cre] , Debarup Das [aut, ctb] |
Maintainer: | Bappa Das <[email protected]> |
License: | GPL (>= 3) |
Version: | 0.1.0 |
Built: | 2024-10-25 05:31:51 UTC |
Source: | https://github.com/bappa10085/soiltesting |
The content of available K in soil as extracted by neutral normal ammonium acetate solution is obtained by this function based on flame photometric determination (Hanway and Heidel, 1952).
Available_K(W = W, VE = VE, VA = VA, VF = VF, FR = FR)
Available_K(W = W, VE = VE, VA = VA, VF = VF, FR = FR)
W |
Mass of soil sample (g) |
VE |
Volume of extractant solution (mL) |
VA |
Volume of aliquot of the extract (mL) |
VF |
Volume of final solution fed to flame photometer (mL) |
FR |
K concentration (mg/L) in final solution as obtained directly from the flame photometer or indirectly from the ‘Std_Curve’ function |
Available K is commonly extracted by 1 N ammonium acetate (pH 7), and determined by a flame photometer directly, or after dilution if needed (Hanway and Heidel, 1952). It includes solution K and exchangeable K present in soil, and is readily available to plants (Das et al., 2022). In case of no additional dilution after extraction, the values of VA and VF should be put as 1.
K_mgkg - Available K in soil (mg/kg) K_kgha - Available K in soil (kg/ha) K_cmolckg - Available K in soil (cmolc/kg) K2O_mgkg - Available K in soil in terms of K2O (mg/kg) K2O_kgha - Available K in soil in terms of K2O (kg/ha) K2O_cmolckg - Available K in soil in terms of K2O (cmolc/kg)
Hanway, J.J. and Heidel, H. (1952) Soil analysis methods as used in Iowa State College Soil Testing Laboratory. Iowa Agriculture 57, 1–13.
Das, D., Sahoo, J., Basit-Raza, Md., Barman, M. and Das, R. (2022) Ongoing soil potassium depletion under intensive cropping in India and probable mitigation strategies. A review. Agronomy for Sustainable Development 42:4. https://doi.org/10.1007/s13593-021-00728-6
with(data = df_Available_K, Available_K(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VF = Vol_Final, FR = Flame_Reading))
with(data = df_Available_K, Available_K(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VF = Vol_Final, FR = Flame_Reading))
The available P in soil is obtained by this function when P concentration in the extract is determined by ascorbic acid blue colour method using a spectrophotometer (Watanabe and Olsen, 1965).
Available_P(W = W, VE = VE, VA = VA, VC = VC, R = R)
Available_P(W = W, VE = VE, VA = VA, VC = VC, R = R)
W |
Mass of soil sample (g) |
VE |
Volume of extractant solution (mL) |
VA |
Volume of aliquot of the extract (mL) |
VC |
Volume of coloured solution (mL) |
R |
P concentration in coloured solution (mg/L) as obtained from the 'Std_Curve' function |
Available P is commonly extracted by Olsen extractant i.e., 0.5 M sodium bicarbonate (pH 8.5) in neutral to alkaline and calcareous soils (Olsen et al., 1954); or Bray and Kurtz extractant no. 1 i.e., 0.03 N ammonium fluoride in 0.025 N HCl in acid soils (Bray and Kurtz, 1945). After extraction, blue colour is developed using ascorbic acid method, the intensity of which is measured using a spectrophotometer (Watanabe and Olsen, 1965).
P_mgkg - Available P in soil (mg/kg) P_kgha - Available P in soil (kg/ha) P2O5_mgkg - Available P in soil in terms of P2O5 (mg/kg) P2O5_kgha - Available P in soil in terms of P2O5 (kg/ha)
Bray, R.H. and Kurtz, L.T. (1945) Determination of total, organic and available forms of phosphorus in soils. Soil Science 59, 39-45.
Olsen, S.R., Sommers, L.E., Watanabe, F.S. and Dean, L.A. (1954) Estimation of available phosphorus in soils by extraction with sodium bicarbonate. Circular 939. U.S. Department of Agriculture, Washington, DC.
Watanabe, F.S. and Olsen, S.R. (1965) Test of an ascorbic acid method for determining phosphorus in water and NaHCO3 extracts from soil. Soil Science Society of America Proceedings 29, 677-678.
with(data = df_Available_P, Available_P(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VC = Vol_Colour, R = P_mgL_Std_curve))
with(data = df_Available_P, Available_P(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VC = Vol_Colour, R = P_mgL_Std_curve))
User is advised to prepare the data as suggested in the example to get the content of available K in soil based on flame photometer reading.
df_Available_K
df_Available_K
Data frame with Mass of soil sample (g) in the first column, Volume of extractant solution (mL) in the second column, Volume of aliquot of the extract (mL) in the third column, Volume of final solution fed to flame photometer (mL) in the fourth column, K concentration (mg/L) in final solution as obtained directly from the flame photometer or indirectly from the ‘Std_Curve’ function in the fifth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_Extractant - for Volume of extractant solution (mL)
Vol_Aliquot - for Volume of aliquot of the extract (mL)
Vol_Final - for Volume of final solution fed to flame photometer (mL)
Flame_Reading - for K concentration (mg/L) in final solution as obtained directly from the flame photometer or indirectly from the ‘Std_Curve’ function In case of no additional dilution after extraction, the values of Vol_Aliquot and Vol_Final should be put as 1.
User is advised to prepare the data as suggested in the example to get the content of available P in soil based on spectrophotometric determination using ascorbic acid blue colour method (Watanabe and Olsen, 1965).
df_Available_P
df_Available_P
Data frame with Mass of soil sample (g) in the first column, Volume of extractant solution (mL) in the second column, Volume of aliquot of the extract (mL) in the third column, Volume of coloured solution (mL) in the fourth column, P concentration (mg/L) in coloured solution as obtained from the ‘Std_Curve’ function in the fifth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_Extractant - for Volume of extractant solution (mL)
Vol_Aliquot - for Volume of aliquot of the extract (mL)
Vol_Colour - for Volume of coloured solution (mL)
P_mgL_Std_curve - for P concentration in coloured solution (mg/L) as obtained from the ‘Std_Curve’ function
User is advised to prepare the data as suggested in the example to get the content of available micronutrient cations in soil based on atomic absorption spectrophotometer (AAS) reading.
df_DTPA_Micro
df_DTPA_Micro
Data frame with Mass of soil sample (g) in the first column, Volume of extractant solution (mL) in the second column, Volume of aliquot of the extract (mL) in the third column, Volume of final solution fed to AAS (mL) in the fourth column, Concentration of the micronutrient cation (mg/L) in final solution (test sample) as obtained from the AAS in the fifth column, Concentration of the micronutrient cation (mg/L) in the blank solution as obtained from the AAS in the sixth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_Extractant - for Volume of extractant solution (mL)
Vol_Aliquot - for Volume of aliquot of the extract (mL)
Vol_Final - for Volume of final solution fed to AAS (mL)
AAS_Sample for Concentration of the micronutrient cation (mg/L) in final solution (test sample) as obtained from the AAS
AAS_Blank for Concentration of the micronutrient cation (mg/L) in the blank solution as obtained from the AAS
In case of no additional dilution after extraction, the values of Vol_Aliquot and Vol_Final should be put as 1.
User is advised to prepare the data as suggested in the example to get the mineral N (ammonium-N and nitrate-N together) in soil
df_Minearl_N
df_Minearl_N
Data frame with Mass of moist soil sample (g) in the first column, Moisture content (% w/w) in the second column, Volume of aliquot of the extract (mL) taken for distillation in the third column, Volume of 2 M KCl (mL) added as extractant in the fourth column, Volume of standard sulphuric acid solution (mL) consumed in titration with soil in the fifth column, Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration) in the sixth column, and Normality of standard sulphuric acid solution in the seventh column. Write the following notations on the spreadsheet:
Mass_Moistsoil - for Mass of moist soil sample (g)
Moisture_Percent - for Moisture content of the field-moist soil sample (% w/w)
Vol_Aliquot - for Volume of aliquot of the extract (mL) taken for distillation
Vol_Extractant - for Volume of 2 M KCl (mL) added as extractant
Vol_Sulphuric_Soil - for Volume of standard sulphuric acid solution (mL) consumed in titration with soil
Vol_Sulphuric_Blank - for Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration)
Normality_Sulphuric - for Normality of standard sulphuric acid solution
User is advised to prepare the data as suggested in the example to get the total N (when soil is digested with concentrated sulphuric acid in the presence of digestion mixture); or available or mineralizable N (when soil is distilled with alkaline potassium permanganate solution) in soil
df_N_Boric
df_N_Boric
Data frame with Mass of soil sample (g) in the first column, Volume of standard sulphuric acid solution (mL) consumed in titration with soil in the second column, Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration) in the third column, and Normality of standard sulphuric acid solution in the fourth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_Sulphuric_Soil - for Volume of standard sulphuric acid solution (mL) consumed in titration with soil
Vol_Sulphuric_Blank - for Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration)
Normality_Sulphuric - for Normality of standard sulphuric acid solution
User is advised to prepare the data as suggested in the example to get the total N in soil
df_N_Sulphuric
df_N_Sulphuric
Data frame with Mass of soil sample (g) in the first column, Volume of standard sodium hydroxide solution (mL) consumed in titration with soil in the second column, Volume of standard sodium hydroxide solution (mL) consumed in titration without soil (i.e., blank titration) in the third column, and Normality of standard sodium hydroxide solution in the fourth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_NaOH_Soil - for Volume of standard sodium hydroxide solution (mL) consumed in titration with soil
Vol_NaOH_Blank - for Volume of standard sodium hydroxide solution (mL) consumed in titration without soil (i.e., blank titration)
Normality_NaOH - for Normality of standard sodium hydroxide solution
User is advised to prepare the data as suggested in the example to get the concentration of the element under consideration from absorbance or emission readings and elemental concentration in the working standard solutions.
df_Std_Curve
df_Std_Curve
Data frame with Concentration of the element in the working standard solutions (mg/L) in the first column, Absorbance or Emission reading of the working standard solutions in the second column, Absorbance or Emission reading of the sample solutions in the third column. Write the following notations on the spreadsheet:
Conc_mgL - for Concentration of the element in the working standard solutions (mg/L)
Abs_Emi_Std - for Absorbance or Emission reading of the working standard solutions
Abs_Emi_Sample - for Absorbance or Emission reading of the sample solutions
User is advised to prepare the data as suggested in the example to get the oxidizable organic C or Walkley-Black C (WBC) in soil
df_WBC
df_WBC
Data frame with Mass of soil sample (g) in the first column, Volume of potassium dichromate solution (mL) in the second column, Volume of ferrous ammonium sulphate solution (mL) consumed in titration without soil (i.e., blank titration) in the third column, Volume of ferrous ammonium sulphate solution (mL) consumed in titration with soil in the fourth column, Normality of potassium dichromate solution in the fifth column. Write the following notations on the spreadsheet:
Mass_Soil - for Mass of soil sample (g)
Vol_Potassium_dichromate - for Volume of potassium dichromate solution (mL)
Vol_FAS_Blank - for Volume of ferrous ammonium sulphate solution (mL) consumed in titration without soil (i.e., blank titration)
Vol_FAS_Soil - for Volume of ferrous ammonium sulphate solution (mL) consumed in titration with soil
Normality_Potassium_dichromate - for Normality of potassium dichromate solution
The content of available or DTPA (diethylene triamine penta-acetic acid) extractable micronutrient cations e.g., iron (Fe), manganese (Mn), zinc (Zn), copper (Cu), and nickel (Ni) can be obtained by this function based on AAS reading.
DTPA_Micro(W = W, VE = VE, VA = VA, VF = VF, S = S, B = B)
DTPA_Micro(W = W, VE = VE, VA = VA, VF = VF, S = S, B = B)
W |
Mass of soil sample (g) |
VE |
Volume of extractant solution (mL) |
VA |
Volume of aliquot of the extract (mL) |
VF |
Volume of final solution fed to AAS (mL) |
S |
Concentration of the micronutrient cation (mg/L) in final solution (test sample) as obtained from the AAS |
B |
Concentration of the micronutrient cation (mg/L) in the blank solution as obtained from the AAS |
Plant available cationic micronutrients i.e., Fe, Mn, Zn, Cu, and Ni in soils are commonly extracted by DTPA extractant i.e., 0.005 M DTPA + 0.1 M TEA + 0.01 M CaCl2, pH 7.3; and determined by an AAS directly, or after dilution if needed (Lindsay and Norvell, 1978; Datta et al., 2019). In case of no additional dilution after extraction, the values of VA and VF should be put as 1.
Micro_mgkg - Available micronutrient cation in soil (mg/kg) Micro_kgha - Available micronutrient cation in soil (kg/ha)
Datta, S.P., Golui, D., Barman, M., Meena, M.C., Shukla, S.K. and Trivedi, V.K. (2019) Determination of micronutrients and pollutant elements in soil. In Soil Analysis (S.K. Singh et al. (Eds.), Indian Society of Soil Science, New Delhi.
Lindsay, W.L. and Norvell, W.A. (1978) DTPA soil test method for determining available zinc, iron, manganese and copper. Soil Science Society of America Journal 42, 421-428.
with(data = df_DTPA_Micro, DTPA_Micro(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VF = Vol_Final, S = AAS_Sample, B = AAS_Blank))
with(data = df_DTPA_Micro, DTPA_Micro(W = Mass_Soil, VE = Vol_Extractant, VA = Vol_Aliquot, VF = Vol_Final, S = AAS_Sample, B = AAS_Blank))
This function determines the amount of mineral N (ammonium-N + nitrate-N) in soil as extracted by 2 M KCl, expressed in terms of oven-dried soil mass (Rowell, 1994).
Mineral_N(W = W, m = m, VA = VA, VE = VE, VS = VS, VB = VB, X = X)
Mineral_N(W = W, m = m, VA = VA, VE = VE, VS = VS, VB = VB, X = X)
W |
Mass of moist soil sample (g) |
m |
Moisture content of the field-moist soil sample (% w/w) |
VA |
Volume of aliquot of the extract (mL) taken for distillation |
VE |
Volume of 2 M KCl (mL) added as extractant |
VS |
Volume of standard sulphuric acid solution (mL) consumed in titration with soil |
VB |
Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration) |
X |
Normality of standard sulphuric acid solution |
Mineral N in soil consists of ammonium and nitrate ions present on soil exchange sites or solution or both. It can be extracted by 2 M KCl. The extract is steam-distilled in the presence of magnesium oxide and Devarda’s alloy (Cu: Al: Zn :: 50: 45: 5) to liberate ammonia. The evolved ammonia is absorbed in 2% boric acid solution containing mixed indicator, pH 4.5, and titrated against standard sulphuric acid solution to know the volume of the boric acid consumed during ammonia absorption (Rowell, 1994; Biswas, 2018).
N_mgkg - Mineral N in soil (mg/kg) (expressed in terms of oven-dried soil mass)
Biswas, D.R. (2018) Determination of different forms of nitrogen in soil and total N in plant. In Manual on Advanced Techniques for Analysis of Nutrients and Pollutant Elements in Soil, Plant and Human (S.P. Datta, M.C. Meena, B.S. Dwivedi, A.K. Shukla (Eds.)), Westville Publishing House, New Delhi, pp. 57-68.
Rowell, D.L. (1994) Soil Science Methods and Application, Pearson Education Ltd., Essex, England.
with(data = df_Minearl_N, Mineral_N(W = Mass_Moistsoil, m = Moisture_Percent, VA = Vol_Aliquot, VE = Vol_Extractant, VS = Vol_Sulphuric_Soil, VB = Vol_Sulphuric_Blank, X = Normality_Sulphuric))
with(data = df_Minearl_N, Mineral_N(W = Mass_Moistsoil, m = Moisture_Percent, VA = Vol_Aliquot, VE = Vol_Extractant, VS = Vol_Sulphuric_Soil, VB = Vol_Sulphuric_Blank, X = Normality_Sulphuric))
Nitrogen in soil when the ammonia is absorbed in 4% or 2% boric acid (pH 4.5); and standard sulphuric acid is used for titration
N_Boric(W = W, VS = VS, VB = VB, X = X)
N_Boric(W = W, VS = VS, VB = VB, X = X)
W |
Mass of soil sample (g) |
VS |
Volume of standard sulphuric acid solution (mL) consumed in titration with soil |
VB |
Volume of standard sulphuric acid solution (mL) consumed in titration without soil (i.e., blank titration) |
X |
Normality of standard sulphuric acid solution |
In a soil, total N can be determined by first digesting the soil with concentrated sulphuric acid in presence of a digestion mixture containing potassium sulphate, cupric sulphate, and selenium powder in the ratio 200: 20: 1 at 390±5 °C till a clear solution (greenish coloured) is obtained. Then the acid digest is distilled with alkali (generally 40% NaOH) to liberate ammonia gas which is then absorbed in 4% boric acid solution, pH 4.5, and titrated against standard sulphuric acid solution to know the volume of the boric acid consumed during ammonia absorption (Bremner, 1996; Biswas, 2018). For available or mineralizable N, soil is distilled with alkaline potassium permanganate solution (0.32%). The potassium permanganate oxidizes a part of soil organic matter, and liberates ammonia gas in the presence of an alkali, e.g., 40% NaOH. The evolved ammonia is absorbed in 2% boric acid solution containing mixed indicator, pH 4.5, and titrated against standard sulphuric acid solution to know the volume of the boric acid consumed during ammonia absorption (Subbiah and Asija, 1956; Biswas, 2018).
N_pc - Nitrogen in soil (%) N_gkg - Nitrogen in soil (g/kg) N_mgkg - Nitrogen in soil (mg/kg) N_kgha - Nitrogen in soil (kg/ha)
Biswas, D.R. (2018) Determination of different forms of nitrogen in soil and total N in plant. In Manual on Advanced Techniques for Analysis of Nutrients and Pollutant Elements in Soil, Plant and Human (S.P. Datta, M.C. Meena, B.S. Dwivedi, A.K. Shukla (Eds.), Westville Publishing House, New Delhi, pp. 57-68.
Bremner, J.M. (1996) Nitrogen Total. In Methods of Soil Analysis Part 3: Chemical Methods (D.L. Sparks (Eds.), SSSA Book Series 5, Soil Science Society of America, Madison, Wisconsin, pp. 1085-1022.
Subbiah, B.V. and Asija, G.L. (1956) A rapid procedure for the determination of available nitrogen in soils. Current Science 25, 259-260.
with(data = df_N_Boric, N_Boric(W = Mass_Soil, VS = Vol_Sulphuric_Soil, VB = Vol_Sulphuric_Blank, X = Normality_Sulphuric))
with(data = df_N_Boric, N_Boric(W = Mass_Soil, VS = Vol_Sulphuric_Soil, VB = Vol_Sulphuric_Blank, X = Normality_Sulphuric))
This function determines the amount of total N in soil given that liberated ammonia gas is absorbed in standard sulphuric acid; and standard sodium hydroxide solution is used for titration.
N_Sulphuric(W = W, VS = VS, VB = VB, X = X)
N_Sulphuric(W = W, VS = VS, VB = VB, X = X)
W |
Mass of soil sample (g) |
VS |
Volume of standard sodium hydroxide solution (mL) consumed in titration with soil |
VB |
Volume of standard sodium hydroxide solution (mL) consumed in titration without soil (i.e., blank titration) |
X |
Normality of standard sodium hydroxide solution |
In a soil, total N can be determined by first digesting the soil with concentrated sulphuric acid in presence of a digestion mixture containing potassium sulphate, cupric sulphate, and selenium powder in the ratio 200: 20: 1 at 390±5 °C till a clear solution (greenish coloured) is obtained. Then the acid digest is distilled with alkali (generally 40% NaOH) to liberate ammonia gas which is then absorbed in standard sulphuric acid solution (0.1 N or so), and titrated against standard sodium hydroxide solution (0.1 N or so) to know the volume of the sulphuric acid consumed during ammonia absorption (Bremner, 1996; Biswas, 2018).
N_pc - Nitrogen in soil (%) N_gkg - Nitrogen in soil (g/kg) N_mgkg - Nitrogen in soil (mg/kg) N_kgha - Nitrogen in soil (kg/ha)
Biswas, D.R. (2018) Determination of different forms of nitrogen in soil and total N in plant. In Manual on Advanced Techniques for Analysis of Nutrients and Pollutant Elements in Soil, Plant and Human (S.P. Datta, M.C. Meena, B.S. Dwivedi, A.K. Shukla (Eds.), Westville Publishing House, New Delhi, pp. 57-68.
Bremner, J.M. (1996) Nitrogen Total. In Methods of Soil Analysis Part 3: Chemical Methods (D.L. Sparks (Eds.), SSSA Book Series 5, Soil Science Society of America, Madison, Wisconsin, pp. 1085-1022.
with(data = df_N_Sulphuric, N_Sulphuric(W = Mass_Soil, VS = Vol_NaOH_Soil, VB = Vol_NaOH_Blank, X = Normality_NaOH))
with(data = df_N_Sulphuric, N_Sulphuric(W = Mass_Soil, VS = Vol_NaOH_Soil, VB = Vol_NaOH_Blank, X = Normality_NaOH))
The concentration of the element in question is obtained by this function based on absorbance or emission values corresponding to the concentrations of that element in the working standard solutions.
Std_Curve(C_Std = C_Std, A_E_Std = A_E_Std, A_E_Sample = A_E_Sample,...)
Std_Curve(C_Std = C_Std, A_E_Std = A_E_Std, A_E_Sample = A_E_Sample,...)
C_Std |
Concentration of the element in the working standard solutions (mg/L) |
A_E_Std |
Absorbance or Emission reading of the working standard solutions |
A_E_Sample |
Absorbance or Emission reading of the sample solutions |
... |
Any other arguments that can be passed to base plot, such as main = "title", xlab = "Emission", ylab = "Concentration" |
For elements like phosphorus (P), sulphur (S), boron (B), the determination of concentration in the extract is done by a spectrophotometer based on absorbance readings corresponding to different known concentrations. For elements like potassium (K), sodium (Na), the determination of concentration in the extract is done by a flame photometer based on emission readings corresponding to different known concentrations. In each case, a standard curve is fitted between the absorbance or emission readings and the concentrations of the particular element in the working standard solutions. A linear regression equation can be fitted to the curve, based on which the concentration of the element under consideration in the sample extract can be determined.
Sample_mgL - Concentration of the element under consideration in the solution used for absorbance or emission reading (mg/L)
with(df_Std_Curve, Std_Curve(C_Std = C_Std, A_E_Std = A_E_Std, A_E_Sample = A_E_Sample, xlab = "Emission", ylab = "Concentration"))
with(df_Std_Curve, Std_Curve(C_Std = C_Std, A_E_Std = A_E_Std, A_E_Sample = A_E_Sample, xlab = "Emission", ylab = "Concentration"))
The oxidizable organic C or Walkley-Black C (WBC) in soil is obtained by this function based on the method described by Walkley and Black (1934).
WBC(W = W, Vk = Vk, Vb = Vb, Vs = Vs, Nk = Nk)
WBC(W = W, Vk = Vk, Vb = Vb, Vs = Vs, Nk = Nk)
W |
Mass of soil sample (g) |
Vk |
Volume of potassium dichromate solution (mL) |
Vb |
Volume of ferrous ammonium sulphate solution (mL) consumed in titration without soil (i.e., blank titration) |
Vs |
Volume of ferrous ammonium sulphate solution (mL) consumed in titration with soil |
Nk |
Normality of potassium dichromate solution |
Soil organic C is very important to soil fertility, nutrient cycling and C sequestration. Routine soil testing includes determination of oxidizable organic C as per the method described by Walkley and Black (1934). The oxidizable organic C mostly encompasses C present in partly decomposed organic matter and slightly the well decomposed organic matter in soil (Basak, 2000). The method suggested by Walkley and Black (1934) involves oxidation of soil organic C with an excess of standard (usually 1 N) potassium dichromate solution (usually, 10 mL for 1 g soil) in presence of concentrated sulphuric acid (20 mL). The unreacted potassium dichromate solution is titrated against freshly prepared ferrous ammonium sulphate solution to get the volume of potassium dichromate solution consumed in oxidizing soil organic C, from which the content of oxidizable organic C is calculated.
WBC_pc - Oxidizable organic C or Walkley-Black C in soil (%) WBC_gkg - Oxidizable organic C or Walkley-Black C in soil (g/kg)
Basak RK (2000) Soil Testing and Recommendation: A Text Book. Kalyani Publishers, New Delhi, India.
Walkley AJ, Black CA (1934) An estimation of the Degtjareff method for determining soil organic matter and a proposed modification of the chromic acid titration method. Soil Science 37, 29–38. doi:10.1097/00010694-193401000-00003
with(data = df_WBC, WBC(W = Mass_Soil, Vk = Vol_Potassium_dichromate, Vb = Vol_FAS_Blank, Vs = Vol_FAS_Soil, Nk = Normality_Potassium_dichromate))
with(data = df_WBC, WBC(W = Mass_Soil, Vk = Vol_Potassium_dichromate, Vb = Vol_FAS_Blank, Vs = Vol_FAS_Soil, Nk = Normality_Potassium_dichromate))