from ctypes import cdll, c_int, c_char_p, c_void_p
from pyenergyplus.common import RealEP, EnergyPlusException
from typing import Union
[docs]class DataExchange:
"""
This API class enables data transfer between EnergyPlus and a client. Output variables and meters are treated as
"sensor" data. A client should get a handle (integer) using one of the worker methods then make calls to get data
using that handle. Some specific variables in EnergyPlus are controllable as actuators. These work the same way,
in that a client should get an integer handle to an actuator and then use the workers to set the value on the
actuator. There are also some static data members in EnergyPlus that are exposed as "internal" variables. These
variables hold static data such as zone floor area and volume, so they do not change during a simulation, but are
constant once they are assigned. Even with this difference, the variables are still handled the same way, by
getting an integer handle and then accessing the data using that handle.
This data transfer class is used in one of two workflows:
- When a outside tool is already running EnergyPlus using the Runtime API, and data transfer is to be made during
callback functions. In this case, the script should create a DataTransfer API class by calling the `data_transfer`
method on the main API class, never trying to create this class directly.
- When a Python script is used in the EnergyPlus Python Plugin System, and the user runs the EnergyPlus binary. In
this case, the plugin may need access to state data to make control decisions, and this class enables that. The
plugin base class automatically creates an instance of this class, so client plugins that inherit that class will
have a `self.transfer` instance of this class available, and should *not* attempt to create another one.
In the Python Plugin case, the client Python code may make use of the methods to get/set plugin global variables,
but only in the Python Plugin cases. For the outside tool API usage, plugin global variables are not available, and
data should be shared in the outside calling code.
"""
def __init__(self, api: cdll, running_as_python_plugin: bool = False):
self.api = api
self.running_as_python_plugin = running_as_python_plugin
self.api.listAllAPIDataCSV.argtypes = []
self.api.listAllAPIDataCSV.restype = c_char_p
self.api.apiDataFullyReady.argtypes = []
self.api.apiDataFullyReady.restype = c_int
self.api.apiErrorFlag.argtypes = []
self.api.apiErrorFlag.restype = c_int
self.api.resetErrorFlag.argtypes = []
self.api.resetErrorFlag.restype = c_void_p
self.api.requestVariable.argtypes = [c_char_p, c_char_p]
self.api.requestVariable.restype = c_void_p
self.api.getVariableHandle.argtypes = [c_char_p, c_char_p]
self.api.getVariableHandle.restype = c_int
self.api.getMeterHandle.argtypes = [c_char_p]
self.api.getMeterHandle.restype = c_int
self.api.getActuatorHandle.argtypes = [c_char_p, c_char_p, c_char_p]
self.api.getActuatorHandle.restype = c_int
self.api.getVariableValue.argtypes = [c_int]
self.api.getVariableValue.restype = RealEP
self.api.getMeterValue.argtypes = [c_int]
self.api.getMeterValue.restype = RealEP
self.api.setActuatorValue.argtypes = [c_int, RealEP]
self.api.setActuatorValue.restype = c_void_p
self.api.resetActuator.argtypes = [c_int]
self.api.resetActuator.restype = c_void_p
self.api.getActuatorValue.argtypes = [c_int]
self.api.getActuatorValue.restype = RealEP
self.api.getInternalVariableHandle.argtypes = [c_char_p, c_char_p]
self.api.getInternalVariableHandle.restype = c_int
self.api.getInternalVariableValue.argtypes = [c_int]
self.api.getInternalVariableValue.restype = RealEP
# some simulation data values are available for plugins or regular runtime calls
self.api.year.argtypes = []
self.api.year.restype = c_int
self.api.month.argtypes = []
self.api.month.restype = c_int
self.api.dayOfMonth.argtypes = []
self.api.dayOfMonth.restype = c_int
self.api.dayOfWeek.argtypes = []
self.api.dayOfWeek.restype = c_int
self.api.dayOfYear.argtypes = []
self.api.dayOfYear.restype = c_int
self.api.daylightSavingsTimeIndicator.argtypes = []
self.api.daylightSavingsTimeIndicator.restype = c_int
self.api.hour.argtypes = []
self.api.hour.restype = c_int
self.api.currentTime.argtypes = []
self.api.currentTime.restype = c_int
self.api.minutes.argtypes = []
self.api.minutes.restype = c_int
self.api.holidayIndex.argtypes = []
self.api.holidayIndex.restype = c_int
self.api.sunIsUp.argtypes = []
self.api.sunIsUp.restype = c_int
self.api.isRaining.argtypes = []
self.api.isRaining.restype = c_int
self.api.zoneTimeStep.argtypes = []
self.api.zoneTimeStep.restype = RealEP
self.api.systemTimeStep.argtypes = []
self.api.systemTimeStep.restype = RealEP
self.api.currentEnvironmentNum.argtypes = []
self.api.currentEnvironmentNum.restype = c_int
self.api.warmupFlag.argtypes = []
self.api.warmupFlag.restype = c_int
self.api.getPluginGlobalVariableHandle.argtypes = [c_char_p]
self.api.getPluginGlobalVariableHandle.restype = c_int
self.api.getPluginGlobalVariableValue.argtypes = [c_int]
self.api.getPluginGlobalVariableValue.restype = RealEP
self.api.setPluginGlobalVariableValue.argtypes = [c_int, RealEP]
self.api.setPluginGlobalVariableValue.restype = c_void_p
self.api.getPluginTrendVariableHandle.argtypes = [c_char_p]
self.api.getPluginTrendVariableHandle.restype = c_int
self.api.getPluginTrendVariableValue.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableValue.restype = RealEP
self.api.getPluginTrendVariableAverage.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableAverage.restype = RealEP
self.api.getPluginTrendVariableMin.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableMin.restype = RealEP
self.api.getPluginTrendVariableMax.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableMax.restype = RealEP
self.api.getPluginTrendVariableSum.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableSum.restype = RealEP
self.api.getPluginTrendVariableDirection.argtypes = [c_int, c_int]
self.api.getPluginTrendVariableDirection.restype = RealEP
self.api.getConstructionHandle.argtypes = [c_char_p]
self.api.getConstructionHandle.restype = c_int
self.api.actualTime.argtypes = []
self.api.actualTime.restype = c_int
self.api.actualDateTime.argtypes = []
self.api.actualDateTime.restype = c_int
[docs] def list_available_api_data_csv(self) -> bytes:
"""
Lists out all API data stuff in an easily parseable CSV form
:return: Returns a raw bytes CSV representation of the available API data
"""
return self.api.listAllAPIDataCSV()
[docs] def api_data_fully_ready(self) -> bool:
"""
Check whether the data exchange API is ready.
Handles to variables, actuators, and other data are not reliably defined prior to this being true.
:return: Returns a boolean value to indicate whether variables, actuators, and other data are ready for access.
"""
success = self.api.apiDataFullyReady()
if success == 0:
return True
return False
[docs] def api_error_flag(self) -> bool:
"""
Check whether the error flag has been activated.
A number of functions will return 0 in erroneous situations, and this function allows for disambiguation
between valid zero return values and the error condition.
:return: Returns true if the error flag was activated during prior calculations.
"""
if self.api.apiErrorFlag() == 1:
return True
return False
[docs] def reset_api_error_flag(self) -> None:
"""
Resets the error flag for API calls.
A number of functions will return 0 in erroneous situations, but activate an error flag. In certain work flows,
it may be useful to reset this error flag (unit testing, etc.). This function allows resetting it to false.
"""
self.api.resetErrorFlag()
[docs] def request_variable(self, variable_name: Union[str, bytes], variable_key: Union[str, bytes]) -> None:
"""
Request output variables so they can be accessed during a simulation.
In EnergyPlus, not all variables are available by default. If they were all available, there would be a
terrible memory impact. Instead, only requested and necessary variables are kept in memory. When running
EnergyPlus as a program, including when using Python Plugins, variables are requested through input objects.
When running EnergyPlus as a library, variables can also be requested through this function call. This
function has the same signature as the get_variable_handle function, which is used to then request the ID
of a variable once the simulation has begun. NOTE: Variables should be requested before *each* run of
EnergyPlus, as the internal array is cleared when clearing the state of each run.
:param variable_name: The name of the variable to retrieve, e.g. "Site Outdoor Air DryBulb Temperature", or
"Fan Air Mass Flow Rate"
:param variable_key: The instance of the variable to retrieve, e.g. "Environment", or "Main System Fan"
:return: Nothing
"""
if isinstance(variable_name, str):
variable_name = variable_name.encode('utf-8')
if isinstance(variable_key, str):
variable_key = variable_key.encode('utf-8')
self.api.requestVariable(variable_name, variable_key)
[docs] def get_variable_handle(self, variable_name: Union[str, bytes], variable_key: Union[str, bytes]) -> int:
"""
Get a handle to an output variable in a running simulation.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param variable_name: The name of the variable to retrieve, e.g. "Site Outdoor Air DryBulb Temperature", or
"Fan Air Mass Flow Rate"
:param variable_key: The instance of the variable to retrieve, e.g. "Environment", or "Main System Fan"
:return: An integer ID for this output variable, or -1 if one could not be found.
"""
if isinstance(variable_name, str):
variable_name = variable_name.encode('utf-8')
if isinstance(variable_key, str):
variable_key = variable_key.encode('utf-8')
return self.api.getVariableHandle(variable_name, variable_key)
[docs] def get_meter_handle(self, meter_name: Union[str, bytes]) -> int:
"""
Get a handle to a meter in a running simulation.
The meter name passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the meter name passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param meter_name: The name of the variable to retrieve, e.g. "Electricity:Facility", or "Fans:Electricity"
:return: An integer ID for this meter, or -1 if one could not be found.
"""
meter_name = meter_name.upper()
if isinstance(meter_name, str):
meter_name = meter_name.encode('utf-8')
return self.api.getMeterHandle(meter_name)
[docs] def get_actuator_handle(
self,
component_type: Union[str, bytes],
control_type: Union[str, bytes],
actuator_key: Union[str, bytes]
) -> int:
"""
Get a handle to an available actuator in a running simulation.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param component_type: The actuator category, e.g. "Weather Data"
:param control_type: The name of the actuator to retrieve, e.g. "Outdoor Dew Point"
:param actuator_key: The instance of the variable to retrieve, e.g. "Environment"
:return: An integer ID for this output variable, or -1 if one could not be found.
"""
if isinstance(component_type, str):
component_type = component_type.encode('utf-8')
if isinstance(control_type, str):
control_type = control_type.encode('utf-8')
if isinstance(actuator_key, str):
actuator_key = actuator_key.encode('utf-8')
return self.api.getActuatorHandle(component_type, control_type, actuator_key)
[docs] def get_variable_value(self, variable_handle: int) -> RealEP:
"""
Get the current value of a variable in a running simulation. The `get_variable_handle` function is first used
to get a handle to the variable by name. Then once the handle is retrieved, it is passed into this function to
then get the value of the variable.
:param variable_handle: An integer returned from the `get_variable_handle` function.
:return: Floating point representation of the current variable value. Returns zero if the handle is invalid.
Use the api_error_flag function to disambiguate between valid zero returns and error states.
"""
return self.api.getVariableValue(variable_handle)
[docs] def get_meter_value(self, meter_handle: int) -> RealEP:
"""
Get the current value of a meter in a running simulation. The `get_meter_handle` function is first used
to get a handle to the meter by name. Then once the handle is retrieved, it is passed into this function to
then get the value of the meter.
Caution: This function currently returns the instantaneous value of a meter, not the cumulative value.
This will change in a future version of the API.
:param meter_handle: An integer returned from the `get_meter_handle` function.
:return: Floating point representation of the current meter value. Returns zero if the handle is invalid.
Use the api_error_flag function to disambiguate between valid zero returns and error states.
"""
return self.api.getMeterValue(meter_handle)
[docs] def set_actuator_value(self, actuator_handle: int, actuator_value: RealEP) -> None:
"""
Sets the value of an actuator in a running simulation. The `get_actuator_handle` function is first used
to get a handle to the actuator by name. Then once the handle is retrieved, it is passed into this function,
along with the value to assign, to then set the value of the actuator. Internally, actuators can alter floating
point, integer, and boolean operational values. The API only exposes this set function with a floating point
argument. For floating point types, the value is assigned directly. For integer types, the value is rounded
to the nearest integer, with the halfway point rounded away from zero (2.5 becomes 3), then cast to a plain
integer. For logical values, the original EMS convention is kept, where a value of 1.0 means TRUE, and a value
of 0.0 means FALSE -- and any other value defaults to FALSE. A small tolerance is applied internally to allow
for small floating point round-off. A value *very close* to 1.0 will still evaluate to TRUE.
:param actuator_handle: An integer returned from the `get_actuator_handle` function.
:param actuator_value: The floating point value to assign to the actuator
:return: Nothing
"""
self.api.setActuatorValue(actuator_handle, actuator_value)
[docs] def reset_actuator(self, actuator_handle: int) -> None:
"""
Resets the actuator internally to EnergyPlus. This allows subsequent calculations to be used for the actuator
instead of the externally set actuator value.
:param actuator_handle: An integer returned from the `get_actuator_handle` function.
:return: Nothing
"""
self.api.resetActuator(actuator_handle)
[docs] def get_actuator_value(self, actuator_handle: int) -> RealEP:
"""
Gets the most recent value of an actuator. In some applications, actuators are altered by multiple scripts, and
this allows getting the most recent value.
:param actuator_handle: An integer returned from the `get_actuator_handle` function.
:return: A floating point of the actuator value. For boolean actuators returns 1.0 for true and 0.0 for false.
Returns zero if the handle is invalid. Use the api_error_flag function to disambiguate between valid
zero returns and error states.
"""
return self.api.getActuatorValue(actuator_handle)
[docs] def get_internal_variable_handle(self, variable_type: Union[str, bytes], variable_key: Union[str, bytes]) -> int:
"""
Get a handle to an internal variable in a running simulation.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param variable_type: The name of the variable to retrieve, e.g. "Zone Air Volume", or "Zone Floor Area"
:param variable_key: The instance of the variable to retrieve, e.g. "Zone 1"
:return: An integer ID for this output variable, or -1 if one could not be found.
"""
if isinstance(variable_type, str):
variable_type = variable_type.encode('utf-8')
if isinstance(variable_key, str):
variable_key = variable_key.encode('utf-8')
return self.api.getInternalVariableHandle(variable_type, variable_key)
[docs] def get_internal_variable_value(self, variable_handle: int) -> RealEP:
"""
Get the value of an internal variable in a running simulation. The `get_internal_variable_handle` function is
first used to get a handle to the variable by name. Then once the handle is retrieved, it is passed into this
function to then get the value of the variable.
:param variable_handle: An integer returned from the `get_internal_variable_handle` function.
:return: Floating point representation of the internal variable value. Returns zero if the handle is invalid.
Use the api_error_flag function to disambiguate between valid zero returns and error states.
"""
return self.api.getInternalVariableValue(variable_handle)
[docs] def get_construction_handle(self, var_name: Union[str, bytes]) -> int:
"""
Get a handle to a constructions in a running simulation. This is only used for Python Plugin applications!
Some actuators allow specifying different constructions to allow switchable construction control.
This function returns an index that can be used in those functions. The construction is specified by name.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:return: An integer ID for this construction, or -1 if one could not be found.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_construction_handle is only available as part of a Python Plugin workflow")
if isinstance(var_name, str):
var_name = var_name.encode('utf-8')
return self.api.getConstructionHandle(var_name)
[docs] def get_global_handle(self, var_name: Union[str, bytes]) -> int:
"""
Get a handle to a global variable in a running simulation. This is only used for Python Plugin applications!
Global variables are used as a way to share data between running Python Plugins. First a global variable must
be declared in the input file using the PythonPlugin:GlobalVariables object. Once a name has been declared, it
can be accessed in the Plugin by getting a handle to the variable using this get_global_handle function, then
using the get_global_value and set_global_value functions as needed. Note all global variables are
floating point values.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param var_name: The name of the global variable to retrieve, this name must be listed in the IDF object:
`PythonPlugin:GlobalVariables`
:return: An integer ID for this global variable, or -1 if one could not be found.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_global_handle is only available as part of a Python Plugin workflow")
if isinstance(var_name, str):
var_name = var_name.encode('utf-8')
return self.api.getPluginGlobalVariableHandle(var_name)
[docs] def get_global_value(self, handle: int) -> RealEP:
"""
Get the current value of a plugin global variable in a running simulation. This is only used for Python Plugin
applications!
Global variables are used as a way to share data between running Python Plugins. First a global variable must
be declared in the input file using the PythonPlugin:GlobalVariables object. Once a name has been declared, it
can be accessed in the Plugin by getting a handle to the variable using the get_global_handle function, then
using this get_global_value and the set_global_value functions as needed. Note all global variables are
floating point values.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param handle: An integer returned from the `get_global_handle` function.
:return: Floating point representation of the global variable value
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_global_value is only available as part of a Python Plugin workflow")
return self.api.getPluginGlobalVariableValue(handle)
[docs] def set_global_value(self, handle: int, value: float) -> None:
"""
Set the current value of a plugin global variable in a running simulation. This is only used for Python Plugin
applications!
Global variables are used as a way to share data between running Python Plugins. First a global variable must
be declared in the input file using the PythonPlugin:GlobalVariables object. Once a name has been declared, it
can be accessed in the Plugin by getting a handle to the variable using the get_global_handle function, then
using the get_global_value and this set_global_value functions as needed. Note all global variables are
floating point values.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param handle: An integer returned from the `get_global_handle` function.
:param value: Floating point value to assign to the global variable
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("set_global_handle is only available as part of a Python Plugin workflow")
self.api.setPluginGlobalVariableValue(handle, value)
[docs] def get_trend_handle(self, trend_var_name: Union[str, bytes]) -> int:
"""
Get a handle to a trend variable in a running simulation. This is only used for Python Plugin applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using this get_trend_handle
function, then using the other trend variable worker functions as needed.
The arguments passed into this function do not need to be a particular case, as the EnergyPlus API
automatically converts values to upper-case when finding matches to internal variables in the simulation.
Note also that the arguments passed in here can be either strings or bytes, as this wrapper handles conversion
as needed.
:param trend_var_name: The name of the global variable to retrieve, this name must match the name of a
`PythonPlugin:TrendVariable` IDF object.
:return: An integer ID for this trend variable, or -1 if one could not be found.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_handle is only available as part of a Python Plugin workflow")
if isinstance(trend_var_name, str):
trend_var_name = trend_var_name.encode('utf-8')
return self.api.getPluginTrendVariableHandle(trend_var_name)
[docs] def get_trend_value(self, trend_handle: int, time_index: int) -> RealEP:
"""
Get the value of a plugin trend variable at a specific history point. The time_index argument specifies how
many time steps to go back in the trend history. A value of 1 indicates taking the most recent value. The
value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param time_index: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_value is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableValue(trend_handle, time_index)
[docs] def get_trend_average(self, trend_handle: int, count: int) -> RealEP:
"""
Get the average of a plugin trend variable over a specific history set. The count argument specifies how
many time steps to go back in the trend history. A value of 1 indicates averaging just the most recent value.
The value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param count: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_average is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableAverage(trend_handle, count)
[docs] def get_trend_min(self, trend_handle: int, count: int) -> RealEP:
"""
Get the minimum of a plugin trend variable over a specific history set. The count argument specifies how
many time steps to go back in the trend history. A value of 1 indicates sweeping just the most recent value.
The value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param count: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_min is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableMin(trend_handle, count)
[docs] def get_trend_max(self, trend_handle: int, count: int) -> RealEP:
"""
Get the maximum of a plugin trend variable over a specific history set. The count argument specifies how
many time steps to go back in the trend history. A value of 1 indicates sweeping just the most recent value.
The value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param count: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_max is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableMax(trend_handle, count)
[docs] def get_trend_sum(self, trend_handle: int, count: int) -> RealEP:
"""
Get the summation of a plugin trend variable over a specific history set. The count argument specifies how
many time steps to go back in the trend history. A value of 1 indicates sweeping just the most recent value.
The value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param count: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_sum is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableSum(trend_handle, count)
[docs] def get_trend_direction(self, trend_handle: int, count: int) -> RealEP:
"""
Get the trajectory of a plugin trend variable over a specific history set. The count argument specifies how
many time steps to go back in the trend history. A value of 1 indicates sweeping just the most recent value.
A linear regression is performed over the swept values and the slope of the regression line is returned as a
representation of the average trajectory over this range.
The value of time_index must be less than or equal to the number of history terms specified in the matching
PythonPlugin:TrendVariable object declaration in the input file. This is only used for Python Plugin
applications!
Trend variables are used as a way to track history of a PythonPlugin:Variable over time. First a trend variable
must be declared in the input file using the PythonPlugin:TrendVariable object. Once a variable has been
declared there, it can be accessed in the Plugin by getting a handle to the variable using the get_trend_handle
function, then using the other trend variable worker functions as needed.
:param trend_handle: An integer returned from the `get_trend_handle` function.
:param count: The number of time steps to search back in history to evaluate this function.
:return: Floating point value representation of the specific evaluation.
"""
if not self.running_as_python_plugin:
raise EnergyPlusException("get_trend_direction is only available as part of a Python Plugin workflow")
return self.api.getPluginTrendVariableDirection(trend_handle, count)
[docs] def year(self) -> int:
"""
Get the "current" calendar year of the simulation. All simulations operate at a real year, either user
specified or automatically selected by EnergyPlus based on other data (start day of week + leap year option).
:return: An integer year (2020, for example)
"""
return self.api.year()
[docs] def month(self) -> int:
"""
Get the current month of the simulation (1-12)
:return: An integer month (1-12)
"""
return self.api.month()
[docs] def day_of_month(self) -> int:
"""
Get the current day of month (1-31)
:return: An integer day of the month (1-31)
"""
return self.api.dayOfMonth()
[docs] def hour(self) -> int:
"""
Get the current hour of the simulation (0-23)
:return: An integer hour of the day (0-23)
"""
return self.api.hour()
[docs] def current_time(self) -> RealEP:
"""
Get the current time of day in hours, where current time represents the end time of the current time step.
:return: A floating point representation of the current time in hours
"""
return self.api.currentTime()
[docs] def minutes(self) -> int:
"""
Get the current minutes into the hour (1-60)
:return: An integer number of minutes into the current hour (1-60)
"""
return self.api.minutes()
[docs] def day_of_week(self) -> int:
"""
Get the current day of the week (1-7)
:return: An integer day of week (1-7)
"""
return self.api.dayOfWeek()
[docs] def day_of_year(self) -> int:
"""
Get the current day of the year (1-366)
:return: An integer day of the year (1-366)
"""
return self.api.dayOfYear()
[docs] def daylight_savings_time_indicator(self) -> bool:
"""
Get the current daylight savings time indicator as a logical value. The C API returns an integer where 1 is
yes and 0 is no, this simply wraps that with a bool conversion.
:return: A boolean DST indicator for the current time.
"""
return self.api.daylightSavingsTimeIndicator() == 1
[docs] def holiday_index(self) -> int:
"""
Gets a flag for the current day holiday type: 0 is no holiday, 1 is holiday type #1, etc.
:return: An integer indicator for current day holiday type.
"""
return self.api.holidayIndex()
[docs] def sun_is_up(self) -> bool:
"""
Gets a flag for whether the sun is currently up. The C API returns an integer where 1 is yes and 0 is no, this
simply wraps that with a bool conversion.
:return: A boolean indicating whether the sun is currently up.
"""
return self.api.sunIsUp() == 1
[docs] def is_raining(self) -> bool:
"""
Gets a flag for whether the it is currently raining. The C API returns an integer where 1 is yes and 0 is no,
this simply wraps that with a bool conversion.
:return: A boolean indicating whether it is currently raining.
"""
return self.api.isRaining() == 1
[docs] def warmup_flag(self) -> bool:
"""
Gets a flag for whether the warmup flag is currently on, signaling that EnergyPlus is still in the process of
converging on warmup days. The C API returns an integer where 1 is yes and 0 is no, this simply wraps that
with a bool conversion.
:return: A boolean indicating whether the warmup flag is on.
"""
return self.api.warmupFlag() == 1
[docs] def zone_time_step(self) -> RealEP:
"""
Gets the current zone time step value in EnergyPlus. The zone time step is variable and fluctuates
during the simulation.
:return: The current zone time step in fractional hours.
"""
return self.api.systemTimeStep()
[docs] def system_time_step(self) -> RealEP:
"""
Gets the current system time step value in EnergyPlus. The system time step is variable and fluctuates
during the simulation.
:return: The current system time step in fractional hours.
"""
return self.api.systemTimeStep()
[docs] def current_environment_num(self) -> int:
"""
Gets the current environment index. EnergyPlus environments are design days, run periods, etc. This function
is only expected to be useful in very specialized applications where you control the environment order
carefully.
:return: The current environment number.
"""
return self.api.currentEnvironmentNum()
[docs] def actual_time(self) -> int:
"""
Gets a simple sum of the values of the time part of the date/time function. Could be used in random seeding.
:return: Integer value of time portion of the date/time function.
"""
return self.api.actualTime()
[docs] def actual_date_time(self) -> int:
"""
Gets a simple sum of the values of the date/time function. Could be used in random seeding.
:return: Integer value of the date/time function.
"""
return self.api.actualDateTime()