Mikhail

Forum Replies Created

Viewing 15 posts - 3,556 through 3,570 (of 6,218 total)
  • Author
    Posts
  • in reply to: Help witch formula #7217
    Mikhail
    Moderator

    To get the result you need to wait an hour. So I suggest change the channel type from Hourly real to Minute real.

    in reply to: Help witch formula #7216
    Mikhail
    Moderator

    Hello,

    – 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.

    in reply to: Help witch formula #7206
    Mikhail
    Moderator

    You 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.

    in reply to: Help witch formula #7201
    Mikhail
    Moderator

    Hello,

    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 difference

    2. Channel that stores difference.

    in reply to: Modbus RTU comunication issue #7199
    Mikhail
    Moderator

    Hello,

    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.

    in reply to: Different Server for Deploy #7198
    Mikhail
    Moderator

    Hi,

    It’s possible. You should open incoming connections on the TCP port 10000 on the machine where the server app is installed.

    Mikhail
    Moderator

    You can try the new version of Rapid Gate that provides user interface for editing settings.

    Mikhail
    Moderator

    Hi,

    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.

    in reply to: Blending out navigation mene items #7192
    Mikhail
    Moderator

    Hello,

    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.

    in reply to: Operating systems and virtual machine #7187
    Mikhail
    Moderator

    @manjey73 is quite experienced in Rapid SCADA.

    in reply to: Operating systems and virtual machine #7186
    Mikhail
    Moderator

    Hi,
    Windows and Linux – yes. VM yes. I have no info about Mac.

    in reply to: OPC on Remote PC #7185
    Mikhail
    Moderator

    Hi,
    Good! Does the whole system run well for now?

    in reply to: Send command #7182
    Mikhail
    Moderator

    You notified me that you have figured it out.

    in reply to: Alarm & Event management #7178
    Mikhail
    Moderator

    Hi,
    The above features can be done as a custom development by a contract. They are not included in the roadmap.

    Mikhail
    Moderator

    Hi,
    Try the following:
    Open Administrator – Server – Generator and send a new value to the appropriate input channel with status 1.
    Does it help?

Viewing 15 posts - 3,556 through 3,570 (of 6,218 total)