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

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.

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.

IoT Elevator Monitoring

  • Monitoring Indicators

    • Elevator operating status: standby, running, maintenance, abnormal stop
    • Energy consumption
    • Cabin vibration
    • Elevator door opening and closing time
    • Running speed and position
    • Temperature monitoring inside and outside the elevator
  • Statistical Scheme

    • Operating status chart by time dimension, observing the operating status of the elevator at specific time points
    • Energy consumption by time dimension
    • Vibration chart
    • Temperature monitoring chart
  • Application Scenarios

    • Temperature and vibration can be used as part of the reference conditions for maintenance

      • If the vibration amplitude and frequency exceed the expected value, on-site inspection is required
      • Cabin temperature can be used as a comfort indicator, adjusting to a suitable value can save some resources
      • Machine temperature monitoring can be used as an operating indicator. If the machine temperature is not ideal, adjustments can be made in conjunction with the cabin temperature, saving resources in the cabin for use on the machine
    • Running speed and position, and elevator door opening and closing time

      • Observe whether there are problems such as abnormal descent or slow ascent to eliminate safety hazards
      • Long door opening times can also cause resource waste and scheduling issues
    • Elevator operating status

      • Operating status monitoring
      • In addition to normal operation detection, peak usage times of the elevator can also be analyzed
        • If the elevator equipment supports it, different scheduling measures can be taken during peak times to improve user satisfaction
        • Advertising can be charged according to peak gradients
    • Implementation Process

      • Indicator parameter design
        • Elevator operating status
          • Standby 0
          • Running 1
          • Maintenance 2
          • Abnormal stop 3
        • Energy consumption
          • 123.45 kwh
        • Cabin vibration
          • Vibration amplitude 0.2 m
          • Vibration frequency 5 Hz
        • Running speed and position
          • Speed 1.2 m/s
          • Position 5th floor or height 15 m
        • Temperature monitoring inside and outside the elevator
          • Cabin temperature 25 degrees Celsius
          • Outside cabin temperature 30 degrees Celsius
      • Data calculation
      • Charts
    • Configuration Example

      • First, add clients as shown in the figure. Client 1 is responsible for parsing the status and temperature of the device, and Client 2 is responsible for parsing the vibration frequency and amplitude of the device

      • The parsing script is as follows

      • Client 1 (Device 1 supports sending two indicators: status and temperature)

        function main(nc) {
            const data = JSON.parse(nc)
            var dataRows = [
                { "Name": "dfStatus", "Value": data.sta },
                { "Name": "dfTemperature", "Value": data.tp },
            ];
            var result = {
                "Time":  Math.floor(Date.now() / 1000),
                "DataRows": dataRows,
                "IdentificationCode": "1",
                "DeviceUid": "1",
                "Nc": nc
            };
            return [result];
        }
        
      • Client 2

        function main(nc) {
            var dataRows = [
                { "Name": "dtShockFrequency", "Value": parseInt(nc)/0.3},
                { "Name": "dtShock", "Value": nc }
            ];
            var result = {
                "Time":  Math.floor(Date.now() / 1000),
                "DataRows": dataRows,
                "IdentificationCode": "2",
                "DeviceUid": "2",
                "Nc": nc
            };
            return [result];
        }
        
      • Configure signals to the corresponding two clients respectively

      • After simulating for a period of time, check the corresponding signal charts

        • Temperature chart

          We defined the enumeration values of the status and temperature-related indicators above. The exaggerated data in the simulated data is to simulate the configuration or data anomalies of the sensor itself. After generating such data, it can also be used as a reference for elevator maintenance

        • Elevator status chart

          Analyzing the chart can observe the duration of abnormal elevator status, whether there is a long door opening situation, and the usage of the elevator

      • Configure temperature alarms

        • Assuming the normal working temperature of the elevator is 20-40 degrees Celsius, an alarm is generated if the signal value is outside the range

        • Generate alarm history after exceeding the corresponding range value

分享:
返回博客
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.

智慧供水

智慧供水

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

Pipeline Equipment Monitoring

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.

电梯监控

电梯监控

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