Closed jimenofonseca closed 8 years ago
There could be a connection to issue #16, @gabriel-happle is working on it. is there anything i can help too?
Heating and cooling setpoint temperatures
HOW TO DEFINE THIS IN PYTHON? Using a conditional statement as in the example above. Results can be presented in a) total yearly demand hours, and b) in hours of occupancy (to show that optimizing the usage of heating during unoccupied hours can save a lot of energy).
HOW TO DEFINE THIS IN CEA? I'd like to discuss this with you here.
References http://www.designbuilder.co.uk/helpv1/Content/_Environmental_comfort.htm http://www.designbuilder.co.uk/helpv2/Content/Defining_setpoint_temperature_schedules.htm http://www.designbuilder.co.uk/helpv1/Content/Calculation_Options.htm http://www.albany.edu/facilities/documents/TempSetPointPolicy.pdf
Probably we would like to take a look to PID controller or any other controller instead as #118 suggested
Other than that, how is the setback temperature going to be defined? in based to which norm? We are currently basing all in ISO/EN standards.
Do you mean point 2. or 3. could be as inaccurate as 1?
Hi Amr
In my code I take point (2) but also integrate a PID controller so its not ON/OFF heating, and also take occupancy into account. In Sudo-Python code the heating control would look like this
if occupancy>0 and T_in<T_set:
Q_heating=PID_control(T_Set-T_in)
else:
Q_heating=0
any advance?
Yeah, I thought we were supposed to discuss about what was in my last comments. Did you have time to check it out? Check the word document or what's written in the comment before.
Nice info. We can then proceed to implement the the options and run comparisons.
Sent on the road
On 18.05.2016, at 17:52, Amr Elesawy notifications@github.com wrote:
Yeah, I thought we were supposed to discuss about what was in my last comments. Did you have time to check it out? Check the word document or what's written in the comment before.
— You are receiving this because you were assigned. Reply to this email directly or view it on GitHub
Perfect!!! Then I'll check with @daren-thomas and start implementing ASAP!
This change was implemented in the version CEA 0.3C
Fixing the start of the heating schedule in order to avoid high peak loads, so start an hour before the people arrive. It consist in a control strategy