· Zen HuiFer · Case  · 需要2 分钟阅读

Pipeline Equipment Monitoring

This article introduces the key indicators, statistical schemes, application scenarios, and signal content design for pipeline equipment monitoring. By monitoring the operating status of the equipment, equipment failures can be detected in a timely manner to ensure the normal operation of the pipeline.

This article introduces the key indicators, statistical schemes, application scenarios, and signal content design for pipeline equipment monitoring. By monitoring the operating status of the equipment, equipment failures can be detected in a timely manner to ensure the normal operation of the pipeline.

Pipeline Equipment Monitoring

  • Monitoring Indicators
    • Equipment Operating Status

      • Standby 1
      • Running 2
      • Stopped 3
      • Maintenance 4
      • Abnormal Shutdown 5
    • Statistical Scheme

      • Equipment working conditions in terms of time
    • Application Scenarios

      • Monitor the status of pipeline equipment, detect equipment failures in time, and ensure the normal operation of the pipeline
    • Wildcard Subscription Mode

      • To avoid losing operating status information due to sensor failures, install multiple sensors and use wildcards to listen
      • Configure listening methods as needed
        • Most resource-intensive, one client listens to all, other topics configure one client per topic
        • Least resource-intensive, only one client listens to all
        • Other configurations, wildcard + specific individual listening methods, can facilitate troubleshooting of sensor failures
    • Signal Content Design

      • Since the status values are relatively simple, only 1-5, there is no need for base conversion for now. The message content is a four-digit fixed device ID + device status

        Example: 00012, the first four digits represent device number 0001, and 2 indicates that the current device is running

    • Configuration Example (only one wildcard is shown here)

      • First, add a client

        The parsing script is as follows

        function main(nc) {
            const deviceStatus = nc.substring(4,5)
            var dataRows = [
                { "Name": "deviceStatus", "Value": deviceStatus }
            ];
            var result = {
                "Time":  Math.floor(Date.now() / 1000),
                "DataRows": dataRows,
                "IdentificationCode": parseInt(nc.substring(0,4)),
                "DeviceUid": "5",
                "Nc": nc
            };
            return [result];
        }
        

        image-20240815110336130

      • Add signal configuration

        image-20240815111649454

      • Send simulated data and view the chart

        • The topic for sending simulated data is tp/random

        • IdentificationCode: 5 data situation is as follows

          image-20240815110627688

        • IdentificationCode: 1 data situation is as follows

          image-20240815112906685

      • Configure a script alarm

        • Suppose we need to configure an alarm for the status of the machine with identification code 5 on the pipeline, the script we write is as follows

          The script specifies the first item of data named device_bj in the parameter information

          function main(map){
          return  map.device_bj && parseInt(map.device_bj[0].Value) === 5
          }
          
        • Configure the alarm signal

          image-20240816151805370

        • Send simulated data and check the alarm situation

          image-20240816151914869

          image-20240816152110410

分享:
返回博客
Smart Water Supply

Smart Water Supply

This article introduces common equipment and statistical schemes in the smart water supply system, including soil temperature and humidity + conductivity sensors, smart water meters, pressure gauges and flow meters, water quality monitoring equipment, and pump station monitoring equipment. Through real-time monitoring and data analysis of these devices, the water supply system can be optimized, agricultural production efficiency can be improved, and water supply safety can be ensured.

智慧供水

智慧供水

本文介绍了智慧供水系统中的常见设备及其统计方案,包括土壤温湿度+电导率传感器、智慧水表、水压计与流量计、水质监测设备和水泵站监测设备。通过这些设备的实时监测和数据分析,可以优化供水系统,提高农业生产效率,确保供水安全。

Elevator Monitoring

Elevator Monitoring

This article details the key indicators, statistical schemes, and application scenarios of elevator monitoring. By monitoring the operating status, energy consumption, vibration, door opening and closing time, running speed, and temperature of the elevator, faults can be detected in time to ensure the safe and efficient operation of the elevator.

电梯监控

电梯监控

本文详细介绍了电梯监控的关键指标、统计方案和应用场景。通过监控电梯的运行状态、能耗、震动情况、门开闭时间、运行速度和温度等,及时发现电梯故障,确保电梯安全高效运行。