Table of Contents

Class TableReader

Namespace
EpNet.Results
Assembly
EpNet.dll

Reads a EnergyPlus output result table (csv, comma or tab separated).

public class TableReader
Inheritance
TableReader
Extension Methods

Constructors

TableReader(string, char)

Creates a Table Reader.

public TableReader(string filePath, char separator = ',')

Parameters

filePath string

E+ output file path.

separator char

Field delimiter.

Properties

this[string]

Gets a table by its title.

public ResultTable this[string title] { get; }

Parameters

title string

Table title.

Property Value

ResultTable

Result table.

Methods

GetTable(string, string)

Gets a table by its title.

public ResultTable GetTable(string title, string report = "")

Parameters

title string

Table title.

report string

Report name (optional, useful when same table title is in different reports).

Returns

ResultTable

Result table.