Forum Replies Created
-
AuthorPosts
-
MikhailModeratorUsing formulas, you can get difference every hour or every minute. To calculate difference every 30 minutes, a new server module should be developed.
MikhailModeratorHow to do webserver restart?
Open IIS management console and restart web server. Or restart a computer.
September 4, 2020 at 4:22 pm in reply to: How to set reading data to display on scheme or table #7232
MikhailModeratorHello,
My be you should read the manual and watch videos how to create schemes and table view? Is there a bug in the software that prevents you from doing this?
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. -
AuthorPosts