Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
In a web browser press F12, open the Console tab and make screenshot of the errors there.
MikhailModeratorBut be very careful, I am not sure if there will be any negative impact.
I suspect it can slow down or even crash the server when you download minute report or plot chars.You absolutely right. I also wrote about this somewhere on this forum.
Historical data are completely refactored in Rapid SCADA 6.
MikhailModeratorIt’s a useful formula.
Just a note: you can simplifyif (ChannelErrors[CnlNum] >= n) {return double.NaN;} else {return Val();}to
return ChannelErrors[CnlNum] >= n ? double.NaN : Val();
MikhailModeratorHi,
Thank you for this question.
Case 3 : 10,20,None,None
In this case None and Node are equal to 0. That’s why limits are interpreted as incorrect and ignored. This behavior will be changed in Rapid SCADA 6.
You should set some values instead of None.
MikhailModeratorAlso provide a screenshot of the trigger settings that sends the last command:
01-16 05:15:47 <***C2>Command: out channel = 1402, user ID = 0
MikhailModeratorHi,
How often does the problem occur?
What is your scenario of using Auto Control Module?It just happend to me that I might try disableing AutomaticControl first.
Agree. This is a possible cause.
MikhailModeratorIn case I can’t use the Administrator application, I usually use WinSCP to copy Rapid SCADA project from Windows PC to Linux server, and use Putty to restart services.
MikhailModeratorHi,
Good. Does this solve your issue?
MikhailModeratorPlease provide links to screenshots.
MikhailModeratorIf you want to add a node in the explorer tree that open the report on a web page:
1. Add a new record in the Interface table.
2. Set
Path to URL of your report
View Type = WebPageView
Title = HelloWorld\My Report (for example)Is possible to think about more complicated Table plugin in future with custom views (transposition, hour, minute table header, wider date selection)?
In Rapid SCADA 6 we will change the approach of working with historical data. This will cause changes in Elastic Report.
MikhailModeratorHi Rich,
I can’t say for any future version, but usually if you buy a plugin, you can use it on the same server with new version of Rapid SCADA. We don’t plan paid updates.
MikhailModeratorHi,
It’s work perfect.
Good!
The new error is related to the installation of the web app. Please create a new topic to discuss it.
MikhailModeratorHi,
The 3rd screenshot is not shared.
I forget about behavior with limits. What we can do is using a collection to store extra status instead of Unreliable status:public Dictionary<int, bool> ChannelErrors = new Dictionary<int, bool>();
MikhailModeratorHi,
In English website the same articles are located at https://rapidscada.org/category/articles/
MikhailModeratorHi,
how can I set modbus device ID?
Set the device address in the Devices table. After uploading the project, check logs.
-
AuthorPosts