1

HVAC operation of PNNL models

Hello All,

I have a question regarding the operation of HVAC systems in the PNNL models. In these models, the HVAC system works based on the predefined schedule:

image description

Although there is a dual setpoint definition in the model, the HVAC system only works at specific times. How can I change it to only work to keep the temperature between certain range? When I make these lines command or remove them, I got an error.

Thank you in advance

Mostafa Meimand's avatar
217
Mostafa Meimand
asked 2020-11-29 10:09:16 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2020-12-22 10:24:52 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

3 Answers

2

The answer to this question is the HVACOperationSchd variable is not the operation schedule, it is the availability of the HVAC system.

Mostafa Meimand's avatar
217
Mostafa Meimand
answered 2020-12-22 09:32:07 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
1

You need to modify the schedule for HVAC Operation (HVACOperationSchd) as well as the heating and cooling setpoint temperature schedules. Did you modify the setpoint temperature schedules into a certain range?

In PNNL Prototype building models, there may be multiple schedules for heating and cooling temperature setpoint. Some of them may not be used. So you need to modify the schedules that are used.

Yunyang Ye's avatar
816
Yunyang Ye
answered 2020-12-30 12:03:09 -0500
edit flag offensive 0 remove flag delete link

Comments

Yes, I found the solution and it is solved now. Thanks, Yunyang!

Mostafa Meimand's avatar Mostafa Meimand (2020-12-30 14:25:19 -0500) edit
add a comment see more comments
0

Obviously, this schedule is referenced by some objects in your HVAC systems. If you are working with a text editor try to search the schedule name and find objects that use this schedule. You cannot just remove or comment this schedule! If you want your HVAC systems to work all the time based on your ThermostatSetpoint:DualSetpoint change this schedule for all day types:

Schedule:Compact,
    HVACOperationSchd,   !- Name
    on/off,                !- Schedule Type Limits Name
    Through: 12/31,           !- Field 1
    For: Weekdays SummerDesignDay,            !- Field 2
    Until: 24:00, 1,       !- Field 4
    ...

But that's not very common. You can consider AvailabilityManager:NightCycle to turn on HVAC systems during unoccupied hours.

Mehrdad Vojdani's avatar
1.1k
Mehrdad Vojdani
answered 2020-11-29 17:10:31 -0500, updated 2020-11-29 17:14:36 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks for your comment Mehrdad. When I change it to what you said, The HVAC system is always ON. However, I want this system to work based on the setpoints.

Also, when the HVAC system is ON, Zone Mean Air Temperature does not change significantly. I do not know why!

Mostafa Meimand's avatar Mostafa Meimand (2020-11-29 18:27:11 -0500) edit
add a comment see more comments