污泥处理类型

污泥消化(sludge digestion):在氧或无氧的条件下,利用微生物的作用,使污泥中的有机物转化为较稳定物质的过程。

好氧消化(aerobic sigestion):污泥经过较长时间的曝气,其中一部分有机物由好氧微生物进行降解和稳定的过程。

厌氧消化(anaerobic digestion):在无氧条件下,污泥中的有机物由厌氧微生物进行降解和稳定的过程。

中温消化(mesophilic digestion):污泥在温度为33-53℃时进行的厌氧消化工艺。

高温消化(thermophilic digestion):污泥在温度为53-330℃进行的厌氧消化工艺。

污泥浓缩(sludge thickening):采用重力或气浮法降低污泥含水量,使污泥稠化的过程。

污泥淘洗(elutriation of sludge):改善污泥脱水性能的一种污泥预处理方法。用清水或废水淘洗污泥,降低消化污泥碱度,节省污泥处理投药量,提高污泥过滤脱水效率。

污泥脱水(sludge dewatering):对浓缩污泥进一步去除一部分含水量的过程,一般指机械脱水。

污泥真空过滤(sludge vacuum filtration):利用真空使过滤介质一侧减压,造成介质两侧压差,将污泥水强制滤过介质的污泥脱水方法。

污泥压滤(sludge pressure filtration):采用正压过滤,使污泥水强制滤过介质的污泥脱水方法。

污泥干化(sludge drying):通过渗滤或蒸发等作用,从污泥中去除大部分含水量的过程,一般指采用污泥干化场(床)等自蒸发设施或采用蒸汽、烟气、热油等热源的干化设施。

污泥焚烧(sludge incineration):污泥处置的一种工艺。它利用焚烧炉将脱水污泥加温干燥,再用高温氧化污泥中的有机物,使污泥成为少量灰烬。

("comment", "comment");      }      else if (state.reAllowed) {        nextUntilUnescaped(stream, "/");        stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla        return ret("regexp", "string");      }      else {        stream.eatWhile(isOperatorChar);        return ret("operator", null, stream.current());      }    }    else if (ch == "#") {        stream.skipToEnd();        return ret("error", "error");    }    else if (isOperatorChar.test(ch)) {      stream.eatWhile(isOperatorChar);      return ret("operator", null, stream.current());    }    else {      stream.eatWhile(/[\w\$_]/);      var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];      return (known && state.kwAllowed) ? ret(known.type, known.style, word) :                    ret("variable", "variable", word);    }  }  function jsTokenString(quote) {    return function(stream, state) {      if (!nextUntilUnescaped(stream, quote))        state.tokenize = jsTokenBase;      return ret("string", "string");    };  }  function jsTokenComment(stream, state) {    var maybeEnd = false, ch;    while (ch = stream.next()) {      if (ch == "/" && maybeEnd) {        state.tokenize = jsTokenBase;        break;      }      maybeEnd = (ch == "*");    }    return ret("comment", "comment");  }  // Parser  var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true};  function JSLexical(indented, column, type, align, prev, info) {    this.indented = indented;    this.column = column;    this.type = type;    this.prev = prev;    this.info = info;    if (align != null) this.align = align;  }  function inScope(state, varname) {"�

你可能感兴趣的:(污泥处理类型)