12-07-2024, 03:17 PM
(12-07-2022, 10:45 PM)krzychor napisał(a): witajcie,
ktoś pomoże? mam problem z ustawieniem zdarzenia,
chciałbym aby zdarzenie aktywowało się gdy parametr (np P1) osiągnie wartość -3000, a dezaktywowało się gdy będzie -500.
jak to powinno być ustawione?
próbuję ale nie wychodzi.
ustawiam wartość < 1750, histereza 1250 (próbuję również -1250) ale nie działa.
co ciekawe jak wpisuję w histerezie -1250 lub 1250 daję zapisz to zapisuje te wartości, ale po odświeżeniu zawsze jest w histerezie +- -60.72 to chyba jakiś błąd w sofcie???
Hysteresis in events refers to the introduction of a delay or buffer between the ON and OFF activation of an event to prevent rapid or unnecessary toggling. This is used in most systems to improve stability and prevent noise-induced oscillations.
How It Works:
Thresholds: There are two thresholds-one that activates the event (ON) and another that resets it (OFF).
Logic:
The event turns ON when the input crosses the upper threshold.
The event goes OFF only when the input drops below the lower threshold.
Application:
Prevents frequent state changes when inputs hover near a single threshold.
Used in thermostats, debounce logic, and control systems.
Do you want an example or explanation of an application?