Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
Set Period of sending all device tags to 0. Communicator will send changes only.
MikhailModeratorBut the issue is fixed now
Good. Thanks for keeping updated.
MikhailModeratorHello,
Please provide a link to a screenshot with the error. Also describe a case when the error occurs.
MikhailModeratorHi,
Communicator also sends all data periodically. You can disable this in the common parameters of Communicator.
I also suggest to try Rapid SCADA 6 Beta which support PostgreSQL archives work clearly.
April 19, 2022 at 10:55 am in reply to: if variable change value every minute so 1 , otherwise 0 #10196
MikhailModeratorHi,
MikhailModeratorHi,
Do you use OPC DA or OPC UA?
Please provide communication line log after communication is lost.
MikhailModeratorHello,
Such error usually happen when some other app also uses TCP port 10000.
To check, stop the Server service, and try to connect to port 10000 by any utility like Hercules, for example. If you can connect, it means that another app is listening the port.Also check log file of the Server service.
MikhailModeratorHi,
You should add a formula in the Formulas table to change a command value if it is out of limits. For example:
public double FixVal(double x) { if (x < 20) return 20; else if (x > 30) return 30; else return x; }Then use the formula in the output channel: FixVal(CmdVal)
-
This reply was modified 3 years, 9 months ago by
Mikhail.
MikhailModeratorI suppose that “view is not found in the cache” are not critical errors. It usually means that user session is closed but web app is still open in browser.
If crash occurs again, please check the log for the details.
MikhailModeratorHi,
After uploading the project, writing rights on the log folder often disappear.
If you provide writing access for all on this folder, I expect that log will be created. This is a known issue, it is fixed in the v6.
Hope to catch a error with details.Is v6 in beta now ?
Yes. It’s available. But currently not all modules have been ported.
Is there any compile guide for dotnet-core noobs?
A guide will be created later. In short, switch to Release configuration before build. Build *Common projects first. VS 2022 Community is OK.
MikhailModeratorTry
var myFilter = new scada.CnlFilter(); myFilter.cnlNums = [1, 2, 3, 4]; myFilter.viewIDs = [1, 1, 1, 1]; // ID of the view containing the above channels scada.clientAPI.getCurCnlDataExt(myFilter, function (success, cnlDataExtArr) {...
MikhailModeratorHi,
Yes. You can set the default scheme scaling in the Webstation configuration file. See the link . This file is in Rapid SCADA project.
MikhailModeratorHello,
Please check RAM consumption.
Are there any errors in /opt/scada/ScadaWeb/log/ScadaWeb.log?Mono is not stable enough. For this reason, we use .NET6 instead of Mono in Rapid SCADA 6. The Grafana plugin has not be ported yet. When we do that, you could update.
MikhailModeratorHello,
When a report is just created, its file is located inside the project like shown here https://rapidscada.net/doc/content/latest/en/modules/plg-elastic-report-files/report_itf_file_en.pngAfter you send the project to the runtime by clicking the upload button, the report configuration file should be located in C:\SCADA\Interface
Do you have such file?
-
This reply was modified 3 years, 9 months ago by
-
AuthorPosts