Forum Replies Created
-
AuthorPosts
-
Mikhail
ModeratorMost likely, communication line number and device number in the configuration database aren’t matched communication line number and device number in SCADA-Communicator.
August 31, 2015 at 8:00 am in reply to: Rapid Scada not running on Web Browser due to 404 not found error #347Mikhail
ModeratorYou can create it manually as described in manual_setup_en.pdf
Skip the 3rd step, because the files have been already copied.Mikhail
ModeratorHi,
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?
August 31, 2015 at 7:46 am in reply to: Rapid Scada not running on Web Browser due to 404 not found error #343Mikhail
ModeratorDear 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.Mikhail
ModeratorHi,
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.
Mikhail
ModeratorAccording 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.0If 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?
Mikhail
ModeratorHi,
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.
Mikhail
ModeratorDear Bret,
Have you successfully received data from the meter?
8 byte doubles are now supported.August 26, 2015 at 9:14 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #325Mikhail
ModeratorKevin, 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/
August 26, 2015 at 9:02 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #324Mikhail
ModeratorHi 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…August 25, 2015 at 8:16 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #322Mikhail
ModeratorHi,
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?August 24, 2015 at 11:01 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #320Mikhail
ModeratorCould you post here the content of C:\SCADA\ScadaComm\Log\kpXXX.txt ?
where XXX is your device numberAugust 24, 2015 at 9:27 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #316Mikhail
ModeratorI edited the code of the formula, be attentive, please.
August 24, 2015 at 9:23 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #314Mikhail
ModeratorThen click “Pass to SCADA-Server” button and restart SCADA-Server service.
August 24, 2015 at 9:06 am in reply to: How to swap the HEX data from the device via the Modbus protocol in RapidSCADA? #313Mikhail
Moderatorpublic 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 fieldIf it doesn’t work at once write here)
Play with order of bytes.-
This reply was modified 10 years, 1 month ago by
Mikhail.
-
This reply was modified 10 years, 1 month ago by
-
AuthorPosts