Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
3

Using PlantEquipmentOperation:OutDoorDryBulb to control Condenser Equipment

asked 2015-07-23 08:35:07 -0500

kbk78's avatar

updated 2017-05-17 12:34:19 -0500

I have a cooling tower and a fluid cooler in a EnergyPlus model. We are trying to control the operation based on outside temperature. If the Temperature is less than 40F the fluid cooler operates. If the temperature is greater than 40F the cooling tower operates. The following are the objects setup in the model:

CondenserEquipmentList,
    FluidCooler Equipment List,
    FluidCooler:SingleSpeed,
    FluidCooler;

CondenserEquipmentList,
    CoolingTower Equipment List,
    CoolingTower:SingleSpeed,
    CoolingTower;

PlantEquipmentOperation:OutdoorDryBulb,
    Condenser_Loop Scheme 1,
    -32,4.5,FluidCooler Equipment List,
     4.5,50,CoolingTower Equipment List;

CondenserEquipmentOperationSchemes,
    Condenser_Loop Operation,
    PlantEquipmentOperation:OutDoorDryBulb,
    Condenser_Loop Scheme 1,
    On;

The condenser Loop operation is further referenced by the CondenserLoop Object.

However, Hourly outputs indicate both units operating at all times during the year. Is this setup not adequate for this type of control?

C:\fakepath\CondDB.idf.gif

Scheduled Condenser operation File:C:\fakepath\CondDB_Sch.idf.gif

edit retag flag offensive close merge delete

Comments

Should be sufficient, some additional info could help resolve the problem.

What's your pumping scheme? What is the pump size compared to the design flows of the two units? Do you have a supply side bypass on the condenser loop?

Edwin's avatar Edwin  ( 2015-07-23 10:01:26 -0500 )edit

Thanks for your Response, There is a variable speed Pump on the Supply Side That is autosized. Also there is a Bypass on the supply side. What is Even more surprising is that I set the CondenserEquipmentOperationScheme Schedule to Off and the Condenser equipment still runs. These controls seem to have no impact on the condenser Loop operation.

kbk78's avatar kbk78  ( 2015-07-23 10:44:45 -0500 )edit

Which version of E+ are you using?

Edwin's avatar Edwin  ( 2015-07-23 11:02:54 -0500 )edit

Was using 8.1. Just updated this to version 8.3 and having the same problems. I have attached the file above if you could look at it (Rename .gif to .idf) . It uses LoadProfile to simulate the plant load.

kbk78's avatar kbk78  ( 2015-07-23 11:36:45 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2015-07-23 18:15:19 -0500

updated 2015-07-25 00:38:37 -0500

@kbk78,

So, I did some digging today with your example file. Unfortunately it has revealed some issues with that operation scheme that are going to require a workaround if you need to use this before the next release of E+.

I have opened an issue on our GitHub site here that details what I have seen so far today. If you have a GitHub account, please feel free to engage in the conversation on that issue. This is a high priority to me, so I anticipate having the issues fixed up soon, but the fix won't be available in a major release until our September 30 release.

In the meantime, if you need an immediate workaround, you could simply pull the outdoor dry bulb from the weather file for every hour, and then create an hourly 0/1 schedule for when the temperature is above or equal to the switch temperature, then one for when it is below. These schedules could be used in the CondenserEquipmentOperationSchemes object to schedule two separate PlantEquipmentOperation: instances. Of which neither should be the OutdoorDryBulb. I would imagine something like:

  CondenserEquipmentOperationSchemes,
    Condenser_Loop Operation,            !- Name
    PlantEquipmentOperation:CoolingLoad, !- Control Scheme 1 Object Type
    AboveScheme,                         !- Control Scheme 1 Name
    AboveSchedule,                       !- Control Scheme 1 Schedule Name
    PlantEquipmentOperation:CoolingLoad, !- Control Scheme 2 Object Type
    BelowScheme,                         !- Control Scheme 2 Name
    BelowSchedule;                       !- Control Scheme 2 Schedule Name

where the AboveSchedule/BelowSchedule are the values you created above outside of E+. (You could use Schedule:File for convenience there). Then the operation schemes would look like:

  PlantEquipmentOperation:CoolingLoad,
    AboveScheme,                 !- Name
    0,                           !- Load Range 1 Lower Limit {W}
    100000000,                   !- Load Range 1 Upper Limit {W}
    CoolingTower Equipment List; !- Range 1 Equipment List Name

  PlantEquipmentOperation:CoolingLoad,
    BelowScheme,                 !- Name
    0,                           !- Load Range 1 Lower Limit {W}
    100000000,                   !- Load Range 1 Upper Limit {W}
    FluidCooler Equipment List;  !- Range 1 Equipment List Name

Thanks for helping identifying this.

So, after the comment by @kbk78, it is clear that there is a set of issues that need to be addressed, and this isn't the location for the conversation to figure it all out (and it will be a lengthy process to work through them all). I would recommend that we close this conversation and continue to work out all the issues together on the GitHub issue page if you already have or are willing to register on GitHub. If you are satisfied with that, please take this as the final answer for the UnmetHours conversation, and we'll work to address this over on the other side.

edit flag offensive delete link more

Comments

There appears to be a problem with the CondesnserEquipmentOperationSchemes schedule too. I setup a schedule to turn the cooling tower off during the winter and the fluid cooler off during the summer. This does not work as anticipated. The cooling tower keeps running all year. I have attached this file too to the original message.

kbk78's avatar kbk78  ( 2015-07-23 21:49:33 -0500 )edit

@kbk78 I think we should leave UnmetHours at this point and move to work together directly on the GitHub issue tracker. I added this info to the above answer so that if you agree, it can be accepted, and this can be closed and we'll work it out over there. If not, let me know.

Edwin's avatar Edwin  ( 2015-07-25 00:40:07 -0500 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2015-07-23 08:35:07 -0500

Seen: 280 times

Last updated: Jul 25 '15