JasonGlazer / createRulesetProjectDescription

Create RMD file based on open229 schema from EnergyPlus output and input files
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

createRulesetModelDescription

Test/Package Status Build Package and Run Tests

An EnergyPlus utility that creates a Ruleset Model Description (RMD) file based on output (and some input) from a simulation.

Background

The RMD file is based on a schema being developed as part of the writing of ASHRAE Standard 229P:

Title:

Purpose:

Scope:

The development of the RMD schema to support the standard is going on here:

https://github.com/open229/ruleset-model-description-schema

Overview

The utility is intended to be used at a command line prompt:

  energyplus_create_rmd in.epJSON

where in.epJSON is the name of the EnergyPlus input file with the file path, in the epJSON format.

EnergyPlus version 23.2.0 or newer is required to use the utility.

epJSON Format

To create an epJSON file from an EnergyPlus IDF file, use ConvertInputFormat.exe that comes with EnergyPlus.

To convert files, at the command prompt type:

 ConvertInputFormat in.idf

Where in.idf is the name of the EnergyPlus input file with the file path, in the IDF format. The utility will convert the file into a file with the same name but with the extension .epJSON in the JSON format.

For additional help with ConvertInputFormat at the command prompt in the directory with the EnergyPlus application, type:

 ConvertInputFormat --help

Required Input File Changes

The EnergyPlus input file has some added requirements to be used with the createRulesetModelDescription utility.

  Output:Table:SummaryReports,
    AllSummaryMonthly;    !- Report 1 Name

Additional warning messages may appear when including the monthly predefined reports.

  Output:JSON,
    TimeSeriesAndTabular,    !- Option Type
    Yes,                     !- Output JSON
    No,                      !- Output CBOR
    No;                      !- Output MessagePack

This will create filename_out.json files when EnergyPlus is run at the command line.

Note: This utility was designed to work with files produced using EnergyPlus at the command line. Some file renaming might be necessary if using EP-Launch. If using EP-Launch, the eplusout.json and eplusout_hourly.json files may be found in the EPTEMP directory without the specific file name.

   OutputControl:Table:Style,
    HTML,            !- Column Separator
    None;            !- Unit Conversion
   Output:Variable,
    *,
    schedule value,
    hourly;

This will create filenameout_hourly.json files when EnergyPlus is run at the command line. If using EP-Launch, this files may be found in the EPTEMP directory without the specific file name.

  Output:Schedules,
    Hourly;

This produces a summary report in the EIO file and the Initialization Summary related to schedules. While it is not currently used by the script it probably will be used in the future.

  Space,
    core_space,              !- Name
    Core_ZN,                 !- Zone Name
    autocalculate,           !- Ceiling Height
    autocalculate,           !- Volume
    autocalculate,           !- Floor Area {m2}
    OFFICE_OPEN_PLAN,        !- Space Type
    OFFICE_BUILDINGS_OFFICE_SPACE, !- Tag 1
    OFFICE;                  !- Tag 2

The fields should be completed as described below:

These enumerated lists are found here:

https://github.com/open229/ruleset-model-description-schema/blob/master/docs229/Enumerations2019ASHRAE901.schema.md

If you have not been using the Space input object before, set the numeric inputs to 'autocalculate'.

It is usually easier to make these changes prior to converting the file into the epJSON format.

Weather File

When selecting the EPW weather file, make sure the STAT file is present in the same directory. This file is needed to fully populate the Climatic Data Summary tabular report, which is used to identify the ASHRAE climate zone.

Output

The resulting Ruleset Model Description file will be created in the same directory as the epJSON file with the same name and the file extension .rmd

The Ruleset Model Description file is not complete but can be used to test many aspects of the building model transformation due to the ruleset. The data groups that are partially populated include:

Please note that all data groups listed above still have some data elements that are not implemented and, in many cases, many data elements that are not implemented. The ones that were implemented often because they were easy to implement and not necessarily based on the need for the data element.

Data groups that have not started to be implemented are:

The energyplus_implementatio_report.txt provides additional details.