Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Daily Model Overpredictions - eemeter version 4.0 #487

Open
khosravym opened this issue Mar 14, 2024 · 5 comments
Open

Daily Model Overpredictions - eemeter version 4.0 #487

khosravym opened this issue Mar 14, 2024 · 5 comments

Comments

@khosravym
Copy link
Contributor

In this specific zone, the heating system has reached its maximum capacity, resulting in a plateau in energy usage. However, the regression used for prediction has not been split appropriately. It’s important to note that this issue is not about the heating balance point; rather, it pertains to properly handling the regression when HVAC is operating at its maximum capacity.

image


@travis-recurve
Copy link
Contributor

From what I can see this is entirely expected. It's a linear model out here. There is no functionality to decrease the slope. As far as splitting goes, it's done based on season and weekday/weekend. There appears to be no weekday/weekend separation and it has already split on each season.

@khosravym
Copy link
Contributor Author

As suggested, when the current equipment hits its peak capacity, there’s no further rise in energy usage observed. Therefore, the possibility of a plateau at the end or at extreme temperatures is quite plausible. A potential solution might resemble the TOWT approach, where a bin is used to divide the regressor.

@travis-recurve
Copy link
Contributor

travis-recurve commented Mar 19, 2024

When we were working on the daily model my idea was to have a segmented heating/cooling model. For example in a heating region a breakpoint would be allowed to exist within the current heating linear model, breaking it into 2 lines but the slopes would still be required to be ≤ 0. This could also be smoothed, but this is a nontrivial problem. I was looking at using a circle or ellipse to create the arc to do the smoothing because we cannot use the existing exponential as that converges to the prior slope at infinity as opposed to the set breakpoints.

Overall the idea would look something like the image here.

Picture1

This would be an improvement, but would also require time to ensure that it was fast, accurate, and bugfree.

Proper penalization would also need to be done to ensure that the model is not creating a breakpoint when it is unnecessary to do so. We do not want to get right back where we are with the TOWT model where it is overfit.

@khosravym
Copy link
Contributor Author

Could we divide the summer or winter into two categories according to the Outside Air Temperature (OAT)? This would mean that instead of classifying by month only, we introduce an additional classification to distinguish between normal and extreme OAT for each month. The shoulder months remain unchanged.

@travis-recurve
Copy link
Contributor

It's possible. I don't think this is nearly as clean of a solution. How do you decide a priori how to further segment the season? Different buildings are going to behave differently. This could require a modeling step that might be thrown away?

Another issue is that each thing you add like this makes the fitting time factorially worse. Originally we had to test for every possible combination of split. We simplify this by checking if clusters of points overlap. This would require that we either go back to fitting all possible splits, but worse, or that we ensure this split reduction method continues to work.

Overall, I am still convinced that the method I explained above is the best because it retains the ability of disaggregating heating and cooling loads. If you keep splitting and splitting then you have to justify those splits and it will eventually impede the ability for the model to give information about heating/cooling load disaggregation.

If you want to try to tackle any of this, feel free. I am personally unable to dedicate significant time to further development of the daily model. If you did want to do this we can further discuss the requirements of any daily model.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants