Detailed Introduction - Energy Storage Tank
Model: RGK Series
Pressurized: RGK-P
Non-pressurized: RGK-N
Product Name: Energy Storage Tank
Specifications:
Energy Tank - (Dedicated for Direct Preheating Integration) (Pressurized, 304 inner pipe construction, 2mm thickness, outer coating of 304, can be combined with direct preheating heat pump). Can be used independently in bathrooms or as a portable unit (camping) as an electric water heater (can also be combined with solar energy and heat pumps).
Space Barrel - (Patented barrel combining solar and air energy) (Non-pressurized, 304 inner barrel, outer coating of 304 composite aluminum for integrated insulation).
Dimensions:
Energy Tank -
65-liter preheating capacity (38cm diameter * 90cm length excluding base or casters) Can be used in bathrooms with 110V electric heating (e.g., rental suites, fitness centers, camping, etc.)
100-liter preheating capacity (38cm diameter * 130cm length excluding base or casters) Specifically designed for integration with 10-tube collectors of pressurized solar vacuum tubes and direct preheating system.
Space Barrel -
Customizable water capacity from 100L to 10,000L (hole positions can be designed by the user)
Electric Heating Auxiliary:
6-point dedicated stainless steel 304 electric heating tube (dry-burn prevention) Fixed usage: Single Phase 220V 5A & 10A Special usage: Single Phase 110V 10A Power and voltage can be customized.
Material:
Integrated SUS 304 stainless steel casing, polished surface.
Modes:
The following two modes coexist:
Heat Pump Priority: The system primarily operates with the heat pump, and the electric heating only activates if the temperature falls below the set temperature for electric heating within a specific time period.
Electric Heating Auxiliary: Electric heating operates on a separate schedule and temperature control. It serves as auxiliary heating when the heat pump is insufficient, instead of competing with the heat pump for heat production.
Patent:
Name: Integrated Electric Heating Device
Patent No: M492421
Applicant: Cheng Fang Energy Technology Co., Ltd.
Application Date: 2014/09/17
HOUSE:Balcony of a building
{ 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 = 2655977; let supplierId = 684055; $(".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) } } }) }) })