- Efficient Water Purification :
The system ensures high-quality purified water by effectively removing solid substances.
- Bacteria Filtration :
Ceramic membranes effectively filter bacteria, thereby reducing operating costs.
- Sludge Management Advantage :
The ceramic MBR system produces less sludge with higher concentration, saving space and costs.
- Microbial Acclimation Capability :
The system quickly cultivates microorganisms to degrade difficult substances, improving stability and efficiency.
- High-Pollution Wastewater Treatment :
Ceramic MBR systems effectively treat high-concentration wastewater, suitable for various applications.
Membrane types | Hollow fiber membrane | Flat sheet membrane | |
Material | (PVDF) | (PVDF、PE) | Ceramic |
Total membrane surface area | ++ | + | + |
Acid, alkali, and strong oxidant resistance | + | + | ++ |
Temperature resistance | + Prone to issues above 50°C | + Prone to issues above 50°C | +++ Can reach80℃ |
Oil removal capability | + | + | ++ |
Lifespan, warranty period | 3~5year | 5~7year | 10~15 year |
Filtration performance | ++ | ++ | ++ |
Blockage condition | Membrane tube joints and inner edges are prone to blockage and thread breakage. | Low backwash pressure, prone to blockage | Low backwash pressure, not easy to block |
Recovery and reuse | Not easily recyclable | Not easily recyclable | Recyclable |
*Note: The more + signs, the better the display function.
Ceramic MBR possesses unique advantages and characteristics in the field of water treatment:
- Durability and Stability:Ceramic membranes are highly durable and stable, ensuring long-term reliable operation.
- Efficient Solid-Liquid Separation:Ceramic membranes efficiently filter solid particles and microorganisms, guaranteeing high-quality purified water.
- Sludge Management Advantage: Ceramic MBR systems produce minimal, concentrated sludge, saving space and reducing treatment costs.
- Strong Adaptability: Ceramic MBR systems can adapt flexibly to various water qualities and treatment needs, including high-pollution wastewater.
- Environmentally Friendly: Ceramic MBRs low energy, small size, eco-friendly, effective pollutant removal.
Through these five key features, ceramic MBR systems have become an efficient, reliable, and economical solution in the field of water treatment.
{ notification.classList.remove('show'); }, 3000); } function openFullscreen(image) { const overlay = document.getElementById("fullscreen-overlay"); const fullscreenImage = document.getElementById("fullscreen-image"); fullscreenImage.src = image.src; // 将点击的图片源传递给全屏展示图片 overlay.style.display = "flex"; // 显示全屏容器 } function closeFullscreen() { const overlay = document.getElementById("fullscreen-overlay"); overlay.style.display = "none"; // 关闭全屏容器 } document.addEventListener("DOMContentLoaded", function () { // 打开弹窗函数 document.getElementById("send-inquiry").onclick = openPoterModal document.getElementById("help-btn").onclick = openPoterModal function openPoterModal() { document.getElementById("poterOverlay").style.display = "block"; } // 关闭弹窗函数 function closePoterModal() { document.getElementById("poterOverlay").style.display = "none"; } // 绑定关闭按钮点击事件 document.getElementById("poterCloseBtn").addEventListener("click", closePoterModal); // 点击遮罩层外部区域关闭弹窗 document.getElementById("poterOverlay").addEventListener("click", function (e) { if (e.target === this) { closePoterModal(); } }); let quantityInput = document.getElementById("quantity"); quantityInput.addEventListener("input", function () { // 移除非数字字符 let newVal = this.value.replace(/[^0-9]/g, ""); this.value = newVal $("#overlay-quantity").val(newVal) }); let overlayQuantity = document.getElementById("overlay-quantity"); overlayQuantity.addEventListener("input", function () { // 移除非数字字符 let newVal = this.value.replace(/[^0-9]/g, ""); this.value = newVal $("#quantity").val(newVal) }); $(".add-btn").click(function () { let qty = parseInt($("#quantity").val()) console.log(qty); if (qty) { qty++ } else { qty = 1 } $("#quantity").val(qty) $("#overlay-quantity").val(qty) }) $(".subtract-btn").click(function () { let qty = parseInt($("#quantity").val()) if (qty > 1) { qty-- } else { qty = 1 } $("#quantity").val(qty) $("#overlay-quantity").val(qty) }) let productId = 2710821; let supplierId = 410219; $(".form-submit").click(function () { let params = { productId: productId, supplierId: supplierId, est_amount: $("#est_amount").val(), est_quantity: $("#quantity").val(), email: $("#email").val(), phone: $("#phone").val(), message: $("#message").val(), } // 遍历 params 对象,检查是否有空值 for (let [key, value] of Object.entries(params)) { if (!value) { // 检查是否为空或为0直接退出函数 return } } $.ajax({ url: "/api/ProductReserve", data: params, method: "POST", success: function (res) { if (res.statusCode == 200) { productId = null supplierId = null $("#est_amount").val("") $("#quantity").val(1) $("#overlay-quantity").val(1) $("#email").val("") $("#phone").val("") $("#message").val("") closePoterModal() showNotification('Successfully'); } else { alert(res.message) } } }) }) })