I'm having trouble getting some variable handles using PythonPlugin
in energyplus. I wonder if all the variables listed in rdd and edd output file are available for the python plugin ...
For example here is what I got in rdd file:
Output:Variable,*,Chiller Part Load Ratio,hourly; !- HVAC Average []
and here is what I used in my python script to get the handle:
self.sensors["ch1 plr"] = self.e.get_variable_handle(state, "Chiller Part Load Ratio", "CH1")
Unfortunately, the API returns -1 value for this variable and some other variables. I can't figure out what's the problem. I hope that you can help me with this.