Data Acquisition and Remote Monitoring System Design for Industrial Wireless Flowmeters
Data Acquisition and Remote Monitoring System Design for Industrial Wireless Flowmeters
Deploying a wireless flowmeter is not simply about installing the device and reading the numbers. A complete remote monitoring system requires careful design of the data acquisition architecture – from the flowmeter’s onboard processing, through field gateways, to the final SCADA or cloud platform where operators visualise and act upon the data. This article outlines the essential components of such a system, typical topologies, data acquisition strategies, and best practices for ensuring reliable, low‑power operation.
System Architecture Overview
A typical industrial wireless flowmeter monitoring system consists of four logical tiers: the sensing tier (wireless flowmeters installed on pipes), the aggregation tier (field gateways that collect and forward data), the transport tier (backhaul network – Ethernet, cellular, or fibre), and the application tier (on‑premise SCADA, cloud platform, or asset management system).
Between the wireless flowmeter and the gateway, the communication uses low‑power wireless protocols such as LoRaWAN, WirelessHART, ISA100.11a, Wi‑SUN, or NB‑IoT. The gateway acts as a protocol bridge, converting wireless packets into industrial Ethernet protocols (Modbus TCP, PROFINET, EtherNet/IP) or modern IoT protocols (MQTT, REST API). The backhaul network then delivers the data to a central server or cloud.
For small installations (fewer than 20 flowmeters), a single gateway may be sufficient. For large plants (hundreds of flowmeters spread over kilometres), multiple gateways are required, and some systems use mesh networking where flowmeters themselves forward packets to extend range.
Data Acquisition Strategies: Polling vs. Reporting
Wireless flowmeters support two fundamental data acquisition models: polling and autonomous reporting.
In polling (request‑response), the gateway or central system sends a request to a specific flowmeter, and the flowmeter replies with its current data. This model gives the control system full control over when data is collected. However, it keeps the flowmeter’s radio receiver active (or requires frequent wake‑up to listen for requests), which drains battery quickly. Polling is rarely used for battery‑powered wireless flowmeters; it is acceptable only when the flowmeter has mains power.
In autonomous reporting (publish‑subscribe), each wireless flowmeter wakes up at a pre‑configured interval (e.g., every minute, every hour, or on change of flow exceeding a threshold), takes a measurement, and transmits a data packet without waiting for a request. The gateway listens continuously. This model is battery‑friendly because the flowmeter’s radio spends most of the time in deep sleep (microamps). Most industrial wireless flowmeters use autonomous reporting.
A hybrid approach is report‑by‑exception: the flowmeter reports at a slow baseline rate (e.g., once per hour), but if the flow rate changes rapidly or exceeds an alarm limit, it immediately transmits an extra packet. This balances battery life with responsiveness.
Field Gateways: The Critical Bridge
The field gateway is the most important component after the flowmeter itself. It performs several functions:
-
Receiving and acknowledging wireless packets from multiple flowmeters. A single LoRaWAN gateway can handle tens of thousands of devices; a WirelessHART gateway typically handles 50 to 500 devices.
-
Decrypting and validating packets. Most industrial wireless protocols encrypt payloads (e.g., AES‑128) and include sequence numbers to prevent replay attacks.
-
Buffering data in local flash memory. If the backhaul network fails (e.g., fibre cut), the gateway stores incoming packets with timestamps and forwards them after the connection is restored. This prevents data loss.
-
Protocol conversion to standard industrial protocols. For example, a LoRaWAN gateway may expose an MQTT broker or a Modbus TCP server, allowing SCADA to read flow values as simple registers.
-
Time synchronisation for the network. Many wireless protocols (especially WirelessHART and ISA100.11a) use time‑slotted channel hopping (TSCH), requiring the gateway to act as a time source. NB‑IoT and LoRaWAN devices derive time from network servers.
When selecting a gateway, ensure it supports the specific wireless technology and frequency band used by your flowmeters. Also verify that it includes a firewall and VPN capability if the backhaul is over the public internet.
On‑Premise vs. Cloud Platforms
Once data reaches the gateway, it can be sent to an on‑premise SCADA system, a cloud platform, or both.
On‑premise SCADA (e.g., Wonderware, Ignition, WinCC) is common in large process plants where operators are accustomed to existing HMI screens. The gateway typically connects via Ethernet and presents flowmeter data as Modbus TCP or OPC DA/UA tags. Advantages: low latency (milliseconds), full control over security, and no recurring cloud fees. Disadvantages: requires IT infrastructure maintenance and on‑site backup.
Cloud platforms (e.g., AWS IoT Core, Azure IoT Hub, or vendor‑specific dashboards) are popular for remote sites, water utilities, and plants that lack on‑premise servers. The gateway (or an integrated cellular module) sends MQTT or HTTPS messages to the cloud. The cloud platform stores data, provides dashboards and alerting, and may integrate with enterprise resource planning (ERP) systems. Advantages: no on‑site server, built‑in redundancy, easy access from anywhere. Disadvantages: recurring data costs, potential latency (seconds to minutes), reliance on internet connectivity.
For mission‑critical applications (e.g., safety shutdown based on flow), on‑premise SCADA with a direct wired backup is still recommended. For energy monitoring, water balancing, or environmental reporting, cloud platforms are highly cost‑effective.
Typical Data Payload and Message Structure
A wireless flowmeter’s transmission packet must be compact to save battery and airtime. A typical payload includes:
-
Device ID or MAC address (4 bytes) – uniquely identifies the flowmeter.
-
Timestamp (4 or 8 bytes) – seconds since epoch, or a free‑running counter with network time synchronisation.
-
Instantaneous flow rate (4 bytes) – scaled integer or single‑precision float (e.g., 123.45 m³/h).
-
Totalised flow (4 or 8 bytes) – cumulative volume since last reset, often sent as a 32‑bit integer with a fixed multiplier (e.g., 1 unit = 0.1 m³).
-
Pressure and temperature (4 bytes each) – for gases and steam, enabling density correction.
-
Diagnostic flags (1‑2 bytes) – battery voltage low, empty pipe, sensor fault, wireless link quality.
-
Cyclic redundancy check (CRC) (2 bytes) – for error detection.
The total payload is often 20 to 30 bytes. Adding protocol headers (LoRaWAN MAC, FPort, etc.) results in an over‑the‑air packet of 40 to 80 bytes. At a typical data rate of 500 bps to 5 kbps, the transmission takes only 100 to 500 milliseconds, allowing the flowmeter to return to sleep quickly.
Alarm Handling and Event Management
A remote monitoring system is only valuable if it alerts operators to abnormal conditions. Define alarm rules based on the wireless flowmeter’s data:
-
High flow alarm – exceeded setpoint (e.g., pipe rupture or bypass theft).
-
Low flow alarm – below minimum expected (e.g., pump failure or blockage).
-
Rate‑of‑change alarm – sudden increase/decrease beyond normal (e.g., burst detection in water networks).
-
Diagnostic alarms – battery low, communication lost, sensor error.
Alarms should be generated at the edge (gateway) or in the cloud platform, not inside the flowmeter itself (to conserve battery). The gateway can evaluate a simple rule set and send an immediate notification via email, SMS, or industrial protocol (e.g., write a discrete tag to SCADA). For critical alarms, consider redundant communication paths (e.g., cellular backup if primary Ethernet fails).
Practical Example: Cooling Tower Monitoring
A chemical plant operates four cooling towers across a 500‑metre area. Each tower has six supply and return lines that require flow monitoring. The plant installed 24 battery‑powered wireless electromagnetic flowmeters using LoRaWAN. Two LoRaWAN gateways were placed on the roof of the central control building, providing coverage for all flowmeters. Each flowmeter transmits flow rate, totaliser, and battery voltage every five minutes via a public LoRaWAN network server. The server forwards MQTT messages to the plant’s Ignition SCADA system, which displays a real‑time dashboard with colour‑coded flow values. When the flow in any line drops below 80% of its normal baseline, SCADA generates an operator alert. Within one month, the system identified a partially closed valve that had been wasting pump energy. Payback was six months from energy savings alone.
Designing a data acquisition and remote monitoring system for wireless flowmeters requires careful consideration of polling vs. reporting, gateway capabilities, on‑premise vs. cloud platforms, payload optimisation, and alarm logic. A well‑architected system delivers reliable, low‑power operation, minimises data loss, and provides actionable insights to operators. As wireless technology continues to mature, the integration between flowmeters, gateways, and enterprise systems will become even more seamless, further reducing the total cost of ownership for remote flow monitoring.





