Show / Hide Table of Contents

Class Configuration

EnergyPlus configuration options.

Inheritance
System.Object
Configuration
Namespace: EplusLauncher
Assembly: cs.temp.dll.dll
Syntax
public class Configuration

Constructors

Configuration()

Creates a new configuration object.

Declaration
public Configuration()

Properties

EnergyPlusFolder

Path to EnergyPlus folder, where executable resides.

Declaration
public string EnergyPlusFolder { get; set; }
Property Value
Type Description
System.String

EnergyPlus folder path.

IdfFileName

Name and extension of the output idf file being simulated (e.g. in.idf)

Declaration
public string IdfFileName { get; set; }
Property Value
Type Description
System.String

Simulated idf file name.

InputFile

Path to the base input idf file.

Declaration
public string InputFile { get; set; }
Property Value
Type Description
System.String

Input base idf file path.

MviFile

(Optional) Path to the mvi file used to retrieve variable results in csv format.

Declaration
public string MviFile { get; set; }
Property Value
Type Description
System.String

Mvi file path.

OutputFolder

Path to the folder where simulation outputs will be generated.

Declaration
public string OutputFolder { get; set; }
Property Value
Type Description
System.String

Output folder.

RunReadVarsESO

Runs ReadVarsESO after simulation. True as default.

Declaration
public bool RunReadVarsESO { get; set; }
Property Value
Type Description
System.Boolean

True to run ReadVarsESO. False otherwise.

RviFile

(Optional) Path to the rvi file used to retrieve meter results in csv format.

Declaration
public string RviFile { get; set; }
Property Value
Type Description
System.String

Rvi file path.

WeatherFile

Path to the epw weather file for the EnergyPlus simulation.

Declaration
public string WeatherFile { get; set; }
Property Value
Type Description
System.String

Weather file path.

Methods

Clone()

Clones an existing configuration object.

Declaration
public Configuration Clone()
Returns
Type Description
Configuration

Cloned configuration.

Back to top Generated by DocFX