You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by two threads interacting with the same data source simultaneously:
libcosim inserts data (fast)
the server extracts data (slow)
For each cycle of the trend loop, for each trended variable, the server figures out for which timespan to extract data for, extracts the data, changes its format and then stores it. In-between each of these steps libcosim may store a multitude of values for the next variable to extract data for.
A solution could be to block the propagation of the simulation while the server's trend loop collects data, but this would prioritize getting trend data over driving the simulation forwards.
Action 1:
Result 1:
Data flickers as seen in the image above. Issue is quite frequent. Almost every other second. Could it be because the values are constant?
The text was updated successfully, but these errors were encountered: