Sludge Age
Table of Contents
1. Problem Setup
Suppose you have a tank of volume \(V\) filled with sludge. An inlet provide new sludge at an rate of \(Q\) \(m^3/s\) and the outlet takes away water at the same rate. So, the volume of sludge in the tank is constant. Further suppose that the tanks is provided with an agitator such that any sludge that enters the tanks is immediately mixed homogeneously throughout the tank. Now, whats the average age of the sludge in the tank? (In Wastewater Engineering this age is called Solid Retention time or Mean Cell Residence time \(\theta_c\))
2. Solution
2.1. Discretize
Lets reduce this problem to a simpler one so that its easier to think of a solution.
Suppose there are \(N\) number of very very tiny balls in the tank. And a single ball is replaced at random at each timestep \(\Delta t\). Now you can immediately tell that if I keep track of a single specific ball, say I colour only one of the \(N\) balls with blue colour, then the chance of that blue ball being replaced in the first step is \(\frac 1 {N}\). So, on average it takes \(N\) steps for the ball to get replaced.
To make the last statement rigorous, you'll have to use binomial distribution and find the average. But we will leave that part for now.
2.2. For Continuous Case
So, for discrete case we know it takes on average \(N\) steps to replace an specific ball, so on average age of any given ball would be \(N\Delta t\). Now, the continuous case is just like the discrete case but with infinite balls and infinitesimal time interval. And instead of asking age of a single ball we can ask what the age of a small volume of sludge \(\Delta V\) is?. For this imagine that the tank consists of \(N = \frac{V}{\Delta V}\) number of such small volumes. The average life of such small volume would be
\begin{align} N\Delta t &= \frac {V}{\Delta V} \Delta t \\ &= V \frac{1} {\Delta V / \Delta t} \end{align}Now in the limit \(\Delta t \rightarrow 0\), \(\frac{\Delta V}{\Delta t} \rightarrow Q\) where \(Q\) is the rate with which the sludge is being replaced. So, the average age of sludge in the tank is
\begin{equation} \textrm{Avg. Age} = \frac {V} {Q} \end{equation}