David Blum

Results 75 comments of David Blum

Common staging branch at: https://github.com/lbl-srg/modelica-buildings/tree/issue3284_districtCHP.

Closed by https://github.com/lbl-srg/MPCPy/pull/145.

This issue also needs to address start, final, and cyclic constraints.

Thanks for reporting this issue. Please, so I can understand the issue better, can you tell me the OS and version you are using?

As proposed in https://github.com/lbl-srg/MPCPy/pull/142, ``plt.switch_backend('agg')`` can be used to keep any plotting in the background and not interactive, which will work in Docker. However, this is not a solution to...

A solution to this is to change the backend of matplotlib in the script running inside of a docker before importing MPCPy classes. For example: ``` import matplotlib matplotlib.use('Agg') from...

I think this is a good fix in general, except for the case where the user wants data for the end of the year. In this case, the data stops...

It would only disrupt the daily cycle for MPC if data is needed for days after the epw file ends. This issue does not happen with real data from CSV...

@TStesco I think the implementation should append data from the beginning of the year to the end of the year if the final_time crosses into the new year relative to...