Oxygen Uptake Rate Calculation

Oxygen Uptake Rate (OUR) & SOUR Calculator

Calculated Results

OUR (Oxygen Uptake Rate): mg/L/hr

SOUR (Specific Oxygen Uptake Rate): mg O₂/g VSS/hr

function calculateOxygenUptake() { var do1 = parseFloat(document.getElementById('initialDO').value); var do2 = parseFloat(document.getElementById('finalDO').value); var mins = parseFloat(document.getElementById('timeElapsed').value); var mlvss = parseFloat(document.getElementById('mlvssVal').value); var resultsDiv = document.getElementById('resultsArea'); if (isNaN(do1) || isNaN(do2) || isNaN(mins) || mins = do1) { alert("Final DO must be lower than Initial DO to calculate uptake."); return; } // OUR = (DO1 – DO2) / time (mins) * 60 mins/hr var ourVal = ((do1 – do2) / mins) * 60; document.getElementById('ourResult').innerText = ourVal.toFixed(2); if (!isNaN(mlvss) && mlvss > 0) { // SOUR = (OUR / MLVSS) * 1000 (to convert mg/L MLVSS to g/L) var sourVal = (ourVal / mlvss) * 1000; document.getElementById('sourResult').innerText = sourVal.toFixed(2); var interpretation = ""; if (sourVal = 8 && sourVal <= 20) interpretation = "Normal biological activity for a stable activated sludge process."; else interpretation = "High microbial activity: Likely high organic loading or young sludge."; document.getElementById('interpretation').innerText = "Interpretation: " + interpretation; } else { document.getElementById('sourResult').innerText = "N/A"; document.getElementById('interpretation').innerText = "MLVSS required for SOUR calculation."; } resultsDiv.style.display = 'block'; }

Understanding Oxygen Uptake Rate (OUR) in Wastewater Treatment

In environmental engineering and microbiology, the Oxygen Uptake Rate (OUR) is a critical parameter used to quantify the biological activity of microorganisms. In the context of activated sludge systems, it measures how quickly microbes consume oxygen as they break down organic matter (BOD). Monitoring OUR allows plant operators to assess the "health" of the biomass and the efficiency of the aeration process.

The OUR Formula

The standard calculation for OUR is based on the change in dissolved oxygen over a specific period. It is expressed as:

OUR (mg/L/hr) = [(Initial DO – Final DO) / Time in Minutes] × 60

Specific Oxygen Uptake Rate (SOUR)

While OUR tells you the total oxygen consumed by the sample, the Specific Oxygen Uptake Rate (SOUR) normalizes this value against the concentration of biomass (Mixed Liquor Volatile Suspended Solids – MLVSS). This provides a more accurate picture of the metabolic activity of the individual microorganisms, independent of how much sludge is in the tank.

SOUR (mg O₂/g VSS/hr) = [OUR / MLVSS (mg/L)] × 1,000

Practical Example

Imagine a wastewater operator conducts a 15-minute bench test with the following data:

  • Initial Dissolved Oxygen: 8.0 mg/L
  • Final Dissolved Oxygen (after 15 mins): 5.0 mg/L
  • MLVSS Concentration: 2,500 mg/L

Step 1: Calculate OUR
(8.0 – 5.0) / 15 = 0.2 mg/L/min.
0.2 × 60 = 12.0 mg/L/hr.

Step 2: Calculate SOUR
(12.0 / 2,500) × 1,000 = 4.8 mg O₂/g VSS/hr.

Why Monitor OUR and SOUR?

1. Toxicity Detection: A sudden drop in OUR while organic loading remains constant often indicates that a toxic substance has entered the system and is inhibiting microbial respiration.

2. Process Optimization: High SOUR values indicate "hungry" bacteria often found in the early stages of the aeration basin or during high organic loading. Low SOUR values usually indicate old sludge or the endogenous respiration phase.

3. Aeration Efficiency: By knowing the OUR, engineers can calculate the exact amount of oxygen required to be supplied by blowers, potentially saving thousands in energy costs by preventing over-aeration.

Frequently Asked Questions

Q: What is a typical SOUR range?
A: In a healthy activated sludge plant, SOUR typically ranges between 8 and 20 mg O₂/g VSS/hr. Values below 5 might indicate old sludge or toxicity, while values above 20-30 indicate high loading or rapid growth.

Q: Can I use MLSS instead of MLVSS?
A: While MLSS is easier to measure, MLVSS is preferred because it represents the "volatile" or organic/living portion of the solids. Using MLSS may result in an artificially low SOUR because inorganic silt/sand is included in the mass calculation.

Leave a Comment