Table of Contents

Class EioReader

Namespace
EpNet.Results
Assembly
EpNet.dll

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 string

Absolute 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 string

Starts reading when finds this as ! <title>.

subtitle string

Extract data only from lines beginning with subtitle. Optional.

stopTitle string

Continue reading until stopTitle is found. If not set, stops when a new ! < is found.

Returns

ResultTable

Result table with collected data.