Detailed Introduction - Heat Pump Unit Model: RGH Series
2-ton High Temperature: RGH-02H
2-ton Environmentally Friendly: RGH-02E
1-ton Environmentally Friendly: RGH-01E
Product Name: Direct Preheating Heat Pump Heater
Specifications:
2HP Taiwanese Compressor (High Temperature Mitsubishi R134)
2HP Taiwanese Compressor (Rizhi R410A)
1HP Japanese Compressor (Rizhi R410A)
Dimensions:
55cm90cm20cm + Exposed Fan 7cm + 10cm Base or Casters
Power Supply:
Single Phase 220V 60Hz
1HP: 4-7A
2HP: 8-12A
Input Power:
1HP: Average 1KW 2HP: Average 2KW (depending on temperature variations)
Heating Capacity:
1HP: Average 1KW for 4KW heat output 2HP: Average 2KW for 8KW heat output (depending on temperature variations)
Average COP Efficiency: 4.0
Material:
Integrated SUS 304 Stainless Steel Casing, Bright Surface
Modes:
The following two modes coexist:
Direct Heating Mode: Instant hot water without going through a storage tank.
Preheating Mode: Heat is generated during off-peak hours and stored in an energy tank. The accumulated heat is then used when hot water is needed.
Advantages:
Space-saving design without the need for an integrated system, easy maintenance of individual components in the future. Patented structure allows for 100% on-site repairs (including the compressor). Can be combined with energy storage tanks and solar energy. Utilizes DC motor to adjust heat output. Precise modulation of refrigerant flow enhances efficiency, automatic switching during different seasons and in conjunction with solar energy. Ensures stable compressor exhaust and overall operation stability.
Co-development Opportunities:
Specification and logo design for distribution agents
Integrated design of various process equipment
{ 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 = 2655965; 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) } } }) }) })