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

Форум

Ресурсы Rockwell

Product Directory

Essential Components

Literature Library

Knowledge Base

Electronic News&Magazines

Блог

Encompass Program

Product Certification

  


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



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



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

 [quote:65336fe656="Alek"]... Меня интересуют следующие продукты и как будет выглядить в вашем случае активация для нижеперечисленных продуктов: 1) 2711ND3-PanelBuilder32 2)1747PBASE- 1747 Series SLC500 BASIC programming software 3) 9323S5300D- A.I. Series PLC-5 Ofline Programming/Online Monitoring 4) 2706-MB1 - MessageBuilder 421 Configuration Software Заранее благодарен за ответ. Успехов.[/quote:65336fe656] Это провокация :D Хотя список можно продолжить, например: 8100-HS110 ODS SOFTWARE FOR IMC110, как им воспользоватcся во времена Windows :evil:

 Вот прилагаю выдержку из форума Rockwell, как говорится на злобу дня. ************************************************************* Peter JGW, Visitor Question: Help. Just over a month ago one of our Dell notebook PCs died taking out it's hard drive too. It was known there were some licenses on the drive but it wasn't a major issue as we have other licenses on other PCs. The job of restoring the applications to a replacement notebook wasn't urgent and left to another person. As things transpire this other person resigned and left a short time ago leaving the job of getting things working on my plate. Great. Another of our engineers is developing a combined CompactLogix and RSView application and wanted to test it with one of our RSEmulate5000 programs (we have 2 licenses) - and hey, as you can guess, one of our lost licenses was for this program. The other license resides with a service engineer who happens to be abroad and he may get violent if we ask for it back! Although our current RSEmulate5000 is v16 I believe it's a master disk activation as it's an upgrade from v15. The activation certificate states N/A for Product Key and Activation Type, it also says "To activate, insert Master Diskette" - which is a bit of a clue. I cannot for the life of me find the master disk and to compound matters our TechConnect contract is currently invalid due to some mix up with the renewal. Isn't life great. That's why I'm posing questions on this forum! Anyone got any suggestions? Colleagues have offered their thoughts, like "Find a tall building ..." and "Buy some more licenses you stingy old f.....". Bstds. :x JHutch, Moderator Answer: While buying a support contract provides lots of benefits (not to mention pays my salary... ), we don't require one for activation help. In this case, you'll most likely need a new master disk shipped out to you. Call into the Support Center and the activations group will get you straightened out. JHutch :) Peter JGW, Visitor: You are of course right JHutch. I called them this morning and sorted out my activation issues and they also confirmed we do have a support contract. Mind you where the support pack went I don't know, probably got lost in the post. Anyway, more is winging it's way to us. So it's generally a better day. I might have to pop over the pop over the pub at lunchtime for a pint. :D *************************************************************

 База знаний, возможно, уже обновилась, поэтому части топиков нет, но можно набрать поиск по фразе типа 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

 Адаптер должен автоматически устанавливать этот параметр так, как установлено в приводе. См. User Manual на 20-COMM-C, стр. 3-9: [quote:cea3b41692]07 Ref/Fdbk Size The size of the Reference/Feedback. It will either be 16 bits or 32 bits. It is set in the drive and [b:cea3b41692]the adapter automatically uses the correct size[/b:cea3b41692].[/quote:cea3b41692]

 Понятно. Вам нужно перепрошить модуль более новой ревизией firmware. Имейте в виду, что Вы не можете перепрошить с 6.1 сразу на 6.3, а сперва нужно прошить 6.2, а только потом 6.3. Проверьте, не Ваш ли это случай: [quote:d79e4acb3e] 1756-DHRIO Series D revision 6.1 Stops Responding. Question 1756-DHRIO Ser D revision 6.1 Stops Responding Answer 1756-DHRIO/D Revision 6.1 Stops Responding Problem: It has been identified that 1756-DHRIO series D firmware version 6.1 modules may stop communicating with external devices via DH+ or Remote I/O under certain conditions. Cause: After 100 connections have been made to the module an error occurred that caused future connections to produce timeout errors until the module was reset. This happened with any kind of connection, such as, block transfers, DH+, CIP generic, etc. This anomaly may cause the following symptoms: * The module errors with error code 203 and 100 when trying to do Block Transfers un-cached to an I/O module. The Block transfers will not resume after the communication is interrupted. * Communication with RSLogix 5000 software can no longer be established. Message "Not a Logix Controller" (error 701-8004204C). Communication will not resume until module is reset. * Messages (MSG) going through the module may not complete and fault. * The Module may not work in some hardware gateway applications, particularly with PLC3 to PLC3 messaging via DHRIO gateway. * RSLinx Software tries to access device properties, the user gets a message "Unable to establish communications with the device". Solution: * Temporary fix is to power cycle the r6.1 module and it's good for another 100 connections. * Cure is to Flash upgrade 1756-DHRIO/D module firmware to version 6.2 or higher. Firmware available for download at http://support.rockwellautomation.com/ControlFlash/ or from your local distributor. Please note that FW 6.2 is incompatible with Ser A, B and C modules. ================= You cannot flash a 6.1 revision module directly to 6.3. You must first flash the module ot 6.2 then to 6.3. Going directly from 6.1 to 6.3 will cause the module to not power up. In one case the module displayed “++++;A9;>++++x1yo” after attempting to go from 6.1 to 6.3 directly. Once this occurs the module will have to be returned for repair. ================== Other Notes Please note that it is NOT POSSIBLE to re-flash: - Series D module back to Series C rev 5.x or earlier - Series A, B, C to Series D rev 6.2 or higher [/quote:d79e4acb3e]

 Reference: Technical Note 41204 was released to the Rockwell Automation Knowledgebase which describes a separate issue that involves a similar set of modules as this PSA. The date range of the Technical Note extends outside of the date range of this PSA, Sept 2006 through June 2007. We recommend you review the Technical Note in addition to this PSA. - Issue Description - With the above-mentioned ControlLogix and CompactLogix products, hereafter referred to as Logix products, the following functional issue exists: Functional Issue – A functional issue has been identified with a component used on the above-listed products manufactured from October 2006 through March 2007. A root-cause analysis performed on the component indicates that approximately 1.0% of the products may be affected. Depending on the type of product, the issue may result in erroneous data. Anomalies observed to date have resulted in modules performing a safe shutdown due to internal diagnostics. To date, we have not seen any instances of erroneous data in the field as a result of this issue. Изготовленное в данный период оборудование может быть бракованным. Кто поставил контроллеры из этой партии на взрывоопасные объекты - начинайте закупать валидол.

 Объявление это висит на сайте Rockwell уже несколько месяцев: http://www.ab.com/silver/processors/flexlogix.html У Rockwell cуществует т.н. Silver Program, смысл которой в следующем: [quote:6a25e81255] What the Silver Series Program Offers When it is clear that we cannot continue to build a specific product, we designate that product as Silver Series. Silver Series is a designation we give to existing products BEFORE we can no longer offer them for sale. These are products — controllers, I/O modules, operator interface devices, and others � that you may currently have installed in your plant. This designation means that the product will continue to be manufactured, but for only a limited time, until the product's Silver Date. [b:6a25e81255]The Silver Date is the last date Rockwell Automation will accept orders for new product shipments, terminating its Silver Series status.[/b:6a25e81255] The product is no longer offered for general sale. This gives you: * time to buy spares * time to consult with us about a transition plan * time to schedule and budget for updates * time to migrate to newer products [/quote:6a25e81255] http://www.ab.com/silver/ Что делать с работающими системами? Закупать ЗИП. Вы же знаете, что оборудование Allen-Bradley обладает очень высокой надёжностью, поэтому в работающих уже некоторое время системах вероятность отказа исчезающе мала. Но всё-таки лучше озаботиться ЗИП уже сейчас - мало ли что. Вообще, системные интеграторы, проектируя систему, должны бы, в принципе, понимать, какое оборудование, возможно, уже устарело, и его не следует применять во вновь проектируемой системе, или хотя бы консультироваться (с нами :) ) .

 Добрый день. Пытаюсь связать данные модули- не получается ((( При конфигурировании железа в RSLogix5000 нет выбора данных модулей входов/выходов. [quote:b1d6bfe2c7]Ни один из модулей ввода/вывода 1793 FLEX Integra не совместим с процессором FlexLogix, ни как локальные Вх/Вых, ни как удаленно расположенные Вх/Вых, подключенные через сеть ControlNet.[/quote:b1d6bfe2c7] а также [quote:b1d6bfe2c7]Ваша система Flex I/O может связываться через сеть Remout I/O, сеть DeviceNet и сеть ControlNet собственными адаптерами. Вы можете добавлять компоненты в систему, когда Вам в ней потребуется сделать сделать изменения[/quote:b1d6bfe2c7] Также в инете нашел информацию, что 1793 можно подключить к Флексу через адаптер (при этом не был указан заказной номер). Не подскажете ли, каким образом спаять этих двух зверей. Сам на Аллен Бредли перешел неделю назад, а инфа нужна срочно. Буду благодарен за ответы.

 В processor status-swithes стоит: eeprom - transfer on bad ram; ниже Memory protected - no . На другом аналогичном процессоре тоже самое, запись не производится из-за такой же ошибки.



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


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



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



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



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



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




  
RA & VDT GmbH


Облако тэгов
ControlLogix sound FTView Control Logix MVI56-104S 1734-AENTR Altivar Add-on Instruction MVI46MCM Ethernet PLC-5 SLC-500 1757-SRM Firmware ComactLogixL32E 1756-L75 1756-RM2 Controlnet cable Promass Client Memory 1769-L32E execution minutes seconds Windows Build 00000d5c Unspecified terminate geehrter automatisch keine globalen Fehlermeldung

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

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 секунды