BEGIN
REAL _hustota, _hustota_max, _hustota_min
_hustota := %Rnd()
_hustota_min := 0.3
_hustota_max := 0.8
IF _hustota > _hustota_min & _hustota < _hustota_max THEN
LOG "Zmena hustoty", _hustota PRIORITY _LOG_PRTY_INFO
ELSE
LOG "Zmena hustoty", _hustota PRIORITY _LOG_PRTY_ALARM
ENDIF
END
Pridať komentár