manjey73

Forum Replies Created

Viewing 15 posts - 376 through 390 (of 533 total)
  • Author
    Posts
  • in reply to: Help, command send now in Scheme Editor #6321
    manjey73
    Participant

    Get a new theme, I’ll lay out a template for this relay and channel settings

    in reply to: help for code computer #6147
    manjey73
    Participant

    Download and install the ChartsPro, , run the Web
    Main menu-Plugins-Installed
    Activate the ChartsPro, Click the Registration tab.

    To use ChartsPro go to Сonfiguration and specify it instead of simple Charts

    in reply to: about Rapid SCADA 5.7's Minimum archive data writing period #6136
    manjey73
    Participant

    <Param name=”SendAllDataPer” value=”30″

    ScadaCommSvcConfig.xml
    Reduce this value in the Communicator configuration file and do not edit it in the WEB settings

    in reply to: Automatic Control Module #6128
    manjey73
    Participant

    Yes, the license is tied to the computer. For tests it was necessary to use reception of temporary keys.

    This is how I usually test

    in reply to: KNX Driver #6108
    manjey73
    Participant

    You would screenshots have shown that and as you have broke a ?

    in reply to: Modbus TCP Server #6054
    manjey73
    Participant

    Like this limitation of the Protocol on 256 bytes when using standard reading functions

    in reply to: Modbus TCP – can't read device #6010
    manjey73
    Participant

    Does the device allow connection over multiple sockets or does it only work over one socket ? Disable the SOFTWARE it works with and try again.

    in reply to: DF1 PLC Protocol driver Allen Bradley #5993
    manjey73
    Participant

    Version : 5.2.0.1

    in reply to: Sending Email Notifications #5867
    manjey73
    Participant

    You can, the module sends a letter not only to one recipient, but also to a group of recipients

    in reply to: User input through Scheme #5840
    manjey73
    Participant

    Input Channel

    Channel 450, use formula – Yes, Val(450)

    Output Channel

    Channel 450, use formula – Yes, SetVal(450, Cmd)

    Using Formulas

    Then you can use the data of this channel in other formulas
    In principle, you can use the values of any input channels in other formulas, you should only remember that the value of the channel in the database is double

    • This reply was modified 4 years, 7 months ago by manjey73.
    • This reply was modified 4 years, 7 months ago by manjey73.
    in reply to: Send Modbus Signal to other SCADA #5820
    manjey73
    Participant

    Only if another Scada has Modbus slave or is able to receive data from Databases to which Rapid Scada can export

    manjey73
    Participant

    ns.fariz Yes, the scheme will look like numbers, except for the conditions that you specify. It works, I checked 🙂 But the status can be changed color, but I did not check

    manjey73
    Participant

    public double ToAscii(double channel, double min, double max)
    {
    string s = String.Format(“{0:F2}”, channel);
    if (channel < min || channel > max) s = “Error”;
    return ScadaUtils.EncodeAscii(s);
    }

    353 Extra Channel – use formula ToAscii(Val(532), -1, 3.45)
    Format – Text ASCII

    353 – The channel, which we will display as Dinamic text and two values for minimum and maximum

    • This reply was modified 4 years, 7 months ago by manjey73.
    manjey73
    Participant

    public double ToASCII(double can)
    {
    string test = String.Format(“{0:F2}”, can);
    if (can > 3.5) test = “Error”;
    return ScadaUtils.EncodeAscii(test);
    }

    Make an additional channel, put it in the Format – ASCII Text and use a similar formula. Specify the desired number of decimal places. It is better to add a couple of input variables for Min and Max to set in the formula… Output as Dynamic text.

    manjey73
    Participant

    Can try a formula that any number will translate to text and if the number is less than or greater than the desired range, to make an inscription Error ?

    That is, in fact, any correct number will be text and not the number itself.

    Never tried that.

Viewing 15 posts - 376 through 390 (of 533 total)