Residential House Project

Welcome to the Residential House Project documentation.

This documentation covers the architecture, installation, and usage examples of our digital twin system for residential houses.

Architecture

The system architecture is shown in the figure below. The digital twin model is fed with sensor information using MQTT. In our case, the broker is an EMQX Broker that stores all the sensor data to the TDengine database if needed. Additionally, all this data can be analyzed using applications such as Grafana or ThingsBoard.

System Architecture

MQTT – Sensor Feed

MQTT is a messaging protocol for Internet of Things (IoT) devices. It allows devices to communicate efficiently.

EMQX

EMQX is an MQTT broker that can be installed using Docker. The management console is accessible at the broker's URL and port 18083.

Server Access:

root@213.218.240.182

Dashboard URL:

dctwin.itec.tamu.edu:18083

Submit credentials to get access to the dashboard.

TDengine

TDengine is a powerful time-series database designed for the Industrial Internet of Things (IIoT). It excels at handling real-time ingestion, storage, analysis, and distribution of petabytes of data per day from billions of sensors and data collectors.

Connection Methods

  1. Native: Requires the client driver taosc to be installed. Offers the best performance but requires driver management.
  2. REST: No driver installation needed, cross-platform, easy to use, but lacks data subscription and binary data support. It has the worst performance.
  3. WebSocket: No driver installation needed, good performance, recommended for cloud service instances.

For more information, visit TDengine Documentation.

Example Basic SQL Query

Retrieve the database name, number of tables (ntables), and status from the information_schema.ins_databases table using the RESTful API:

"select name, ntables, status from information_schema.ins_databases;"

This query is posted to the TDengine endpoint:

tdengine-ip:6041/test/sql

Example Query for Average, Maximum, and Minimum Values

Retrieve the average, maximum, and minimum values for table d10 in 10-second intervals using the SQL interface.

Using the RESTful API:

"YOUR_SQL_QUERY_HERE"

MQTTX

MQTTX is a simple tool created by the same company that created EMQX to connect and test MQTT devices and brokers. It acts as a client that can publish and subscribe to any broker, and it can also run JavaScript files to test the brokers.

It can be downloaded at: MQTTX

Here is a simple getting started documentation to connect to any broker: Getting Started with MQTTX

On this implementation, we can see the connection to both brokers and different topics that we are subscribed to, including the event/sensor1 topic in which the fire virtual event will be broadcasted and other topics like tak/xml in which the tak information is being sent.

Installation

To install and set up the environment, follow these steps.

Docker Containers

Two Docker containers need to be running: emqx and tdengine.

EMQX

Ensure that the emqx container is running:

sudo docker ps

To start the emqx container if it is not up, run:

sudo docker start emqx

TDengine

Ensure that the tdengine container is running:

sudo docker ps

To start the tdengine container if it is not up, run:

sudo docker start tdengine

Docker Compose

A simple Docker Compose setup allows users to install both EMQX and TDengine databases to store all the incoming messages from the broker.

You can find the Docker Compose setup here: emqx_tdengine GitHub Repository.