Mikhail

Forum Replies Created

Viewing 15 posts - 4,111 through 4,125 (of 6,289 total)
  • Author
    Posts
  • in reply to: Installer download issue #5696
    Mikhail
    Moderator

    Hi,

    What version do you download?
    Where do you from?
    Please try to do it using another PC.

    in reply to: Event Instructions and User Comment for alarms #5693
    Mikhail
    Moderator

    Hi,

    > Please where can we define event instructions?
    Please ask particular questions on the forum, and we will explain how it works.

    > how can we add user comments when acknowledge an alarm
    Currently, this feature is not implemented.

    in reply to: Viewing communication log #5689
    Mikhail
    Moderator

    Hi,

    C:\SCADA\ScadaComm\Log also contains lineXXX.log.bak, where you can find the previous part of the log. But this is also a part of log, not full.

    May be we should add the option to set the log file sizes.

    in reply to: Error sending email to XXThe operation has timed out. #5685
    Mikhail
    Moderator

    Please provide a screenshot with device settings for gmail.
    I don’t think that timeout really make sense.

    Mikhail
    Moderator

    Hi,

    Other approach is creating your own formula (in the Formulas table) like this

    public double CalcSwitch(int counterCnlNum)
    {
      if (Val() <= 0 && Cnl > 0 && CnlStat > 0)
      {
        SetVal(counterCnlNum, Val(counterCnlNum) + 1);
      }
      return Cnl;
    }

    Use this formula in the channel 114: CalcSwitch(115)
    where 115 is the channel for counting, its type is Calculated real.
    Note: I don’t test formulas on the forum. May be you need to fix it.

    • This reply was modified 3 years, 8 months ago by Mikhail.
    • This reply was modified 3 years, 8 months ago by Mikhail.
    Mikhail
    Moderator

    Hi,

    Try the following:
    The new channel of the Switching counter type should have a formula Val(114)
    Its Signal field is not set.

    If the above doesn’t help, please provide a link to the screenshot of the Input channels table.

    Mikhail
    Moderator

    Hi,

    A channel of the Switching counter type increases by 1 when the channel changes from 0 to 1 and from 1 to 0.
    You should check it using the Generator feature when Communicator is stopped. Please write here about the result.

    in reply to: Formulas check '-' #5677
    Mikhail
    Moderator

    Take into account that
    CnlStat – the status that was just received from Communicator
    Stat(N) – the current status of an input channel before receiving new status

    in reply to: "Pass to Server" button in 5.7.0 #5676
    Mikhail
    Moderator

    Hello,

    Main Menu > Deploy > Upload Configuration
    And the similar button with a small green arrow on the toolbar.

    in reply to: Version number change #5671
    Mikhail
    Moderator

    Since Rapid SCADA 5.7.0 we store the configuration database in XML as a part of a project. *.dat files are used in runtime.

    • This reply was modified 6 years, 11 months ago by Mikhail.
    in reply to: Version number change #5670
    Mikhail
    Moderator

    Where can i find and/or change the version number?

    Usually in the about page. Version number of what application?

    Also is it possible to acces the db like a sql datebase or?
    Is the baseDat the only thing i have?

    You can read the files like written here , get data from Server by TCP and use REST API.

    in reply to: Formulas check '-' #5669
    Mikhail
    Moderator

    Hi,

    if (CnlStat > 0) …

    Mikhail
    Moderator

    Hi,

    Can we use formula to calculate the elapsed time for the channel being in in True State?

    How many times a day a channel may change?
    The simplest approach is:
    1. Create an input channel of Minute real type.
    2. Use a formula Val(101) > 0 ? Val() + 1 : Val()
    where 101 is the source channel that can be 0 or 1
    The formula is calculated every minute for this type of channel.

    But this approach is not accurate.

    can we use formulas to make a digital counter so that we can calculate how many times channel changed from state to another state for example False to True?

    Just choose Switching counter type of the input channel. And it will count.

    in reply to: Unknown device tags #5660
    Mikhail
    Moderator

    Configured the aliases in OPC server. Now I have access to them from communicator service and it is now working. I didn“t know that the use of aliases was needed.

    That’s good! Thank you for sharing the cure recipe. OPC is a black box.

    in reply to: All value reset to 0 when device lost communication #5658
    Mikhail
    Moderator

    Hi,

    Stop the Communicator service, and use the Generator feature the collect more information how the formula works. The expected and actual results, you need, are not clear.

Viewing 15 posts - 4,111 through 4,125 (of 6,289 total)