Вход на форум 
В начало e-Mail

Форум

Ресурсы Rockwell

Product Directory

Essential Components

Literature Library

Knowledge Base

Electronic News&Magazines

Блог

Encompass Program

Product Certification

  


Предыдущие результаты



Предыдущие результаты



Предыдущие результаты

 Камлание вряд ли поможет, думаю :) Что бы я сделал: 1. Оставил бы в коннтроллере только процессор и блок питания. 2. Деинсталлировал бы RSLinx полностьью, без остатка, прочистил бы registry и перезагрузился. 3. Установил бы самую свежую версию RSLinx 4. Взял бы кабель 1756-CP3 и соединил бы компьютер с процессором по RS-232 5. Выбрал бы драйвер связи по RS-232 6. C помощью автоматического поиска скорости и параметров связи установил бы связь по RS-232. Записал бы параметры. 7. Если всё получится, и процессор опознается, пошёл бы дальше. 8. Отключил бы всё, кроме компьютера с RSLinx от 1761-NET-ENI. Т.е., в свич воткнул бы только компьютер и 1761-NET-ENI, больше ничего. 9. Попробовал бы связаться. 10. Получается или нет? Виден процессор?

 Rockwell пишет, что жёлтый вопросительный знак на моуле NET-ENI возможен в двух случаях: а) отсутствие или несоответствие EDS-файла или-же б) превышение лимита connection для модуля NET-ENI. Для этого модуля лимит – это 4 connection`a. Если лимит превышен – опять будет жёлтый вопросительный знак. (ID21741 из Knowledge Base) Всё это имеет смысл при условии, что вы корректно сконфигурировали сам модуль 1761-NET-ENI, В общем случае, вот советы Rockwell при возникновения проблем с этим модулем. (ID47329) If the 1761-NET-ENI (ENI) is not working check the following items. 1. Verify the baud rates. Match the baud rates between the ENI and the device it is talking with. Perhaps return the PLC to its defaults, for example on an ML 1200 by pressing the COM button. 2. Delete the RSLinx Harmony files. Shut down RSLinx, search for Harmony. Two files will be found, delete them and restart RSLinx. 3. Cycle power on the ENI and the other serial device. If the ENI is powered by the PLC disconnect and reconnect the serial cable, leaving the PLC running. 4. Make sure the ethernet devices driver (AB_ETH-1) is being used. 5. Make sure the EDS file for the 1761-NET-ENI is current. 6. Minise the number of connections the NET ENI is making by, for example, shutting down COM Redirector software and ENI configuration utility. 7.Start replacing hardware. В двух словах – попробуйте проверить скорость СОМ-порта контроллера и модуля NET-ENI

 Нужный софт можно скачать здесь: http://www.software.rockwell.com/download/mmi/rsview32/rsview32%206.40.zip http://www.software.rockwell.com/support/download/detail.cfm?ID=2893 http://www.software.rockwell.com/support/download/detail.cfm?ID=2360 Прошу прощения за любопытство, просто интересно знать, какой PLC и motion controls идет с этим санком? Еще, по моему, для этого приложения, VersaView c RSView32 функционально избыточна :? , хватило бы PanelView STD или Panelview Plus с ME с головой. :)

 Может быть найдите EDS-файлы для соответствующих Ethernet модулей? Добавьте их в Linx с помощью утилиты EDS Hardware Installation Tool. Обычно, если Linx видит модуль и показывает его как "знак вопроса", то это помогает. Типа прошивка модуля старше, чем есть в Linx. Vitaliy D. Burtsev

 База знаний, возможно, уже обновилась, поэтому части топиков нет, но можно набрать поиск по фразе типа string data types и попытаться полистать. Вот, собственно, то, что у меня есть. Background: When using string data in the CL55xx processor with firmware version at 7 or earlier, integer storage must be allocated. Integer storage can be allocated as an SINT, INT, or DINT array. Additionally INT array data can be referenced in PLC5 emulation mode. Version 8 of the ControlLogix firmware introduced the string datatype. When the OPC node type is used, the following errors can be generated when the wrong address syntax is used. The DDE node type does not generate any errors when improperly configured, however the string data is not written correctly either. Requirements for the native string tag support: RSView32 6.30 previous versions of RSView32 should work as well, but were not tested. RSLinx 2.30 ControlLogix firmware rev 8 or higher The following paragraphs describe how the DDE/OPC implementation works, and how string data is stored in the CL55xx processor. String Tag Configuration: Traditionally RSView32 is looking for a string address equivalent to A10:0 or ST10:0. When the PLC5 ST datatype was introduced, 82 characters was the maximum supported. This 82 string length limit remains in the RSView32 product today. The CL55xx string data type stores the characters in a SINT array. String data can be stored in any type of integer array, SINT, INT, DINT when working with controllers at earlier versions of the firmware. Depending on the type of integer array selected the address syntax will vary. Even though the RSView32 tag is defined as string data, RSLinx queries the data type from the processor. To allow RSView32 and RSLinx to write string data to integer storage - add the ,SSxx (string space pad) or the ,SCxx (string C null pad) to the address line, where xx indicates the number of elements to pad. The number of elements to pad depends on how the data is stored, the following table gives some examples. If the SCxx or SSxx syntax is omitted, RSView32 will only be able to access the 1st element in the integer array, and will not represent the data as the string entered, since it is integer. There are some issues when writing to the new string datatype from RSView32. When working with variable length strings, RSView32 does not update the length field with the new string length. The improper initialization of the string length prevents ascii functions from working properly in the controller program. This issue is currently under investigation. A potential work around is to determine the length of the string in VBA code, and then manually write to the length element of the string data type. Тут, правда, ниже табличка! Надеюсь поймете CL5550 Datatype Description String Address Syntax Example1 String Address Syntax Example2 String 8 bit integer array String1.Data[0],SC82 String1.Data[0],m,SC82 SINT 8 bit integer SINTArray[0],SC82 SINTArray[0],m,SC82 INT 16 bit integer INTArray[0],SC41 INTArray[0],m,SC41 DINT 32 bit integer DINTArray[0],SC20 DINTArray[0],m,SC20 PLC5 emulation 16 bit integer N7:0,SC41 N7:0,m,SC41 PLC5 emulation mode may be required to read/write string data if the CL55xx firmware is at an earlier revision 4.x. Controller Memory: When using the string data type, the controller stores the string as a character in a element called .Data[x], where x is the character position. With the native string data type, there doesn't appear to be anyway to reference the entire string tag as was possible with the PLC5 string. Instead the RSView tag address references the first element of the SINT array that contains the string. The ,SC82 syntax tells RSLinx to get 82 bytes of string data. When using an integer array to store string data, the controller stores the data in the integer array as the HEX equivalent of the character. For example, if a 12 is entered into a string input field, the data is converted to the hex equivalent (in this case 3132h) and is stored the processor tag name INTArray[0]. Since INTArray[0] actually stores 2 characters, examination of the individual bytes will show the 1 (31h) is stored in the high order byte, and the 2 (32h) is stored in the low order byte. Consider the same example writing string data to the SINTArray, if a 12 is entered into a string input field, the SINTArray[0] = 2 (32h), SINTArray[1] = 1 (32h). Applying the ,m byte swap modifier to the address line does not alter the way the string data is written to the processor, it only swaps the way the data is viewed. A future release of RSLinx will correct this byte swapping for SINT arrays. When RSView32 is performing both the string read and write, use the syntax example1. When the CL5550 processor is storing the string data, the high and low order byte may need to be swapped, use the syntax example2 to accomplish this on the read only. It is more efficient to write null padded strings than space padded strings, therefore use the SCxx syntax when possible. Background: RSView32, RSView SE and RSSql can browse tag addresses from an on-line controller using OPC. However, string tags in a ControlLogix family controller (added in firmware version 8) and bit-level addresses in a PLC-5 or SLC-500 cannot be browsed directly. String tags are actually stored in the ControlLogix as numeric data. When the OPC browser tries to update the string tag's address field, the client correctly determines that a data type mismatch has occurred. It therefore does not allow the address field to be updated. For digital addresses in a PLC-5 or SLC-500, RSLinx does not allow browsing to the bit level. Examples: "B3:0" can be browsed, but "B3:0/3" cannot be browsed. However, a Boolean tag in a ControlLogix processor can be browsed. Solution: For String addresses in a ControlLogix processor: 1. Create a DIGITAL tag (if client is RSView32 or RSView SE) 2. Browse to the string tag in the ControlLogix (example: StringTag ) 3. Select the StringTag.DATA element and press OK 4. Remove the .DATA manually from the end of the item address 5. Change the tag data type to STRING. Example of correct item address syntax: [TopicName]StringTag Example of incorrect item address syntax: [TopicName]StringTag.DATA Note: This syntax is tested with firmware version 10 per tech note A27556111 (see references below). Important: In RSView32 and RSView SE - if step 5 is skipped and the tag is accepted, it will not be possible to change the tag data type. In this case it would be necessary to delete the tag and start again with step 1. For Digital addresses in a PLC-5 or SLC-500: 1. Browse to the word level (example: B3:0 ) 2. Select the word containing the desired bit and press OK 3. Add the bit delimiter manually to the end of the item address. Example of correct item address syntax: [TopicName]B3:0/2 For further reference, see the following tech notes: A5550 - How to address the different data types in the ControlLogix 5550 processor A7004 - Reading and writing string data from RSView32 to ControlLogix 55xx A27556111 - How to manage variable length string writes from a HMI to ControlLogix A4814 - How to configure RSView32 to communicate to a ControlLogix 5550 processor Успехов. Vitaliy D. Burtsev

 Можно полистать следующие топики: A5550 - How to address the different data types in the ControlLogix 5550 processor A7004 - Reading and writing string data from RSView32 to ControlLogix 55xx A27556111 - How to manage variable length string writes from a HMI to ControlLogix A4814 - How to configure RSView32 to communicate to a ControlLogix 5550 processor Однако это работает для строк на английском, а вот русские строки обработать так и не удалось, к сожалению. Vitaliy D. Burtsev

 Доброго времени суток, Никак не можем, пока , побороть одну проблему. Периодически возникает следующая ситуация: 1.перестают обрабатываться производные теги 2.на объектах перестает отображаться свойство fill 3.со временем перестают передаваться данные 4.при попытке открытия tag database в RSView Studio выскакивает сообщение "AOAInitialize failed" 5.в factory talk diagnostics примерно в это время появляются ошибки по производным тегам типа "the item ... does not exit any server" или так "the tag ... has not been activated" На сервере установлено только office и rockwell (RS view SE release 4.0 CPR 7) Иногда помогает перезагрузка сервера Вопросы: что может приводить к тому что повреждается база тегов? нужно ли периодически чистить кэш? :?: Прочитал id 21162, id 28901, id 34001, id 40070, id 26426 - пока ответов на свои вопросы не нашел. Причина не установлена - проблема скоро наверно даст о себе знать... :o Может, кто подскажет в какую хоть сторону смотреть?

 Спасибо [b:2658fbd1dd]maxim[/b:2658fbd1dd]'у за ссылку, я этой темы не заметил. Действительно, есть публикация на сайте rockwell'а описывающая эту проблему и пути решения (http://rockwellautomation.custhelp.com/cgi-bin/rockwellautomation.cfg/php/enduser/std_adp.php?p_faqid=35190). Насчет "левой партии" - исключено. Контроллерные шкафы собирались в Германии. [quote:2658fbd1dd]А почему бы открыто не признать, что есть бракованная (а не "левая") партия, есть утилита для определения таких контроллеров и модулей по серийному и др. номерам, а не валить всё на каналы доставки от которых, кстати, модули сломаться не могли[/quote:2658fbd1dd] "Контора" признала, что было выпущено оборудование с дефектными прошивками в публикации ID 35190. В этом случае, ИМХО, компания через дистрибьютеров должна была оповестить всех, по возможности, покупателей об этой проблеме, чтобы сохранить лицо, даже если это повлечет большие затраты. Но им там виднее... Становиться страшно, когда открываються такие подробности об оборудовании работающем по всему миру. Хотите устроить конец света? Тогда Вам к разработчикам rockwellautomation ;)

 Сразу хочу оговориться, что данный метод применяется для активаций, установленных утилитой EvMove c floppy disks. Еще условие, что полетел только Windows и drive не пытались форматировать. Для Rockwell продуктов начиная с CPR9 и при механической поломке Hard Drive этот метод не поможет. Необходимое hardware/software: Desktop/Laptop with USB port and Windows XP предпочтительно, преобразователь-кабель USB 2.0/1.1 to IDE/SATA (примерная стоимость от 25$) и утилита EvMove. Простейшая процедура: отстыковать 2 кабеля от Hard Drive (IDE ribbon cable and +5V power) подсоеденить преобразователь и подключить к работающему компьютеру как обычный USB memory stick. ОС распознает drive как external и назначает букву, например Drive G:. Далее при помощи EvMove активации переносятся с Drive G на другой любой drive.

 Уважаемые коллеги, Как заметил oldDad в одном из ответов как избежать неприятностей по переустановке софта: [i:f48c993d18][Цитата] На этот случай нужно после отладки системы сделать с помощью Acronis True Image образ диска (backup), и никогда ничего не поднадобится переставлять. В случае чего - просто залить образ диска вместе с Windows, MSOffice, RSLinx, RSView и.т.д. и т.п. со всеми настройками вместе - одинм движением руки. [Конец цитаты][/i:f48c993d18] Хочу заметить что Rockwell Automation постоянно заботися о своих customers. При использовани компьютеров от Rockwell не нужен никакой Acronis. B комплект промышленного компьютера VersaView входит CD "VersaView System Accessories/Cloning" (P/N 77184-925-99) Используя одну из утилит на этом диске (Symantec Ghost or Norton Ghost), даже рукой вращать не надо, по завершению проекта просто делаешь primary partition backup. Почему только часть физического диска, а потому, что на этом же диске существует еще hidden partition, где хранится image of the primary partition, сделанный by Rockwell перед упаковкой компьютера в ящик. Так что есть всегда возможность вернуть на состояние , как будто только распаковал ящик. Ну а если механическая поломка HD, то всегда можно свой изначальный backup запросить в Rockwell.



Предыдущие результаты


Ещё результаты



Предыдущие результаты



Предыдущие результаты



Предыдущие результаты



Предыдущие результаты




  
RA & VDT GmbH


Облако тэгов
ProSoft Modbus Automation ControlLogix MVI56-MCM Allen-Bradley Logix Windows FactoryTalk PanelView VersaView ControlTower GuardLogix Compact Software Studio Designer 100-E 100-D SMC-50 Energy Saver 1756-RMS-SC Spectrum Encompass Level Ethernet Redundancy Stratix

Яндекс цитирования

Smart Solutions VDT GmbH | Friedrich-List-Allee 38, D-41844 Wegberg-Wildenrath, Germany
Tel.: +49 2432 933 57 83 | e-Mail: office@vdt-solutions.de
Все товарные знаки и торговые марки являются собственностью их владельцев.
При использовании материалов сайта ссылка на данный сайт обязательна.
Открытие страницы: 0.125 секунды