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

openstudioapplication controller:watercoil errors

asked 2022-04-06 12:39:40 -0500

Abee's avatar

updated 2022-05-17 14:37:46 -0500

I have got these errors after run an air cooled chiller simulation. Please help me figure them out. How can I fix these errors. Thank you.

Program Version,EnergyPlus, Version 9.6.0-4b123cf80f, YMD=2022.04.07 00:27,
** Severe  ** Line: 24044 Index: 0 - Object contains more field values than maximum number of IDD fields and is not extensible.
** Severe  ** Line: 24044 Index: 0 - Error parsing "AirLoopHVAC:ControllerList". Error in following line.
** Severe  ** ~~~   Controller:WaterCoil,                   !- Controller Object Type 9
** Severe  ** Line: 24054 Index: 0 - Object contains more field values than maximum number of IDD fields and is not extensible.
** Severe  ** Line: 24054 Index: 0 - Error parsing "Controller:WaterCoil". Error in following line.
** Severe  ** ~~~   Controller:WaterCoil,                   !- Controller Object Type 14
** Severe  ** Duplicate name found for object of type "Controller:WaterCoil" named "Controller Water Coil 21". Overwriting existing object.
**  Fatal  ** Errors occurred on processing input file. Preceding condition(s) cause termination.
...Summary of Errors that led to program termination:
..... Reference severe error count=7
..... Last severe error=Duplicate name found for object of type "Controller:WaterCoil" named "Controller Water Coil 21". Overwriting existing object.
************* Warning:  Node connection errors not checked - most system input has not been read (see previous warning).
************* Fatal error -- final processing.  Program exited before simulations began.  See previous error messages.
************* EnergyPlus Warmup Error Summary. During Warmup: 0 Warning; 0 Severe Errors.
************* EnergyPlus Sizing Error Summary. During Sizing: 0 Warning; 0 Severe Errors.
************* EnergyPlus Terminated--Fatal Error Detected. 0 Warning; 7 Severe Errors; Elapsed Time=00hr 00min  0.15sec

Thanks

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-04-07 09:21:15 -0500

updated 2022-04-07 09:22:09 -0500

If you look at the Energy+.idd you will find the AirLoopHVAC:ControllerList object. And also find this object in your input file. This object is a list of controllers used in your simulation and consists of a list of controller TYPE and NAME pairs. For an air loop (AirloopHVAC object) you can have water coil controllers and an outdoor air system controller. There would typically be an outdoor air system (that's 1 controller) and up to 7 more water coils. You should not need more than 7 water coils in an air loop. For that reason, EnergyPlus has limited the number of controllers to 8 per air loop. Your error message seems to indicate that more than 8 controllers are listed in this object. Since this object is not "extensible" (meaning you could expand this list in the IDD and include more than 8 controllers) you can only use up to 8 controllers. Look at your input file and determine why there are more than 8 controllers in this list.

AirLoopHVAC:ControllerList,
       \memo List controllers in order of control sequence
  A1 , \field Name
       \required-field
       \type alpha
       \reference ControllerLists
  A2 , \field Controller 1 Object Type
       \required-field
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
 A3 , \field Controller 1 Name
       \required-field
       \type object-list
       \object-list AirLoopControllers
  A4 , \field  Controller 2 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A5 , \field Controller 2 Name
       \type object-list
       \object-list AirLoopControllers
  A6 , \field  Controller 3 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A7 , \field Controller 3 Name
       \type object-list
       \object-list AirLoopControllers
  A8 , \field  Controller 4 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A9 , \field Controller 4 Name
       \type object-list
       \object-list AirLoopControllers
  A10, \field  Controller 5 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A11, \field Controller 5 Name
       \type object-list
       \object-list AirLoopControllers
  A12, \field  Controller 6 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A13, \field Controller 6 Name
       \type object-list
       \object-list AirLoopControllers
  A14, \field  Controller 7 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A15, \field Controller 7 Name
       \type object-list
       \object-list AirLoopControllers
  A16, \field  Controller 8 Object Type
       \type choice
       \key Controller:WaterCoil
       \key Controller:OutdoorAir
  A17; \field Controller 8 Name
       \type object-list
       \object-list AirLoopControllers
edit flag offensive delete link more

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: 2022-04-06 12:39:40 -0500

Seen: 137 times

Last updated: Apr 07 '22