Class EioReader
Retrieves tables of result data from EnergyPlus output eio files.
public class EioReader
- Inheritance
-
EioReader
- Extension Methods
Constructors
EioReader(string)
Creates an instance of EioReader.
public EioReader(string filePath)
Parameters
filePath
stringAbsolute path to the eio results file
Methods
GetTable(string, string, string)
Gets a result table for a specified title and or subtitle.
public ResultTable GetTable(string title, string subtitle = null, string stopTitle = "")
Parameters
title
stringStarts reading when finds this as ! <title>.
subtitle
stringExtract data only from lines beginning with subtitle. Optional.
stopTitle
stringContinue reading until stopTitle is found. If not set, stops when a new ! < is found.
Returns
- ResultTable
Result table with collected data.