Mikhail

Forum Replies Created

Viewing 15 posts - 5,866 through 5,880 (of 5,971 total)
  • Author
    Posts
  • in reply to: web page not displaying value #349
    Mikhail
    Moderator

    Most likely, communication line number and device number in the configuration database aren’t matched communication line number and device number in SCADA-Communicator.

    Mikhail
    Moderator

    You can create it manually as described in manual_setup_en.pdf
    Skip the 3rd step, because the files have been already copied.

    in reply to: Animated components #346
    Mikhail
    Moderator

    Hi,

    SCADA-Scheme gets the result of calculation. It doesn’t need to know the formula in the configuration database.
    Yes, you can define calculation of formula status after “;”, but I’m not sure that you really need it in your case. What is displayed in SCADA-Scheme? What is the status of 110th channel?
    For example, the formula “1.5;1” always returns value=1.5 and status=1.

    I haven’t received e-mail from you. Could you send it again, please?

    Mikhail
    Moderator

    Dear Savan,

    Please check the following:
    1. Does directory C:\SCADA\ScadaWeb exist? It is a physical path of the web application.
    2. Open IIS Manager
    Control Panel -> System and Security -> Administrative Tools -> Internet Information Services (IIS) Manager
    and check if Scada application exists in the Default Web Site.

    in reply to: web page not displaying value #342
    Mikhail
    Moderator

    Hi,
    If you click a device node in SCADA-Communicator, there should be your channel numbers in the grid in “Device Data” page. Are they displayed?

    If not, probably you need to open SCADA-Administrator, click “Pass to SCADA-Server” toolbar button and restart SCADA-Server and SCADA-Communicator services.

    in reply to: Animated components #331
    Mikhail
    Moderator

    According to this inputs How do I set up a relation between this input channel ? with the 3rd channel of calculated?

    Do the following:
    1. Create new channel of type “Calculated real”.
    2. Tick “Formula used” field.
    3. Input the formula: Val(401) <= 0.0 && Val(402) >= 1.0 ? 1.0 : 0.0

    If you interested with my changes in the project, I can send you the solutions. After you anayze (if you wish) i can publish..

    Yes, send to me, please.

    added the turkish language files

    I’d like to publish them in rapidscada.org Are they compartible with the original version of Rapid SCADA?

    I moved the solutions Vs2015 and added the turkish language files.
    After Vs2015 I changed something on the Wcf project and update the service reference.

    Could you write more information?

    in reply to: Animated components #329
    Mikhail
    Moderator

    Hi,

    I’m very glad that you gained the goal.
    If I correctly understood your needs about two positioned relay, you can create the 3rd channel of the type “Calculated real” or “Calculated discrete” that will depend on the input_channel_0 and the input_channel_1. Then use the 3rd channel in a dynamicpicture.

    Have you published your version of Scheme and Editor applications? It’s very intersting to try them.

    in reply to: Advice required for setting up a basic system #327
    Mikhail
    Moderator

    Dear Bret,

    Have you successfully received data from the meter?
    8 byte doubles are now supported.

    Mikhail
    Moderator

    Kevin, if you would like, I can help you to set up the system using remote connection. Is is payable service http://rapidscada.org/services/remote-troubleshooting/

    Mikhail
    Moderator

    Hi Kevin,

    The default configuration uses formula, for instance, in the channel 101. Is there any difference with 901? You could try using the simplest formula Cnl – 1 for the test reason.

    How about trying the new SCADA-Communicator that contains the required function?
    1. Download the update from http://rapidscada.org/download/scada_4.5_update.zip
    2. Rewrite the existing files.
    3. Continue our discussion…

    Mikhail
    Moderator

    Hi,

    Looks like OK:
    – input channel number is 901,
    – value 720896 is hex 00 0B 00 00.

    The result of conversion doesn’t shown in SCADA-Communicator. You can watch it in a web page or with help of SCADA-Server GUI.
    What is the value of the channel 901?

    Mikhail
    Moderator

    Could you post here the content of C:\SCADA\ScadaComm\Log\kpXXX.txt ?
    where XXX is your device number

    Mikhail
    Moderator

    I edited the code of the formula, be attentive, please.

    Mikhail
    Moderator

    Then click “Pass to SCADA-Server” button and restart SCADA-Server service.

    Mikhail
    Moderator
    public double SwapBytes()
    {
        UInt32 val = (UInt32)CnlVal;
        byte[] bytes = BitConverter.GetBytes(val);
        byte[] newBytes = new byte[] 
        {
            bytes[1],
            bytes[0],
            bytes[3],
            bytes[2],
        };
        return (double)BitConverter.ToUInt32(newBytes, 0);
    }

    How to use:
    1. Run SCADA-Administrator
    2. Open Formulas table and add this method.
    3. Open Input channels table and find the appropriate input channel.
    4. Tick Formula used field.
    5. Input SwapBytes() into the Formula field

    If it doesn’t work at once write here)
    Play with order of bytes.

    • This reply was modified 10 years, 1 month ago by Mikhail.
Viewing 15 posts - 5,866 through 5,880 (of 5,971 total)