Difference between revisions of "Projects:2019s2-25202 Electricity Consumers' Greenness: A Measure to Quantify Electricity Consumers' Sustainability and Efficiency"

From Projects
Jump to: navigation, search
(Experimental setup in a household)
(Neural Network implementation)
Line 121: Line 121:
  
 
=== Neural Network implementation ===
 
=== Neural Network implementation ===
 +
 +
Our inputs for this research are power consumption of the refrigerator and the indoor temperature of the room the refrigerator is located. Referring to Section 1, it is important to consider the exogenous factors in the calculation of the Greenness factor besides human interaction. Therefore, the indoor temperature is one of the exogenous factors being considered in our experiment. Since these inputs are non-linear, we need a nonlinear dynamic network which takes exogenous inputs.
 +
 +
The NARX (Nonlinear autoregressive with external input) model is being implemented in our project that utilizes observations from a past time series to predict the future values of that time series. This network uses tapped delay lines to store the previous values of the input sequences. It is important to note that the output of the NARX network is being fed back to the input of the network through delays.
 +
The feedback loop can be open loop for efficient training of the NARX network. Since we define the output of the network, an open-loop architecture is ideal for training. The number of neurons and delays can be set accordingly depending on the training performance of the network.
 +
 +
We are using the default number of neurons for our network i.e. 10 and the number of delays has been set to 30 instead of the default number 2. Figure 14 illustrates how the input data is selected for training. There are total 1440 minutes in a day. By defining a delay of 30, the network selects the first 30 input values for training and predicts the 31st value i.e. the target value.
 +
 
=== Dynamic Base Case ===
 
=== Dynamic Base Case ===
 
=== Concept of Accumulated Credit ===
 
=== Concept of Accumulated Credit ===

Revision as of 16:58, 8 June 2020

Generation and demand balance is a critical job for the grid operator. This balance is being affected by the increasing number of frequency events on the grid which in turn require fast balancing resources. However, existing balancing resources, such as synchronous generators, are retiring for many economic and environmental reasons. Adding more intermittent renewable generation makes the real-time operation a lot more difficult compared to traditional grid, also requiring higher amount of balancing resources. Therefore, this project focuses on introducing a better way of energy consumption by quantifying the inefficiencies in the consumer behaviour.

Introduction

Quantifying the energy-efficiency of a building using electricity consumption data has been a research question for many years. These efforts were based on identifying the source of inefficiencies in the building structure or the device itself. However, even in a highly efficient building, consumers with their unique behaviours can degrade the efficiency of energy usage. One example is using an appliance at on-peak hours or setting the HVAC setpoint to an unreasonable level during the same time. As the Internet-of-Things (IoT) is becoming widespread, more information about individual appliance's consumption is available. Therefore, it is time to pinpoint the inefficiency in the consumers' behaviours. In this project, we intend to introduce the "Greenness" factor for a household by first designing a "Greenness" map for every appliance in a household based on their physical and operational limitations, and relevant exogenous factors such as ambient temperature, type of day, the hour of the day, season, etc. Then, we quantify the "Greenness" of a household electricity consumption according to the data for every appliance. In the next step, we develop an aggregate "Greenness" map for every day of every year of the historical data to represent the overall efficiency of the consumer's behaviour in a household. Finally, we convert the aggregate "Greenness" map to a single "Greenness" factor for the household.

Project team

Project students

  • Usman Khan
  • Farrukh Ahsan
  • Bo Yin

Supervisors

  • Ali Pourmousavi Kani

Advisors

  • Associate Professor Nesimi Ertugrul

Objectives

1. Design a "Greenness" map for every major appliance in a household based on their physical and operational limitations.

2. Account for the exogenous factors such as ambient temperature, type of day, the hour of the day, season, etc. when needed.

3. Aggregating the "Greenness" map for every day of every year of the historical data to represent the overall efficiency of the consumers’ behaviour in a household.

Background

There has been no previous work done on the estimation of Electricity Consumers’ Greenness. However, there are other areas of research that can be related to Consumers’ Greenness. The following table is a summary of some key research focus areas and their impact on consumer behaviour.

Table 1: Pros and Cons of Research Focus Areas related to Consumers' Greenness
Focus of Study Pros Cons
Residential Energy Efficiency Ratings • Highlight ability of efficient households to satisfy consumers • Not influential due to lack of consumers’ engagement in relation to sustainability certification and implementation

• Static calculation discarding long-term effects


Energy Rating Labels on Appliances • Communicate useful energy information • No significant behavioral change
Energy Audit • Energy based renovation is driven by householder perception of comfort and acceptable outlay on energy bills • Complex outlay

• High payback periods

Demand Response • Flexible price design

• No compromise of consumer privacy

• Electricity demand of uninformed households' price-inelastic

• No real-time power

Non-Intrusive Load Monitoring • Easy to monitor energy consumption

• Flexible options for grid operator

• Insufficient point of references for applicability


Most of the research carried out in the field of engineering involves assumption of certain conditions or quantities being constant in order to observe the key parameters being considered. This is usually carried out while formulating equations or cases that serve as the point of reference for other data parameters to be compared and tested against. Similarly, Electricity Consumers’ Greenness requires the formulation of a point of reference against which normal behaviour of major appliances can be compared. This point of reference can be defined as the base case. The base case involves monitoring the consumption data of major appliances in a household during the time in which consumers have negligible interaction with the appliances (e.g. 12 AM to 5 AM). We are assuming that consumers would not be interacting with the household appliances after midnight to early hours of the day. Our main focus here is to consider household appliances that follow a repetitive set cycle throughout the day. Appliances such as heat pumps and refrigerators follow this cyclic pattern of electricity consumption, therefore known as cyclic appliances. We have chosen refrigerators as the key appliance in our project because they consume electricity in an ‘ON/OFF’ duty cycle rather than one continuous cycle of operation. The base case can be formulated once we obtain the electrical consumption data of a refrigerator during hours without consumer interaction. Next step would involve the observation of real consumption data with consumer interaction during the day (peak hours).


Figure 1: Power vs time graph for Base Case/Real Data comparison


Figure 1 is a clear representation of what we primarily intend to achieve in this project. The base case shows a cyclic behaviour of power consumption against time. The real data i.e. the power consumed by the appliance inclusive of consumer behaviour is shown to have differences as compared to the base case. It is important to note that these differences occur for different time widths at the same power level. These differences signify the inefficiencies of the appliance, which can then be quantified further to give us a Greenness factor of the appliance during the day.


Methodology

Data Acquisition

Design Approach

Modelling approach

Different modelling approaches

Table 2: Summary of Data-driven vs Physics-based approaches
Data-driven Physics-Based
Accurate approach for nonlinear system networks System based on state variables represented by linearized state equations
Requires Less knowledge of physical system Requires extensive knowledge of factors/inputs
Large data is needed to develop an accurate model Assumptions in linearizing model can lead to errors
Training is time consuming Actual behaviour might be different from linearized model

Table 2 shows a summary of the modelling approaches that have been considered for our project. These are data-driven and physics-based respectively.

Data-driven systems treat the system being modelled like a ‘black box’ – a set of training inputs and desired output are defined without any knowledge of the internal workings. This is an accurate approach for non-linear systems as it requires minimum knowledge of the physical aspects of the system. However, large datasets and parameter selections is a tedious and time-taking task in data-driven systems. Data-driven systems involve training through a trial-and-error process to learn and be able to predict from the defined set of data. Physics-based systems employ a mathematical approach, consisting of physical variables represented by linearized state equations. This requires extensive knowledge of the physical system before defining the set of state variables. The linearized model in a physics-based system is based on assumption of some variables which linearize the non-linear systems. This introduces errors in a non-linear, dynamic system. Our project involves numerous unpredictable inputs, such as consumer behavior and exogenous factors, and a targeted (desired) output. A data-driven model best suits our modelling approach to obtain the base case as we prioritize a learning, iterative process in comparison to a linearized, defined model. It is important to develop a sustainable system which learns from data sets and accurately predicts possible situations based on intuition.

Artificial Neural Network (Data Driven model)

Amongst numerous deep learning toolboxes, we have chosen the Artificial Neural Networks (ANN) to serve as our data-driven model. ANN functions like a human mind, consisting of interconnected neurons with a capability to learn from a training data set and predict results accordingly.

The inputs are fed into the input layer which is often a single layer. Larger number of hidden layers would increase the processing time of the neural network to produce an output. The hidden layers contain neurons and perform transformation of the non-linear inputs entered. The output layer is connected to the hidden layer and displays the output of the model.

Implementation and Testing

Experimental setup in a household

A design experiment was necessary to be implemented in an experimental household to acquire real-time power consumption data and indoor temperature of the room the refrigerator was located. The CT sensor clamp (provided with the Efergy Engage Hub) has been manufactured to work on the main supply cable behind the switchboard rather the appliance’s power cord. Initial testing of the design experiment recorded no electrical data on our energy meter as the sensor clamp was not able to sense any alternating current. To resolve this issue, two possible approaches have been considered: 1. Removing the outer sheath of the appliance power cord to place sensor clamp onto the live cable 2. Use of an experimental measurement box (as shown in Figure 13)




The measurement box has two loops which can be used with our CT sensor clamp. The electrical appliance can be connected at one end of the extension (grey connector on the left) and the CT sensor clamp onto the thinner loop (one turn of wire). This box would serve the purpose of an extension lead. The measurement box would be more appropriate to consider from both an accuracy and safety point of view. The advantage of using this measurement box is the availability of the ten-turn loop in case the sensor clamp for better accuracy.

Neural Network implementation

Our inputs for this research are power consumption of the refrigerator and the indoor temperature of the room the refrigerator is located. Referring to Section 1, it is important to consider the exogenous factors in the calculation of the Greenness factor besides human interaction. Therefore, the indoor temperature is one of the exogenous factors being considered in our experiment. Since these inputs are non-linear, we need a nonlinear dynamic network which takes exogenous inputs.

The NARX (Nonlinear autoregressive with external input) model is being implemented in our project that utilizes observations from a past time series to predict the future values of that time series. This network uses tapped delay lines to store the previous values of the input sequences. It is important to note that the output of the NARX network is being fed back to the input of the network through delays. The feedback loop can be open loop for efficient training of the NARX network. Since we define the output of the network, an open-loop architecture is ideal for training. The number of neurons and delays can be set accordingly depending on the training performance of the network.

We are using the default number of neurons for our network i.e. 10 and the number of delays has been set to 30 instead of the default number 2. Figure 14 illustrates how the input data is selected for training. There are total 1440 minutes in a day. By defining a delay of 30, the network selects the first 30 input values for training and predicts the 31st value i.e. the target value.

Dynamic Base Case

Concept of Accumulated Credit

Results and Discussion

Conclusion

References

[1] McNeill, D, Wilkie, W, Public Policy and Consumer Information: Impact of the New Energy Labels, Journal of Consumer Research, vol. 6, 1979

[2] Murphy, L, The influence of energy audits on the energy efficiency investments of private owner-occupied households in the Netherlands, ScienceDirect, 2014

[3] Source: Pecan Street Inc. Dataport, 2019

[4] Kussel, G, Frondel, M, Switching on electricity demand response: Evidence for German households, EconPapers, 2016