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

Workflow for energyplus example file

asked 2015-11-17 17:54:59 -0500

kbk78's avatar

updated 2015-11-17 19:00:06 -0500

I have a idf file created with designbuilder and want to implement a four pipe beam which was newly incorporated in energyplus version 8.4. No graphical user interface appears to have adopted version 8.4 yet.

I created a Induction unit in design builder and exported the idf file hoping to change the system to a FourPipeBeam based on the example file. I chose a induction unit model as it seemed closest to the FourPipeBeam and gives me all the nodes and connections. But the process seems too tedious and there are a lot of errors.

Just wondering how do you usually use a energy plus example idf file of a system and incorporate it into your model of the building.

edit retag flag offensive close merge delete

Comments

How many replacements of terminal units are we talking about here? It'd do it manually (leveraging search and replace in my text editor as much as possible) if it's a handful. It you have say 50 of them, I'd probably script it (using Python and Eppy)

Julien Marrec's avatar Julien Marrec  ( 2015-11-18 02:30:11 -0500 )edit

Not sure if the task is as easy as doing a search and replace. Looks like FourPipeBeam needs additional components such as a return plenum. Which we do not get with the designbuilder induction unit model. It seems tedious to reconnect all the nodes and add components.

kbk78's avatar kbk78  ( 2015-11-18 08:48:53 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
4

answered 2015-11-23 22:33:54 -0500

updated 2015-11-24 05:31:53 -0500

Find an example file that is specific to the object in question. In this example, FourPipeBeamLargeOffice.idf. Then search for the object. The notable connections in this object are the air and water node names.

Note that there are 2 air nodes, and 2 sets of water nodes. There are no coils in this object, they are inferred.

  AirTerminal:SingleDuct:ConstantVolume:FourPipeBeam,
    Core_bottom 4pipe Beam, !- Name
    HVACOperationSchd , !- Primary Air Availability Schedule Name
    HVACOperationSchd , !- Cooling Availability Schedule Name
    HVACOperationSchd , !- Heating Availability Schedule Name
    Core_bottom 4pipe Beam Inlet Node Name , !- Primary Air Inlet Node Name
    Core_bottom 4pipe Beam Outlet Node Name , !- Primary Air Outlet Node Name
    Core_bottom 4pipe Beam CW Inlet Node , !- Chilled Water Inlet Node Name
    Core_bottom 4pipe Beam CW Outlet Node , !- Chilled Water Outlet Node Name
    Core_bottom 4pipe Beam HW Inlet Node , !- Hot Water Inlet Node Name
    Core_bottom 4pipe Beam HW Outlet Node, !- Hot Water Outlet Node Name
    AUTOSIZE , !- Design Primary Air Volume Flow Rate
    AUTOSIZE , !- Design Chilled Water Volume Flow Rate
    AUTOSIZE , !- Design Hot Water Volume Flow Rate
    AUTOSIZE , !- Zone Total Beam Length
    0.036 , !- Rated Primary Air Flow Rate per Meter
    597 , !- Rated Beam Cooling Capacity per Meter
    10.0 , !- Rated Cooling Room Air Chilled Water Temperature Difference
    5.2E-5 , !- Rated Chilled Water Volume Flow Rate per Meter
    CapModFuncOfTempDiff, !- Beam Cooling Capacity Temperature Difference Modification Factor Curve or Table Name
    CoolCapModFuncOfSAFlow, !- Beam Cooling Capacity Air Flow Modification Factor Curve or Table Name
    CapModFuncOfWaterFlow, !- Beam Cooling Capacity Chilled Water Flow Modification Factor Curve or Table Name
    1548 , !- Rated Beam Heating Capacity per Meter
    27.8, !- Rated Heating Room Air Hot Water Temperature Difference
    5.2E-5, !- Rated Hot Water Volume Flow Rate per Meter
    CapModFuncOfTempDiff, !- Beam Heating Capacity Temperature Difference Modification Factor Curve or Table Name
    HeatCapModFuncOfSAFlow, !- Beam Heating Capacity Air Flow Modification Factor Curve or Table Name
    CapModFuncOfWaterFlow; !- Beam Heating Capacity Hot Water Flow Modification Factor Curve or Table Name

Now look at the induction unit example file. 5ZoneFPIU.idf.

This objects has 3 air nodes, 2 sets of water nodes, and a mixer object.

  AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction,
    SPACE1-1 FPIU,           !- Name
    ReheatCoilAvailSched,    !- Availability Schedule Name
    autosize,                !- Maximum Total Air Flow Rate {m3/s}
    1.0,                     !- Induction Ratio
    SPACE1-1 ATU Supply Node,!- Supply Air Inlet Node Name
    SPACE1-1 ATU Induc Node, !- Induced Air Inlet Node Name
    SPACE1-1 In Node,        !- Air Outlet Node Name
    SPACE1-1 HW Coil Water In Node,  !- Hot Water Inlet Node Name
    SPACE1-1 CW Coil Water In Node,  !- Cold Water Inlet Node Name
    Coil:Heating:Water,      !- Heating Coil Object Type
    SPACE1-1 HW Coil,        !- Heating Coil Name
    autosize,                !- Maximum Hot Water Flow Rate {m3/s}
    0.0,                     !- Minimum Hot Water Flow Rate {m3/s}
    0.002,                   !- Heating Convergence Tolerance
    Coil:Cooling:Water,      !- Cooling Coil Object Type
    SPACE1-1 CW Coil,        !- Cooling Coil Name
    autosize,                !- Maximum Cold Water Flow Rate {m3/s}
    0.0,                     !- Minimum Cold Water Flow Rate {m3/s}
    0.002,                   !- Cooling Convergence Tolerance
    SPACE1-1 ATU Mixer;      !- Zone Mixer Name

Here's how I would make this change.

Using a text editor:

1) find the coils and mixer ... (more)

edit flag offensive delete link more

Comments

1

Finally dared to try this. It works with a file exported from DesignBuilder. Actually created a script using Regex to do this automatically(can share script if interested). There was not much difference in the results between a induction unit and FourPipeBeam though. Thanks!

kbk78's avatar kbk78  ( 2016-03-28 14:20:30 -0500 )edit

The converted file is a proper idf when you change the extension. I would be very interested in the Regex. Thank you.

Chris Jones's avatar Chris Jones  ( 2016-03-31 06:47:31 -0500 )edit

The regex works with an idf file exported from a Design Builder 8.4 model that includes a induction system. It relies on specific way design builder names objects and formats the file. Is this what you are looking to do.

kbk78's avatar kbk78  ( 2016-04-01 10:50:24 -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-11-17 17:54:59 -0500

Seen: 512 times

Last updated: Nov 24 '15