Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHello,
Would you like to ask how to display data from archive?
If yes, please create a new topic for discussing this question.
MikhailModeratorHello,
> the target .net framework of “scadaservershell” was 4.6.1
It is 4.7.2, see this.hope this will not lead to new problems
Should be OK.
MikhailModeratorTo get the result you need to wait an hour. So I suggest change the channel type from Hourly real to Minute real.
MikhailModeratorHello,
– Change the name of channel 135 to “Previous value”. It’s for understanding
– Change the formula of channel 135 to GetDif(133, 136)
– Channel 136 should have the Calculated real type and has no formula of this channel.
MikhailModeratorYou did right. The formula has a mistake, sorry. Add to the method:
return newVal; }This formula was not tested, because testing formulas is a part of Extended support service, not free support.
MikhailModeratorHello,
To get energy consumption per hour and per day, I suggest using Elastic Report plugin.
To get minute difference, you need 2 additional channels:
1. Channel that stores a value minute ago. This is a channel of the Minute real type.
It uses formula like that:double GetDif(int srcCnl, int difCnlNum) { double newVal = Val(srcCnl); double curVal = Val(); SetVal(difCnlNum, newVal - curVal); SetVal(CnlNum, newVal); }srcCnl – input channel that stores a source value.
difCnlNum – input channel that stores difference2. Channel that stores difference.
MikhailModeratorHello,
Is that the cause of instability?
You should provide communication logs to check.
Can they connect to Pi4?
Depends on the converter. I can’t suggest a particular. As I know, many of them work with RPi.
MikhailModeratorHi,
It’s possible. You should open incoming connections on the TCP port 10000 on the machine where the server app is installed.
August 24, 2020 at 8:51 am in reply to: push data to third-party station or another rapid scada station #7195
MikhailModeratorYou can try the new version of Rapid Gate that provides user interface for editing settings.
August 21, 2020 at 4:05 pm in reply to: push data to third-party station or another rapid scada station #7193
MikhailModeratorHi,
You should change settings in the XML file that is located inside your project directory.
Use this utility to encrypt password. We will develop user interface soon to edit the module settings.
MikhailModeratorHello,
This feature is already exists. Create different roles in the Roles table, configure rights for new roles, and assign roles to the users.
See this for more info.
MikhailModeratorHi,
Windows and Linux – yes. VM yes. I have no info about Mac.
MikhailModeratorHi,
Good! Does the whole system run well for now?
MikhailModeratorYou notified me that you have figured it out.
-
AuthorPosts