Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
I see. It would be handy. For now, there is no ready to use solution.
If there is a business need and you could sponsor that feature, I could create a prototype of the module that will become a part of Rapid SCADA.
MikhailModeratorHi,
An implementation depends on the driver. What communication protocol do you use?
MikhailModeratorCommunication works well.
What tag data is displayed on the device data page? Could you clarify the question?
MikhailModeratorHi,
I suggest to create a separate trigger that exports only the channels that are not exported. It would be useful to create a new table in the DB for them. It can help to realize the cause of the problem.January 6, 2024 at 10:09 am in reply to: Use logical judgment to calculate equipment working time #13896
MikhailModeratorGood. This is a common task that many people ask.
MikhailModeratorHi,
Channel formulas work only with current data. To calculate differences (e.g., power consumption), I suggest Elastic Report Plugin.
MikhailModeratorHi,
Could you clarify your question?
MikhailModeratorCould you make a screenshot of the log?
MikhailModeratorHi,
I use sendcommand sending about 30 commands to virtual device per second and the base session will be suspended. The session will wait until the cmd is handeld.
If commands require heavy processing, implement a queue to process them in background.
I use the writcurdata method to send data to the server and persist the data to a dat file.
To analyze the issue, you should use a debugger or log files.
MikhailModeratorLinux is preferable for a cloud server.
MikhailModeratorI suggest to deploy Rapid SCADA on a cloud server provided by Microsoft Azure, Google Cloud, Amazon, Digital Ocean or your local provider.
MikhailModeratorHi Zeus,
When I use the send command function to write a large amount of data to a virtual device, the session will be suspended.
What amount of data you try to send using a command?
When I use writing curdata to a virtual device, if the frequency is low, the data will become 0.
Could you explain?
MikhailModeratorAvailable at https://rapidscada.net/store/Module/en/ExtTrendJP
MikhailModeratorCheck Communicator – Communication Lines – Your line – Line Stats – Line Log
December 27, 2023 at 11:46 am in reply to: Use logical judgment to calculate equipment working time #13873
MikhailModeratorHi,
Something like (not tested)public double CountTime() { return Val(101) > 0 ? Val() + 1 : Val(); }101 – channel that stores the machine state
Then use this formula in a channel of the Calculated type:EveryMin(() => CountTime()) -
AuthorPosts