Logic Machine Forum
CPU I/O Load capacity LM5-Lite - Printable Version

+- Logic Machine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: General (https://forum.logicmachine.net/forumdisplay.php?fid=2)
+--- Thread: CPU I/O Load capacity LM5-Lite (/showthread.php?tid=3738)



CPU I/O Load capacity LM5-Lite - mkaymak - 09.12.2021

Hi,
I'm preparing scada screen for my project. Total 130 visualition pages maybe i could add 10 more.
CPU I/O load rate is 3.79 4.00 3.83. Would it be a problem for user ?
Thanks


RE: CPU I/O Load capacity LM5-Lite - Daniel - 09.12.2021

CPU I/O should be below 1, Ideally 0.7. Your device is overloaded and it will not work correctly.


RE: CPU I/O Load capacity LM5-Lite - admin - 09.12.2021

The number of plans does not matter that much. What matters is the number of active user connections, bus load and scripts. As Daniel said your system is overloaded. Might be a script loop or a KNX/IP loop.


RE: CPU I/O Load capacity LM5-Lite - mkaymak - 09.12.2021

I disabled my scripts.CPU I/O level is now 0.05 1.65 2.92.I used block editor to create PID control for floor heating script.

Here's my script could help me to find why its looping.


Quote:require('custom.fbeditor20.Control')

Setpoint = grp.getvalue('21/1/0')
Current_value = grp.getvalue('15/1/6')
Manual = nil
Enable_manual_value = nil
Manual_value = nil
Invert = nil
min = 0
max = 100
kp = 200
ki = 10
kd = 0
Output_type = 'bit'
out = fbe_pid_controller(Setpoint, Current_value, Manual, Enable_manual_value, Manual_value, Invert, min, max, kp, ki, kd, Output_type, 'fb__1__Kat_Yerden_Is__tma_1__fbe_pid_controller__id')
if out ~= nil then
grp.write('21/1/5', out)
end



RE: CPU I/O Load capacity LM5-Lite - Daniel - 09.12.2021

Wait half an hour and tell us how it changed. How often do you run this script?


RE: CPU I/O Load capacity LM5-Lite - mkaymak - 09.12.2021

CPU I/O level is now 0.7.And the Script running constanly.


RE: CPU I/O Load capacity LM5-Lite - Daniel - 09.12.2021

What is the timer set to?


RE: CPU I/O Load capacity LM5-Lite - mkaymak - 10.12.2021

Setted to 0.


RE: CPU I/O Load capacity LM5-Lite - Daniel - 10.12.2021

This is way too fast. Temperature isn't changing fast anyway. You can set it to a minute easily.


RE: CPU I/O Load capacity LM5-Lite - mkaymak - 10.12.2021

Thanks a lot.Solved my issue.