openergy / opyplus

A package to work with EnergyPlus in python
Mozilla Public License 2.0
39 stars 13 forks source link

Parametric simulations example, missing summer day results #54

Open delinchant opened 2 years ago

delinchant commented 2 years ago

Hi, thanks a lot for opyplus package ! I think I found one issue in the notebook example : https://opyplus.readthedocs.io/en/v1.3.0/examples/parametric_simulations.html There are two sizing days in the idf file : winter and summer but only winter is taken into account when calling eso.get_data() (only last simulation environment), summer day is missing. Then cooling is not impacting you may have to replace : hourly_df = eso.get_data() by sizingDays = [eso.get_data(name) for name in iter(s.get_out_eso().get_environments().keys())] import pandas as pd hourly_df = pd.concat(sizingDays, axis=0, ignore_index=True)

Best regards Benoit

thomascerbelaud commented 2 years ago

Hi @delinchant, Glad the opyplus package is used and appreciated ! :) Sorry for the delayed answer (holidays), hope I can still help.

Regarding your issue :

Hope that helps, and try posting an extract of the .eso file if the problem persists!