安科瑞IoT电能管理系统性解决方案在马来西亚某工厂的应用

本文主要是介绍安科瑞IoT电能管理系统性解决方案在马来西亚某工厂的应用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

苏月婷

江苏安科瑞电器制造有限公司

1. 应用场景Application Scenario

  对工厂的三相用电设备的用电量进行采集并上传至系统, 从而使用户能够实现在PC上就能通过IoT EMS系统查看设备用电情况。

  Customers need to collect the basic energy consumption data and upload it to management system so that they can realized real-time and remote data monitoring using their PC.

  2. 技术选型 Technical Selection

  2.1三相回路电压为415Vac L-L,额定电流不超过80A AC,三相四线接线,电表方面选型三相带RS485(MODBUS-RTU)通讯的电表ADL400。

  Rated voltage of 3-phase monitoring circuits is 415Vac L-L while the rated current is below 80A AC, thus selection of metering devices will be ADL400 3-phase energy meter with RS485 communication of MODBUS-RTU protocol

  2.2工厂经确认后WiFi覆盖条件较好,频段为2.4GHz,方便提供220Vac供电,网关选用AWT100-WiFi搭配POW模块。支持广播自动抄表以便后续下行设备的添加。该网关上行为4GHz WiFi,采用MODBUS-RTU over TCP的透传通讯协议。下行为RS485通讯,采用MODBUS-RTU协议,从而与ADL400配合对数据进行上传至云服务器通向系统。

  After discussing with the customer, factory is with stable 4GHz WiFi coverage and signal,and a power supply of 220Vac is preferable. So, for the gateway parts, we select AWT100-WiFi which own auto-broadcasting function that can ease the later adjustment with subsequent ADL400. Also, AWT100-WiFi is paired with AWT100-POW power module.Other than that, since AWT100-WiFi is with upstream of 2.4GHz WiFi using MODBUS-RTU over TCP protocol and downstream of RS485 using MODBUS-RTU protocol to be paired with ADL400 for energy consumption data uploaded to cloud server and finally to the IoT System.

  2.3测试阶段服务器使用我司已经租用的亚马逊云服务器以节省客户预算。

  For pilot project phase, cloud server is highly recommended to use our company’s cloud server which has been rent on Amazon to save the customers’ budget on testing phase.

  2.4根据需求系统选用IoT EMS系统,并提供3个月试用以便客户测试。

  According to the request, IoT Energy Management System will be the most appropriate one and can provide 3-month free trial for testing use.

  3. 初期方案架构Pilot Project Solution Structure

  4. 后期方案方向 Plan after Pilot Project

  若初期方案测试成功,后期方案方向为:

  If pilot project proved to be successful, later plan should be as below:

  4.1云托管方案:综合考虑云服务器租用成本以及点位数量不多的情况,云方案推荐为系统软件选用托管,云服务器依旧使用我司的云服务器。硬件设备层无需改动,只需后续增订ADL400三相电能表,若点位数量需求较多,根据情况配套增订AWT100-WiFi网关。

  Cloud Hosting Service Solution: Considering about the comprehensive cost of renting the cloud server and the amount of monitoring circuits, deployment of cloud IoT Energy Management System should be paired with hosting service. In this situation, customer don’t need to afford the rent of cloud server and will use our own cloud server. Also, for the hardware of this solution, no change need be done just like in the pilot project solution structure. Customer only need to order more ADL400 3-phase energy meter and maybe paired AWT100-WiFi gateway according to the number of subsequent request.

  4.2本地买断方案:若客户对数据保密性比较有想法,后期推荐方向为IoT系统买断服务,服务器架设本地服务器并搭配工业交换机与UPS电源。硬件设备层电表依旧推荐ADL400,特殊型号ADF400L不推荐使用,原因是在三相四线接线为直通式接线而非互感器接入时,ADF400L的测量模块需求数量较多,无法减少成本。网关方面根据后期点位数量增配AWT100-CE或者APort100.

  Local Buy-out Service Solution: If request from customers for data safety and Confidentiality is much more higher. The buy-out service of IoT Energy Management System to be paired with a Local Server will be the best choice. Yet the solution need to do a lot of change in hardware like. First, deploying of local server need to be paired with industrial switch and UPS. Second, for energy meter, ADL400 is still more recommendable.Since the special module, ADF400L Multi-circuit energy meter with built-in Ethernet communication won’t save much budget on the application of 3-phase wiring via direct connection instead of via CTs. At last, gateway need to be changed from AWT100-WiFi to AWT100-CE or Aport100 according to the amount of subsequent request.

  5. 后期方案架构 (仅指采用本地方案的情况下) Late-stage Solution Structure (For local solution only)

这篇关于安科瑞IoT电能管理系统性解决方案在马来西亚某工厂的应用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/779949

相关文章

Knife4j+Axios+Redis前后端分离架构下的 API 管理与会话方案(最新推荐)

《Knife4j+Axios+Redis前后端分离架构下的API管理与会话方案(最新推荐)》本文主要介绍了Swagger与Knife4j的配置要点、前后端对接方法以及分布式Session实现原理,... 目录一、Swagger 与 Knife4j 的深度理解及配置要点Knife4j 配置关键要点1.Spri

PostgreSQL的扩展dict_int应用案例解析

《PostgreSQL的扩展dict_int应用案例解析》dict_int扩展为PostgreSQL提供了专业的整数文本处理能力,特别适合需要精确处理数字内容的搜索场景,本文给大家介绍PostgreS... 目录PostgreSQL的扩展dict_int一、扩展概述二、核心功能三、安装与启用四、字典配置方法

Java 线程安全与 volatile与单例模式问题及解决方案

《Java线程安全与volatile与单例模式问题及解决方案》文章主要讲解线程安全问题的五个成因(调度随机、变量修改、非原子操作、内存可见性、指令重排序)及解决方案,强调使用volatile关键字... 目录什么是线程安全线程安全问题的产生与解决方案线程的调度是随机的多个线程对同一个变量进行修改线程的修改操

Python中re模块结合正则表达式的实际应用案例

《Python中re模块结合正则表达式的实际应用案例》Python中的re模块是用于处理正则表达式的强大工具,正则表达式是一种用来匹配字符串的模式,它可以在文本中搜索和匹配特定的字符串模式,这篇文章主... 目录前言re模块常用函数一、查看文本中是否包含 A 或 B 字符串二、替换多个关键词为统一格式三、提

Java MQTT实战应用

《JavaMQTT实战应用》本文详解MQTT协议,涵盖其发布/订阅机制、低功耗高效特性、三种服务质量等级(QoS0/1/2),以及客户端、代理、主题的核心概念,最后提供Linux部署教程、Sprin... 目录一、MQTT协议二、MQTT优点三、三种服务质量等级四、客户端、代理、主题1. 客户端(Clien

全面解析MySQL索引长度限制问题与解决方案

《全面解析MySQL索引长度限制问题与解决方案》MySQL对索引长度设限是为了保持高效的数据检索性能,这个限制不是MySQL的缺陷,而是数据库设计中的权衡结果,下面我们就来看看如何解决这一问题吧... 目录引言:为什么会有索引键长度问题?一、问题根源深度解析mysql索引长度限制原理实际场景示例二、五大解决

SpringSecurity显示用户账号已被锁定的原因及解决方案

《SpringSecurity显示用户账号已被锁定的原因及解决方案》SpringSecurity中用户账号被锁定问题源于UserDetails接口方法返回值错误,解决方案是修正isAccountNon... 目录SpringSecurity显示用户账号已被锁定的解决方案1.问题出现前的工作2.问题出现原因各

javax.net.ssl.SSLHandshakeException:异常原因及解决方案

《javax.net.ssl.SSLHandshakeException:异常原因及解决方案》javax.net.ssl.SSLHandshakeException是一个SSL握手异常,通常在建立SS... 目录报错原因在程序中绕过服务器的安全验证注意点最后多说一句报错原因一般出现这种问题是因为目标服务器

CSS中的Static、Relative、Absolute、Fixed、Sticky的应用与详细对比

《CSS中的Static、Relative、Absolute、Fixed、Sticky的应用与详细对比》CSS中的position属性用于控制元素的定位方式,不同的定位方式会影响元素在页面中的布... css 中的 position 属性用于控制元素的定位方式,不同的定位方式会影响元素在页面中的布局和层叠关

SpringBoot3应用中集成和使用Spring Retry的实践记录

《SpringBoot3应用中集成和使用SpringRetry的实践记录》SpringRetry为SpringBoot3提供重试机制,支持注解和编程式两种方式,可配置重试策略与监听器,适用于临时性故... 目录1. 简介2. 环境准备3. 使用方式3.1 注解方式 基础使用自定义重试策略失败恢复机制注意事项