Dewatering
The dewatering unit thickens the digested sludge from the digester. The reject water is recycled to the inlet of the primary settler.
Input
- Q: flow from Anaerobic Digester (m3/day)
- T: wastewater temperature (degree C)
- Soluble: Si, Ss, So, Sno, Snh, Snd, Salk
- Particulate: Xi, Xs, Xbh, Xba, Xp, Xnd, TSS
Parameters
- Percentage of suspended solids in the underflow of the thickener: dewater_perc = 28 %
- Percentage of TSS removal: TSS_removal_perc = 98 %
- Ratio of Xi convert to TSS: X_I2TSS = 0.75
- Ratio of Xs convert to TSS: X_S2TSS = 0.75
- Ratio of Xbh convert to TSS: X_BH2TSS = 0.75
- Ratio of Xba convert to TSS: X_BA2TSS = 0.75
- Ratio of Xp convert to TSS: X_P2TSS = 0.75
- Dewatering factor (Similar to Thickening factor in Thickener unit): dewater_factor = dewater_perc*10000.0/TSS
- Note we might have to recalculate TSS using Xi, Xs, Xbh, Xba, and Xp if their ratio to TSS in dewatering block is different from other ADM2ASM interface block.
- It is an error if the dewatering factor is lower than 1.
- Underflow/Sludge flow factor: Qu_factor = TSS_removal_perc/(100.0*dewater_factor)
- Reject water factor (Similar to Thinning factor in Thickener unit): reject_factor = (1.0 - TSS_removal_perc/100.0)/(1.0-Qu_factor)
Outputs
- if dewatering factor > 1
- Sludge
- Q = Q * Qu_factor
- T = T
- Soluble = Soluble
- Particulate = Particulate * dewater_factor
- if we have to recalculate TSS, TSS = new_calculated TSS * dewater_factor
- Reject water
- Q = Q * (1-Qu_factor)
- T = T
- Soluble = Soluble
- Particulate = Particulate * reject_factor
- if we have to recalculate TSS, TSS = new_calculated TSS * reject_factor
- Sludge
- If dewatering factor <= 1, the influent is too high on solids to thicken futher. Therefore all the influent leaves with the dewatered flow (sludge). No return reject flow.
- Sludge
- Q = Q
- T = T
- Soluble = Soluble
- Particulate = Particulate
- Reject water
- Q = 0.0
- T = 0.0
- Soluble = 0.0
- Particulate = 0.0
- Sludge