manjey73

Forum Replies Created

Viewing 15 posts - 646 through 660 (of 856 total)
  • Author
    Posts
  • in reply to: Mobile client and Rapid SCADA #6814
    manjey73
    Participant

    Port forwarding for example

    Checking the IP provider, it is not a fact that you will be able to connect to it, since it may be for NAT

    For example, routers Zyxel, Mikrotik and perhaps others have a cloud service to access them, then instead of an IP address, you need to know the name that the router manufacturer provides you with

    xxxxxxxxxxxa.sn.mynetname.net – On my Mikrotik it looks like this (instead of xxxxx numbers)

    in reply to: Conection using snmp #6722
    manjey73
    Participant

    ID: 0.1.3.6.1.4.1.232.6.2.6.8.1.4.0

    Have you tried it ?

    in reply to: Switching between schemes #6695
    manjey73
    Participant

    The schema editor has a Link component. Open your mnemonic and see its address in the browser’s address bar, for example http://192.168.0.121/scada/View.aspx?viewID=4 and enter the url in the Navigation parameter

    in reply to: DemoProject not working #6674
    manjey73
    Participant

    The individual components of the system have different numbering

    in reply to: How to run communicator graphical user interface #6656
    manjey73
    Participant

    Is regular xrdp not enough ?

    in reply to: Help witch formula #6653
    manjey73
    Participant

    The name of the formula is if_S_S not If_S_S

    in reply to: Installation issue #6616
    manjey73
    Participant

    https://github.com/mono/mono/issues/18864#issuecomment-593561532

    if the package version does not belong to xamarin6

    in reply to: Installation issue #6615
    manjey73
    Participant

    Check whether you have libapache2-mod-mono installed. And check what version of the package is, if it is not installed.

    in reply to: IEC 60870-5-101/104 protocols support #6603
    manjey73
    Participant

    Currently only using the OPC server. If you find an OPC UA for this Protocol it will be better

    in reply to: Export to Database Module #6568
    manjey73
    Participant

    It is no different from other modules. Will work

    in reply to: how to display number in decimal? #6561
    manjey73
    Participant

    Set the output format of the input channel as D

    manjey73
    Participant

    Hysteresis added to Formula tab

    int[] HysNum = new int[1];
    bool[] Hys = new bool[1];
    public double Hysteresis(double inCnl, double low, double high)
    {
    bool q = Val(CnlNum) > 0;
    
    int res = Array.IndexOf(HysNum, CnlNum);
    if (res == -1)
    {
    res = HysNum.Length;
    Array.Resize(ref HysNum,  res+1);
    Array.Resize(ref Hys,   res+1);
    HysNum[res] = CnlNum;
    Hys[res] = q;
    }
    
    if (inCnl < low) Hys[res] = true;
    if (inCnl > high) Hys[res] = false;
    
    return Convert.ToDouble(Hys[res]);
    }

    In the channel, use the formula Hysteresis(Val(X), 32.5, 33.5))
    Where Val(X) is your measurement channel. Enabling and disabling the output is already configured for the channel in which you use the Hysteresis formula

    manjey73
    Participant

    It is not correct to compare the real number, simply because it can fluctuate within certain limits, for example, 32,999-33, 019, and then you will have the output turned on and off. You need to apply Hysteresis to avoid this. Kind of laid out the formula of Hysteresis on the forum.

    in reply to: Open in Web Browser #6520
    manjey73
    Participant

    In Russian, too, the HTTP Error 503 error. The service is unavailable.

    in reply to: SNMP Device – Value return a comma #6514
    manjey73
    Participant

    Do not pay attention, in SNMP, the variable itself is most likely still text with a label that it is a number. The Communicator displays it probably before sending it to the Scada database. Use the number format in the table to apply the correct multiplier

Viewing 15 posts - 646 through 660 (of 856 total)