Skip to content

A black box data driven model that considers the characterization and prediction of heat load in buildings connected to District Heating by using smart heat meters

Notifications You must be signed in to change notification settings

hajri94/Predictive-Model-for-Heat-Load-in-Buildings-Connected-to-District-Heating-Network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 

Repository files navigation

Predictive Model for Heat Load in Buildings Connected to District Heating Network

Project overview

District Heating (DH) systems operated reliably over decades and provided a relevant share of energy to households across Europe. Currently, 12% of Europe's heating energy to buildings is delivered by District Heating Networks (DHNs), with more than 6000 systems serving around 60 million citizens. Moreover the market shares for District Heating can be increased to 30% in 2030 and 50% in 2050 by introducing renewables and waste heat in the supply. There are increasing variations in the system due to lower specific energy loads and intermittent renewable energy sources which raise the need for more accurate characterization and prediction of heat loads in buildings to ensure effective operation of these systems.

In this work we investigate the heat load patterns in one building using multi-step forecasting model based on Segmented Auto Regressive Models (S-ARX-MLR). In other word we combine the Multivariate Linear Regression models (to capture physical dependencies) with Auto Regressive models (to deal with energy storage across data segments) and Integration features (to correct model inaccuracies), into an accurate and reliable regression model used in time series forecasting.

Table of Contents

  1. Project Overview
  2. Installation
  3. Data Sources
  4. Data Preprocessing
  5. Load Assessment and Graphic Exploration
  6. Data Segmentation
  7. Model Evaluation To characterize The Heat Load
  8. Model Optimization to Predict the Heat Load
  9. Conclusion

Installation

We clone the github repository in Google Colaboratory (Google-Colab). A hosted jupyter notebook service that allow us to write and execute arbitrary code through browser.

Step1 :

Go to File ==> Open Notebook

Step2 :

Paste the URL of the github repository you want to clone.

all the files will show. We can select the file that we want to work on

Data Sources

The sources of our data come from two locations: district heating substations and weather station.

The sub-network of the district heating covers 42 substations (buildings), located in Tartu (Estonia). The datasets were collected from each substation. We attached, in each building, an energy smart meter (Kamstrup) that measures constantly different variables represented in heat load (kW), volumetric flow rate(m3/h), and five different supply and return temperatures(°C). The device sends the real time measured data to GREN, the operator responsible for the district heating.

Data taken from the weather-station, located in Tartu University (Estonia), have 15-minute frequency basis. The dataset related to the weather station comprise the outdoor temperature, wind speed(m/s), wind direction, irradiation flux(W/m2) and calendar data.

Data Preprocessing

The data preprocessing is an important step since it indicates whether we have a bad data resulted from experiment that may have not run-in proper way.

We go to Google Colab notebook, we select the file Organized Data/Scripts/Outlier detection & repair.ipynb

This source code is composed of two sections:

  • Data Preprocessing (before implementing the outlier detection and imputation process) : where we do few steps in order to combine the weather data and heat load data into a single dataset
  • Implementing the outlier detection and imputation process : in this section we perform the identification of outliers along with the imputation process. (Imputation Process: where we fill the heat load missing values after we remove the outliers).

In the Github repository we go to Organized data ==> Select the folder word files==> Choose the file Outlier detection&repair.docx

This word file has a detailed explanation regarding the techniques used in applying the outlier detection and imputation process. Also it provides the outputs generated by the code.

Load Assessment and Graphic Exploration

Plotting time series values for the selected building dataset allow to identify different patterns such as trends and seasonality. Moreover, it enables many features of the data. In particular, we can highlight the changes over time and recognize unusual observations.

We go to Google Colab notebook, we select the file Organized Data/Scripts/Heat Load Assessment.ipynb

This source code is composed of two sections:

  • Load Assessment & Graphic exploration (Full year) : an initial analysis of the available dataset for the full year is performed with an identification of heat load patterns

  • Load Assessment & Graphic exploration (Winter term) : an initial analysis of the winter term dataset is performed with an identification of heat load patterns. (the winter term dataset is extracted from the available full year dataset)

In the Github repository we go to Organized data ==> Select the folder word files==> Heat load assessment&Graphic exploration.docx

In this word file we will find all the outputs and graphs regarding the load profile of the building along with a detail analysis of the heat load patterns.

Data Segmentation

The data will be limited only to winter term (December to February) and shoulder season (March - May + Sep - Nov). The summer term will be excluded in this study to avoid the excessive relevance of period that have low heat load. Furthermore, the workdays and weekends were separated in order to remove the intraweek seasonality.

graph TD;
    Winter-Term-->Workdays;
    Winter-Term-->Weekends;    
    Workdays-->Model-A;        
    Weekends-->Model-B;
graph TD;
    Shoulder-Term-->Workdays;
    Shoulder-Term-->Weekends;    
    Workdays-->Model-C;        
    Weekends-->Model-D;

Model Evaluation To characterize The Heat Load

In this part we explain the overall relationship between the predictors and the outcome variable, and at what settings the characterization of heat demand can deliver acceptable performance.

We go to Google Colab notebook, we select one of these two files:

🩴 Organized Data/Scripts/Model Evaluation To characterize The Heat Load_winter.ipynb : This file is dedicated for the models of the winter term.

🩴 Organized Data/Scripts/Model Evaluation To characterize The Heat Load_shoulder.ipynb : This file is dedicated for the models of the shoulder term.

For both two files the source code is composed of the following sections :

  • Pre Modelling Step : We perform a few steps to create and organize the dataframe to be used in the modelling process.
  • Modelling Step (ARX Model) : We fit our model using the Ordinary Least Square (OLS) and apply the feature selection with variance thresholding to extract the significant parameters.
  • Model Quality ==> Graphical Residual Analysis: Several plots were represented to check if our assumption were reasonable and whether the choice of our model were appropriate or not.

In the Github repository we go to Organized data ==> Select the folder word files==> Select the file Model Evaluation To characterize The Heat Load.docx

In this word file the best estimates for the coefficient to fit the each model have been assessed. A summary statistic table was presented in order to evaluate how the regression models fits the data. Moreover, the graphical residual plots are delivered.

Model Optimization to Predict the Heat Load

We calibrate our models for prediction purpose. We evaluate the effect of including various type of input parameters to improve the forecast accuracy of the models.

We go to Google Colab notebook, we select one of these two files:

🩴 Organized Data/Scripts/Model optimization to predict the heat load_winter.ipynb : This file is dedicated for the models of the winter term.

🩴 Organized Data/Scripts/Model optimization to predict the heat load_shoulder.ipynb : This file is dedicated for the models of the shoulder term.

For both two files the source code is composed of the following sections :

  • Data Scenarios and optimal parameters to predict the heat load : We recalibrate the model parameters for prediction purpose by evaluating the effect of including various type of input parameters.
  • Comparison of Models performance with Different Data Scenarios : we choose the best data scenario that generate more accurate prediction.
  • Seasonal Performance Variations : We evaluate the performance of the model in each month.

In the Github repository we go to Organized data ==> Select the folder word files ==> Select the folder Model Optimization to predict the heat load ==> Select the file Data Scenarios and Optimal Parameters to Predict the Heat load.docx

The word file delivers the results of different evaluation metrics when evaluating the effect of including various type of input parameters.

We select the file Model Selection and Seasonal performance variation.docx

In this word file we explain how did we select and test the models. Also we explain the seasonal performance variation of the heat load throughout the year for each model.

Conclusion

We have presented a data driven model for the characterization and prediction of heat demand in buildings connected to district heating (DH) networks. Our new model is applied in a short-term heat load forecast with high temporal resolution (hourly and daily timestamp) for different buildings, relying on weather and calendar information.

The heat load patterns are investigated using multi step forecasting model based on Segmented Autoregressive model with exogenous variables combined with multiple linear regression (S-ARX-MLR). It is able to handle linear dynamic relationship of system parameters reliably. Consequently, we can get a robust and accurate regression model used in time series forecasting with low calculation and processing cost.

About

A black box data driven model that considers the characterization and prediction of heat load in buildings connected to District Heating by using smart heat meters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published