Mikhail

Forum Replies Created

Viewing 15 posts - 241 through 255 (of 6,366 total)
  • Author
    Posts
  • Mikhail
    Moderator

    Hello,
    Please provide screenshots of the corresponding settings in your project.

    Mikhail
    Moderator

    Hello,
    Entering channel value cannot be skipped. In that case, there is nothing to send to server.
    To import a bunch of data, try the CsvImport.exe utility. It works based on a CSV file that can be prepared in Excel.

    Mikhail
    Moderator

    Is it enough to run ScadaTestClient and select option 12 – write historical data?

    Try for 1 point and let us know about the result.

    in reply to: Scada webstation not getting open #17540
    Mikhail
    Moderator

    Hello,
    The issue is somewhere in IIS configuration.
    Could you make a screenshot of your IIS management console?
    Especially the modules section. Example

    Mikhail
    Moderator

    Hello,
    Thank you for your high rating.

    should I execute ScadaTestClient in the command prompt (cmd)?

    Yes.

    what is the correct syntax for calculating calculated tags (id 1009-1059) with time of 9:00-10:00?

    I mean, that you should write a channel that is used by other calculated channels as a source.
    After running ScadaTestClient.exe, select item 12.
    Could you clarify how channel data were calculated?

    in reply to: Only Archive on “Status change” #17538
    Mikhail
    Moderator

    Channels and other tables of the configuration database will appear in different tables in the project database schema.

    in reply to: Blinking in faceplate not working #17534
    Mikhail
    Moderator

    Thanks for the information. I’ll be able to start testing and fixing it a little later.

    in reply to: Only Archive on “Status change” #17533
    Mikhail
    Moderator

    Is there a way to make RapidScada store the Channel Name in the SQL database?

    Yes. Create a new deployment profile, and set Extension to ExtDepPostgreSql. Set the parameters on the DB Connection tab.
    When you deploy a project with that profile, it will be written to PostgreSQL.

    Mikhail
    Moderator

    Hi,

    If historical data is sent to the Server service having some timestamp, all calculated channel are recalculated at that timestamp.
    To test it, use the ScadaTestClient utility.

    • This reply was modified 7 months, 2 weeks ago by Mikhail.
    in reply to: Blinking in faceplate not working #17523
    Mikhail
    Moderator

    I will check it and write here about the result. It will take some time.
    Thank you.

    in reply to: Only Archive on “Status change” #17522
    Mikhail
    Moderator

    How often does rapidscada check for changes? Is it every second?

    Approximately 10 times a second.

    How do you find & replace when the cell is blank?

    I think, this is not possible.

    in reply to: OPC XML DA support #17521
    Mikhail
    Moderator

    Hi,
    XML-DA is not supported.

    in reply to: Blinking in faceplate not working #17517
    Mikhail
    Moderator

    Hello,
    Could you describe steps to reproduce the issue?

    in reply to: Input Chanel Size and string format #17515
    Mikhail
    Moderator

    The above formula useful for constant strings.
    If you need to set a string channel manually, use the output formula SetUnicode(). Input formula is empty.

    public byte[] SetUnicode()
    {
      if (ArrIdx == 0)
      {
        string s = CmdData == null ? "null" : Encoding.UTF8.GetString(CmdData);
        int dataSize = Channel.DataLen ?? 1;
    
        for (int i = 0; i < dataSize; i++)
        {
          string part = Substring(s, i * 4, 4);
          SetData(CnlNum + i, EncodeUnicode(part), 1);
        }
      }
    
      return CmdData;
    }
    

    SetAscii() can be developed in a similar way.

    in reply to: Obtain channel data #17514
    Mikhail
    Moderator

    Hello,
    In a channel formula, use the Channel property. It provides access to the channel properties of the current channel.
    There is no function to get properties of a channel by its number from scripts. This is available in the source code of a module.

Viewing 15 posts - 241 through 255 (of 6,366 total)