20.01.2017, 08:02
Hello!
I have a spacelynk installed in a commercial office building. There are 574 objects added to the spacelynk, and there are several event-based scripts running with the same script.
The script triggers everytime there's movement in the room or the cooling % changes. There are about 40-50 of these scripts, but they don't occur too often as I've monitored.
But the spacelynk is running with a 85% - 89% load. Is this an issue? We are planning to add visualisation for 3 floors and a few more scripts for energy management, I'm just worried that the spacelynk can't handle it.
Is it the scripts that are causing the memory load or is there something else?
I have a spacelynk installed in a commercial office building. There are 574 objects added to the spacelynk, and there are several event-based scripts running with the same script.
Code:
movement = grp.getvalue('0/2/9')
cooling = grp.getvalue('1/2/53')
setSpjeld = '3/2/23'
if movement == true then
grp.write(setSpjeld, cooling)
else
grp.write(setSpjeld, 0)
end
But the spacelynk is running with a 85% - 89% load. Is this an issue? We are planning to add visualisation for 3 floors and a few more scripts for energy management, I'm just worried that the spacelynk can't handle it.
Is it the scripts that are causing the memory load or is there something else?