Home

PLC_2_Unity_Referenc..

image

Contents

1. Table No Feature No Description of Feature 33 la RETAIN qualifier for internal variables Note 11 page 653 2a RETAIN qualifier for output variables Note 11 page 653 2b RETAIN qualifier for input variables Note 11 page 653 3a RETAIN qualifier for internal function blocks Note 11 page 653 4a VAR_IN_OUT declaration textual 4b VAR_IN_OUT declaration and usage graphical 4c VAR_IN_OUT declaration with assignment to different variables graphical 34 1 Bistable Function Block set dominant 2 Bistable Function Block reset dominant 35 1 Rising edge detector 2 Falling edge detector 36 la CTU Up counter function block 1b CTU_DINT function block 1d CTU_UDINT function block 2a CTD Down counter function block 2b CTD_DINT function block 2d CTD_UDINT function block 3a CTUD Up down counter function block 3b CTUD_DINT function block 3d CTUD_UDINT function block 37 1 TP Pulse function block 2a TON On delay function block 3a TOF Off delay function block 39 19 Use of directly represented variables 40 1 Step and initial step Graphical form with directed links 3a Step flag General form 4 Step elapsed time General form 648 35006144 07 2011 IEC Compliance Table No Feature No Description of Feature 41 7 Use of transition name 7a Trans
2. 3 4 1 AND AND AD 5 6 AND BLD 6 7 2 3 AND AND EN ENO moa 8 5 AND moB NOTE Only one reference of an instance is allowed e g the instance 7 may only be referenced once The position of FFBs only influences the execution sequence if more than one FFB is linked to the same output of the calling FFB see also Original Situation page 342 In the first network block positions 4 and 5 are switched In this case common origins for both block inputs the execution sequence of both blocks is switched as well processed from top to bottom 344 35006144 07 2011 Function Block Language FBD In the second network block positions 7 and 8 are switched In this case different origins for the block inputs the execution sequence of the blocks is not switched processed in the order the block outputs are called 5 2 i AND AND BD E 4 3 AND Ab 6 8 4 8 AND AND EN ENO E B 3 7 AND t PA 35006144 07 2011 345 Function Block Language FBD Loop Planning Non Permitted Loops Configuring loops exclusively via links is not permitted since it is not possible to clearly specify the signal flow the output of one FFB is the input of the next FFB and the output of this one is the input of the first Non permitted Loops via Links 5 6 OR AND INI i
3. Operator Modifier Meaning Operands Description AND N N Logical AND Literal variable The AND operator makes a logical AND link direct address of between the accumulator content and the BOOL BYTE WORD operand or DWORD data types In the case of BYTE WORD and DWORD data types the link is made bit by bit Example In the example Dis 1 if A B and C are 1 LD A AND B AND C ST D OR N N Logical OR Literal variable The OR operator makes a logical OR link between direct address of the accumulator content and the operand BOOL BYTE WORD In the case of BYTE WORD and DWORD data types or DWORD data types the link is made bit by bit Example In the example D is 1 if A or B are 1 and Cis 1 LD A OR B OR C ST D 35006144 07 2011 461 Instruction List IL Operator Modifier Meaning Operands Description XOR N N Logical Literal variable The XOR operator makes a logical exclusive OR exclusive OR direct address of link between the accumulator content and the BOOL BYTE WORD operand or DWORD data types If more than two operands are linked the result with an uneven number of 1 states is 1 and is 0 with an even number of 1 states In the case of BYTE WORD and DWORD data types the link is made bit by bit Example In the example D is 1 if Aor Bis 1 If A and B have the same status both 0 or 1 Dis 0 LDA XOR B ST D If more than two operands are l
4. Section Topic Page 3 1 Description of Tasks and Processes 70 3 2 Description of Sections and Subroutines 76 3 3 Mono Task Execution 81 3 4 Multitasking Execution 89 35006144 07 2011 69 Program Structure 3 1 Description of Tasks and Processes Subject of this Section This section describes the tasks and processes that comprise the application program What s in this Section This section contains the following topics Topic Page Presentation of the Master Task 71 Presentation of the Fast Task 72 Presentation of Auxiliary Tasks 73 Overview of Event Processing 75 70 35006144 07 2011 Program Structure Presentation of the Master Task General Structure Execution Control The master task represents the main task of the application program It is obligatory and created by default The master task MAST is made up of sections and subroutines Each section of the master task is programmed in the following languages LD FBD IL ST or SFC The subroutines are programmed in LD FBD IL or ST and are called in the task sections NOTE SFC can be used only in the master task sections The number of sections programmed in SFC is unlimited You can choose the type of master task execution e cyclic default selection e or periodic 1 to 255ms The master task can be controlled by program by bits and system words
5. Topic Page Capabilities of Unity Pro 18 User Interface 22 Project Browser 24 User Application and Project File Formats 25 Configurator 29 Data Editor 32 Program Editor 40 Function Block Diagram FBD 43 Ladder Diagram LD Language 45 General Information about SFC Sequence Language 47 Instruction List IL 50 Structured Text ST 51 PLC Simulator 52 Export Import 53 User Documentation 54 Debug Services 55 Diagnostic Viewer 62 Operator Screen 63 35006144 07 2011 17 Presentation Capabilities of Unity Pro Hardware Platforms Unity Pro supports the following hardware platforms e Modicon M340 e Premium e Atrium e Quantum Programming Languages Block Libraries Unity Pro provides the following programming languages for creating the user program e Function Block Diagram FBD Ladder Diagram LD language Instruction List IL Structured Text ST Sequential Control SFC All of these programming languages can be used together in the same project All these languages conform to IEC 61131 3 The blocks that are included in the delivery of Unity Pro extensive block libraries extend from blocks for simple Boolean operations through blocks for strings and array operations to blocks for controlling complex control loops For a better overview the different blocks are arranged in libraries which are then broken down into families The blocks can be used in the programming languages FBD LD
6. Topic Page General 228 General Overview of the Data Type Families 229 Overview of Data Instances 231 Overview of the Data References 233 Syntax Rules for Type Instance Names 234 35006144 07 2011 227 General Overview of Data General Introduction A data item designates an object which can beinstantiated such as e avariable e a function block Data is defined in three phases These are e the data types phase which specifies the following e its category e its format e the data instances phase which defines its storage location and property which is e located or e unlocated e the data references phase which defines its means of access e by immediate value e by name e by address Illustration The following are the three phases that characterize the data Instantiate Reference Instantiating a data item consists in allocating it a memory slot according to its type Referencing a data item consists in defining a reference for it name address etc allowing it to be accessed in the memory 228 35006144 07 2011 General Overview of Data General Overview of the Data Type Families Introduction A data type is a piece of software information which specifies for a data item its structure its format a list of its attributes its behavior These properties are shared by all instances of the data type Illustration The data type families are filed in dif
7. Topic Page Instructions 509 Assignment 510 Select Instruction IF THEN END_IF 513 Select Instruction ELSE 514 Select Instruction ELSIF THEN 515 Select Instruction CASE OF END_CASE 516 Repeat Instruction FOR TO BY DO END_FOR 517 Repeat Instruction WHILE DO END_WHILE 520 Repeat Instruction REPEAT UNTIL END_REPEAT 521 Repeat Instruction EXIT 522 Subroutine Call 523 RETURN 524 Empty Instruction 525 Labels and Jumps 526 Comment 527 508 35006144 07 2011 Structured Text ST Instructions Description Instructions are the Commands of the ST programming language Instructions must be terminated with semicolons Several instructions separated by semicolons can be present in one line A single semicolon represents an Empty instruction see page 525 35006144 07 2011 509 Structured Text ST Assignment Introduction When an assignment is performed the current value of a single or multi element variable is replaced by the result of the evaluation of the expression An assignment consists of a variable specification on the left side followed by the assignment operator followed by the expression to be evaluated Both variables left and right sides of the assignment operator must have the same data type Arrays are a special case After being explicitly enabled assignment of two arrays with different lengths can be made Assigning the Value of a
8. System objects Description SWO Task period S30 Master task activation S11 Watchdog error S19 Period overrun SW27 Number of ms spent in the system during the last Mast cycle SW28 Maximum overhead time in ms for Modicon M340 SW29 Minimum overhead time in ms for Modicon M340 SW30 Execution time in ms of the last cycle SW31 Execution time in ms of the longest cycle SW32 Execution time in ms of the shortest cycle 35006144 07 2011 71 Program Structure Presentation of the Fast Task General The fast task is intended for short duration and periodic processing tasks Structure The fast task FAST is made up of sections and subroutines Each section of the fast task is programmed in one of the following languages LD FBD IL or ST SFC language cannot be used in the sections of a fast task Subroutines are programmed in LD FBD IL or ST language and are called in the task sections Execution The execution of the fast task is periodic It is higher priority than the master task The period of the fast task FAST is fixed by configuration from 1 to 255ms The executed program must however remain short to avoid the overflow of lower priority tasks Control The fast task can be controlled by program by bits and system words System objects Description SW1 Task period S31 Fast task activation S11 Watchdog error S19 Peri
9. 40 35006144 07 2011 Presentation Tasks Unity Pro supports multiple tasks Multitasking The tasks are executed parallel and independently of each other whereby the execution priorities are controlled by the PLC The tasks can be adjusted to meet various requirements and are therefore a powerful instrument for structuring the project A multitask project can be constructed from e A Master task MAST The Master task is executed cyclically or periodically It forms the main section of the program and is executed sequentially e A Fast task FAST The Fast task is executed periodically It has a higher priority than the Master task The Fast task is used for processes that are executed quickly and periodically e One to four AUX task s The AUX tasks are executed periodically They are used for slow processing and have the lowest priority The project can also be constructed with a single task In this case only the Master task is active Event Processing Event processing takes place in event sections Event sections are executed with higher priority than the sections of all other tasks They are suited to processing that requires very short reaction times after an event is triggered The following section types are available for event processing e Sections for processing time controlled events Timerx Section e Sections for processing hardware controlled events Evtx Section The following programmi
10. EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error ACI030 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ACI040 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ACI040 E_EFB_CURRENT_MODE_ F 30197 16 8A0B EFB error Current mode is not NOT_ALLOWED allowed 35006144 07 2011 617 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state value in value in in Dec Hex case of error ACO020 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ACO130 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ACO130 E _EFB_CURRENT_MODE_ F 30197 16 8A0B EFB error Current mode is not NOT_ALLOWED allowed All330 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration All330 E EFB_ILLEGAL_CONFIG F 30198 16 8A0A EFB error Illegal configuration data DATA All33010 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration All33010 E _EFB_CURRENT_MODE_ F 30197 16 8A0B EFB error Current mode is not NOT_ALLOWED allowed AlO330 E _EFB_NOT_CONFIGURED F 30188 16 8A14 EFB config
11. Table No Feature No Feature description 59 1 Left power rail 2 Right power rail 60 1 Horizontal link 2 Vertical link 61 1 Normally open contact vertical bar Note page 658 3 Normally closed contact vertical bar Note page 658 5 Positive transition sensing contact vertical bar Note page 658 7 Negative transition sensing contact vertical bar Note page 658 62 1 Coil 2 Negated coil 3 SET latch coil 4 RESET unlatch coil 8 Positive transition sensing coil 9 Negative transition sensing coil Note Only graphical representation 658 35006144 07 2011 IEC Compliance Implementation dependent parameters Implementation dependent parameters IEC compliance table for implementation dependent parameters Parameters Limitations Behavior Maximum length of identifiers 32 characters Maximum comment length Within the Unity Pro 1024 characters for each editor object Import limited by XML constraints or UDBString usage in the persistent layer Syntax and semantics of pragmas Unity V1 0 only implements 1 pragma used for legacy convertor ConvError error text any other pragma construct is ignored a warning message is given Syntax and semantics for the use of the double quote character when a particular implementation supports Feature 4 but not Feature 2 of Table 5 2 of table 5 is supported Range of values and precision o
12. 1111 unused Example of coding using a 16 bit format Decimal value 2 4 5 0 2450 Binary value 0010 0100 0101 0000 248 35006144 07 2011 Data Types Example of coding using a 32 bit format Data Types in BCD Format Decimal value 7 8 9 9 3 0 1 6 78993016 Binary value 0111 1000 1001 1001 0011 0000 0001 0110 Three data types Type Designation Scale bits Default value DATE Date 32 D 1990 01 01 TIME_OF_DAY Time of day 32 TOD 00 00 00 DATE_AND_TIME_ Date and Time 64 DT 1990 01 01 00 00 00 35006144 07 2011 249 Data Types The Date Type At a Glance Syntax Rules The Date type in 32 bit format contains the following information e the year coded in a 16 bit field 4 most significant half bytes e the month coded in an 8 bit field 2 half bytes e the day coded in an 8 bit field 2 least significant half bytes Representation in BCD format of the date 2001 09 20 Year 2001 Month 09 Day 20 0010 0000 0000 0001 0000 1001 0010 0000 The Date type is entered as follows D lt Year gt lt Month gt lt Day gt This table shows the lower upper limits in each field Field Limits Comment Year 1990 2099 Month 01 12 The left 0 is always displayed but can be omitted at the time of entry Day 01 31
13. Token 1 S_4_ 3 Token 2 S_4 1 If Then If Then Step S_4 3 is processed Step s_4 1 is processed If transition condition then a sequence runs b is true tos 4 3 If step S_4 3 is still active token 1 during the activation by token 2 then token 2 is ended and the string will continue to be processed as Single Token If step S_4 3 is no longer active token 1 because of the activation by token 2 then it is reactivated by token 2 and both tokens continue running parallel Multi Token In both cases true transition condition d causes the parallel string to be left Leaving a Parallel String with an Alternative Branch Leaving a Parallel String with an Alternative Branch a _3 1 _3 2 b c 34 _3_5 m d e S_3_6 446 35006144 07 2011 SFC Sequence Language If Then If the transition condition a is true then a sequence runs toS 3 lands 3 2 IfstepsS_ 3 lands 3 2 are activated then the strings run independently of one another If transition condition b is false and c is true then a sequence runs toS 3 5 A second token is created by the sequence running on the alternative branch out of the parallel string Both tokens are running parallel to one another i e S_3 lands 3 5 are active at the same time Token 1 S_3_1 Token 2 S_3_5 If
14. e 1 sets PLC A to ONLINE mode e SW60 2 e 0 sets PLC B to OFFLINE mode 1 sets PLC B to ONLINE mode NOTE The Primary CPU controller goes to RUN Offline only if the secondary CPU is RUN Standby At Startup of the Secondary PLC the secondary CPU goes to Online mode RUN Standby only if both bits SW60 1 and SW60 2 are set to 1 regardless of A B assignment If bits SW60 1 and SWE60 2 are set to 0 simultaneously a switchover occurs e Primary controller goes RUN Offline and e Standby controller now operates as RUN Primary To complete the switchover bits SW60 1 and SW60 2 must be set back to 1 This makes the Offline CPU going back to Online mode Run Standby The OFFLINE ONLINE mode controlled by the SW60 1 and SW60 2 bits is not linked to the LCD Keypad ONLINE OFFLINE mode see Modicon Quantum Hot Standby System User Manual ssw60 3 O If an application mismatch is detected Standby CPU is forced to OFFLINE mode e 1 Standby CPU operates normally even if a mismatch occurs SW60 4 0 authorizes an update of the firmware only after the application has stopped e 1 authorizes an update of the firmware without the application stopping e SW60 5 1 application transfer request from the Standby to the primary SW60 8 e 0 address switch on Modbus port 1 during a primary swap e 1 no address switch on Modbus port 1 during a primary swap Word Function Description Initial Symbol
15. Topic Page Alternative Branches and Alternative Joints 418 Parallel Branch and Parallel Joint 419 35006144 07 2011 417 SFC Sequence Language Alternative Branches and Alternative Joints Introduction The alternative branch offers the possibility to program branches conditionally in the control flow of the SFC structure With alternative branches as many transitions follow a step under the horizontal line as there are different processes All alternative branches are run together into a single branch again with alternative joints or Jumps see page 415 where they are processed further Example of an Alternative Sequence Example of an Alternative Sequence S_5_10 re a b c S_5_11 S_5_12 S _5_13 a a d e f S_5_14 S_5_16 S_5_15 Sas ae g h gt S_5_16 Properties of an Alternative Sequence The properties of an alternative sequence mainly depend on whether the sequence control is operating in single token or multi token mode See e Properties of an Alternative Sequence in Single Token see page 423 e Properties of an Alternative Sequence in Multi Token see page 435 418 35006144 07 2011 SFC Sequence Language Parallel Branch and Parallel Joint Introduction With parallel branches switching a single transition leads to a parallel activation of more than one maximum 32 step branches
16. 0 00 2 c eee eee eee Presentation of the Fast Task Presentation of Auxiliary Tasks Overview of Event Processing 67 67 69 70 71 72 73 75 35006144 07 2011 3 2 3 3 3 4 Chapter 4 41 4 2 Chapter 5 5 1 5 2 5 3 Chapter 6 6 1 Description of Sections and Subroutines 20005 Description of Sections 0 00 cee Description of SFC sections 0 00000 eee eee Description of Subroutines 0 0 0 0 Mono Task Execution 0 00000 cece eee Description of the Master Task Cycle 000 cee eee eee Mono Task Cyclic Execution 0 0 0 0 cece eee ee Periodic Execution a a a a eee Control of Cycle Time 0 e ects Execution of Quantum Sections with Remote Inputs Outputs Multitasking Execution 0 2 0 eee Multitasking Software Structure 1 0 0 0 eee eee Sequencing of Tasks in a Multitasking Structure Task Controls lt cece S c8 peeve twee Wee eee SEE SY Ped See a ED EN Assignment of Input Output Channels to Master Fast and Auxiliary Tasks Management of Event Processing 0 e eee e eee eee Execution of TIMER type Event Processing 05 Input Output Exchanges in Event Processing How to Program Event Processing 0s eee ee eee ees Application Memory Structure 200000 Memory Structure of the Premium Atrium and
17. MW106 2 byte MW103 15t byte MW106 24 byte Reserved for the alignment of variable Master_offset on even bytes MW108 15t byte sMW107 15t byte Master_offset DINT MW110 15t byte MW109 15t byte Follower_offset INT MW111 entire word Reserved for the alignment 274 35006144 07 2011 Data Types Overview of Input Output Derived Data Types lIODDT At a Glance The IODDTs Input Output Derived Data Types are predefined by the manufacturer and contain language objects of the EDT family belonging to the channel of an application specific module Illustration IODDT structures fe So s The IODDT types are structures whose size the number of elements of which they are composed depends on the channel or the input output module that they represent A given input output module can have more than one IODDT The difference with a conventional structure is that e the IODDT structure is predefined by the manufacturer e The elements comprising the IODDT structure do not have a contiguous memory allocation but rather a specific address in the module 35006144 07 2011 275 Data Types Examples IODDT structure for an input output channel of an analog module ANA_IN_GEN ANA_IN_ GEN type structure Value INT Input value Err BOOL Channel error Access to the data of an instance of the ANA_IN_GE
18. e For function blocks Instance name formal parameter for the source of the connection FBI_2 4 1 2 TON AND IN OUT FBI _20UT gt gt INI OUT H PT ET gt FBI_2OUT IN2 35006144 07 2011 337 Function Block Language FBD Text Object Description Text can be positioned as text objects using FBD Function Block language The size of these text objects depends on the length of the text The size of the object depending on the size of the text can be extended vertically and horizontally to fill further grid units Text objects may not overlap with FFBs however they may overlap with links 338 35006144 07 2011 Function Block Language FBD Execution Sequence of the FFBs Introduction The execution sequence is determined by the position of the FFBs within the section executed from left to right and from top to bottom If the FFBs are then linked graphically the execution sequence is determined by the signal flow The execution sequence is indicated by the execution number number in the top right corner of the FFB frame Execution Sequence on Networks For network execution sequences the following rules apply Executing a section is completed network by network based on the FFB links from above and below Links may not be used to create loops since the sequence of execution in this case cannot be clearly determined Loops must be created using actual parameters see
19. 35006144 07 2011 19 Presentation tics Unity Pro S Unity Pro M Unity Pro L Unity Pro XL Unity Pro XLS Memory card file 2 management li brary General information Create and use 2 data structures DDTs Create and use 2 Derived Function Blocks DFBs Project browser with structural and or functional view Managing ac cess rights Operator screen Diagnostic viewer System diagnos tics Project diagnos 2 Application con verter PL7 converter PL7 converter Concept Converter PL7 converter Concept Converter PL7 converter Concept Converter Managing multi stations Supported platforms Modicon M340 BMX P34 1000 BMX P34 20 BMX P34 1000 BMX P34 20 BMX P34 1000 BMX P34 20 BMX P34 1000 BMX P34 20 BMX P34 1000 BMX P34 20 Premium P57 0244M P57 CA 0244M P57 CD 0244M P57 104M P57 154M P57 1634M P57 204M P57 254M P57 2634M H57 24M All CPUs except P57 554M P57 5634M All CPUs All CPUs 20 35006144 07 2011 Presentation Unity Pro S Unity Pro M Unity Pro L Unity Pro XL Unity Pro XLS Quantum 140 CPU 311 10 CPU 311 10 CPU 311 10 140 CPU 434 12 U A CPU 534 14 U A CPU 434 12 U A 140 CPU 534 14 U A CPU 651 50 CPU 534 14 U A Upgr
20. 424 35006144 07 2011 SFC Sequence Language Sequence Loop A sequence loop is a special type of alternative branch with which one or more branches lead back to a previous step A sequence loop can be made with jumps or with links Sequence loop S111 S111 az a a gt A S_1_12 S_1_12 Le el AEE a a Le el b c d A b c d 8 1 13 S_1_14 S 111 _1_13 S_1_14 be el a a e f e f S_1_15 S_1_12 S_1_15 T If Then If transition condition a is true then a sequence runs from S_1 11 to Seat 10 If transition condition b is true then a sequence runs from S_1 12 to S113 If transition condition b is false and c is true then a sequence runs from s_1 12 to s 1 14 If transition condition f is true then a jump is made from s_1_ 14 back to S 2 until transition condition b is true or c is false and d is true The loop from s_1_12 by means of transition conditions c and f backtoS 1 12 is repeated 35006144 07 2011 425 SFC Sequence Language If Then If transition conditions b and c are false and then a jump is made from s_1_12 directly d is true backtos 1 11 The loop from s_1 11toS_1 12 and back to s_1_11 via transition conditions a and dis repeated until transition condition b or c is true
21. Measurement of times MAST FAST AUXO AUX1 AUX2 AUX3 Current SSW30 3SW33 SSW36 SSW39 SSW42 3SW45 Maximum SSW31 3SW34 SSW37 SSW40 SSW43 SSW46 Minimum SSW32 3SW35 SSW38 SSW41 SSW44 SSW47 NOTE The maximum and minimum times are taken from the times measured since the last cold restart 94 35006144 07 2011 Program Structure Task Periods Watchdog The task periods are defined in the task properties They can be modified by the following system words System words Task Values Default values Observations SSwWo MAST 0 255ms Cyclic 0 cyclic operation SSW1 FAST 1 255ms 5ms SSW2 AUX0O 10ms 2 55s 100ms The values of the period are SSW3 AUX1 10ms 2 55s 200ms exprassedin OMS SSw4 AUX2 10ms 2 55s 300ms SSW5 AUX3 10ms 2 55s 400ms When the cycle time of the task exceeds the period the system sets the system bit S19 of the task to 1 and continues with the following cycle NOTE The values of the periods do not depend on the priority of tasks It is possible to define the period of a fast task which is larger than the master task The execution of each task is controlled by a configurable watchdog by using the task properties The following table gives the range of watchdog values for each of the tasks Tasks Watchdog values Default watchdog Associated system word min max ms value
22. Formal Call With formal calls call with formal parameter names the procedures are called using an instruction sequence made from the procedure name followed by a bracketed list of actual parameter assignments to the formal parameters The assignment of the input formal parameter is made using the assignment and the output formal parameter is made using the gt assignment The sequence in which the input formal parameters and output formal parameters are enumerated is not significant EN and ENO can be used for this type of call Calling a procedure with formal parameter names Procedure Name Formal Parameters Inputs Formal Parameters Outputs ot ee oa ROC IN1 varil IN2 var2 OUT1 gt resultl1 OUT2 gt result2 A ae Actual Parameters Inputs Actual Parameters Outputs Calling the same procedure in FBD PROC vari IN1 OUT1 resultl var2 IN2 OUT2 result2 With formal calls it is not necessary to assign a value to all formal parameters see also Parameter page 544 PROC IN1 varl OUT1 gt result1 OUT2 gt result2 Calling the same procedure in FBD PROC vari jIN1 OUT1 result1 IN2 OUT2 result2 546 35006144 07 2011 Structured Text ST Informal Call With informal calls call without formal parameter names procedures are called using an instruction made from the procedure name followed by a bracketed list of
23. Infinite sequence loops are not permitted within an alternative sequence Infinite sequence loops S14 S_1_1 ai a b c a b c gt gt S12 13 14 _1_2 _1_3 S_1_4 A d e f d e f S15 S14 1 3 S_1_5 o_o a g g S_1_6 S_1_6 If Then If transition condition b is true then a sequence runs froms_1 1toS_ 1 3 If transition condition e is true then a jump is made to S_1_4 If transition condition f is true then a jump is made tos _1_3 The loop from s 1 3 via transition condition e to S_1_4 via transition condition f and a jump back to S_1 3 again is now repeated infinitely 426 35006144 07 2011 SFC Sequence Language Parallel Strings Parallel Strings With parallel branches switching a single transition leads to a parallel activation of more than one maximum 32 steps branches This applies with Single Token as well as with Multi Token Processing Parallel Strings 1 S_5_10 S_5_14 S_5_15 S_5_16 Then IfS_5 10 is active and transition condition a which belongs to the common transition is also true then a sequence runs from S_5_ 10 to Ss 5 11 8 5 12ands_5_
24. 1 not authorized for BOOL and EBOOL type data 2 must be completed during the execution of the EFB and not usable outside the EFB Initial Values for an Element Belonging to a DFB This table specifies whether the initial values can be entered from the DFB type definition or the DFB instance Element of the DFB From the DFB type From the DFB instance Input data no ANY type Yes Yes Input data of ANY type No No Input output data No No Output data no ANY type Yes Yes Output data of ANY type No No Public data Yes Yes Private data Yes No Initial Values for an Element Belonging to an EFB This table specifies whether the initial values can be entered from the EFB type definition or the EFB instance Element of the EFB From the EFB type From the DFB instance Input data no ANY type Yes Yes See generic data types see page 285 Input data of ANY type No No Input output data No No 35006144 07 2011 283 Data Types Element of the EFB From the EFB type From the DFB instance Output data no ANY type Yes Yes Output data of ANY type No No Public data Yes Yes Private data Yes No A WARNING UNEXPECTED APPLICATION BEHAVIOR INVALID ARRAY INDEX When using EFBs and DFBs on variables of array type only use arrays with starting index 0 Failure to follow these instructions
25. 8 9 Data Types Belonging to Sequential Function Charts SFC Overview of the Data Types of the Sequential Function Chart Family Introduction The Sequential Function Chart SFC data type family includes derived data types such as the structures that restore the properties and status of the chart and its component actions Each step is represented by two structures These are e the SFCSTEP_STATE structure e the SFCSTEP_TIMES structure Illustration SFC a a Step 1 Step N NOTE The two structure types SECSTEP_STATE and SFCSTEP_TIMES are also linked to each Macro step of the sequential function chart Definition of the SFCSTEP_STATE Structure Type This structure includes all types of data linked to the status of the step or of the Macro step These data types are e x BOOL elementary data type EDT containing the value TRUE when the step is active e t TIME elementary data type EDT containing the activity time of the step When deactivated the step value is maintained until the next activation 35006144 07 2011 287 Data Types e tminErr BOOL elementary data type EDT containing the value TRUE if the activity time of the step is less than the minimum programmed activity time e tmaxErr BOOL elementary data type EDT containing the value TRUE if the activity time of the step is greater than the maximum programmed activity time These data types are accessible from the application in read only
26. Actual Parameters Outputs Procedure Name Calling the same procedure in FBD PROC varl IN1 OUT1 result var2 IN2 OUT2 result2 NOTE Note that when making an informal call the list of actual parameters cannot be put in brackets IEC 61133 3 requires that the brackets be left out in this case to illustrate that the first actual parameter is not a part of the list 492 35006144 07 2011 Instruction List IL Invalid informal call for a procedure LD A LIMIT B C If the value to be processed first actual parameter is already in the accumulator the load instruction can be omitted EXAMP1 var2 resultl result2 Informal Call with CAL Instruction With this type of call procedures are called using an instruction sequence consisting of the CAL instruction followed by the procedure name followed by a list of the input and output actual parameters The order in which the actual parameters are listed is significant The list of actual parameters cannot be wrapped EN and ENO cannot be used for this type of call Calling a procedure with formal parameter names using CAL instruction Actual Parameters Inputs CAL PROC varl var2 resultl result2 N Actual Parameters Outputs Procedure Name or CAL PROC varl var2 resultl result2 Calling the same procedure in FBD PROC varli JIN1 OUT1 result var2 IN2 OUT2 result2 NOT
27. 35006144 07 2011 665 IEC Compliance B 4 Textual language syntax Textual Language Syntax Description The Unity Pro V1 0 programming environment does not yet provide support for an import or export of text files complying with the full textual language syntax as specified in Annex B of IEC 61131 3 2nd Edition However the textual syntax of the IL and ST languages as specified in Annex B 2 and B 3 of IEC 61131 3 2nd Edition including all directly and indirectly referenced productions out of Annex B 1 is supported in textual language sections Those syntax productions in Annex B of IEC 61131 3 2nd Edition belonging to features which are not supported by Unity Pro according to the compliance tables see page 642 are not implemented 666 35006144 07 2011 Glossary l ID IF IW 0 9 According to the IEC standard 1 indicates a discrete input type language object According to the IEC standard Mw indicates an input double word type language object Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt S3KF lt i gt SQF IF by using their topological address for example SMD0 6 0 11 3MFO 6 0 31 According to the IEC standard mw indicates an input real type language object Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt S3KF lt i gt SOF IF by using their
28. Data Types 8 10 Compatibility Between Data Types Compatibility Between Data Types Introduction The following is a presentation of the different rules of compatibility between types within each of the following families the Elementary Data Type EDT family the Derived Data Type DDT family the Generic Data Type GDT family The Elementary Data Type EDT Family The Elementary Data Type EDT family contains the following sub families the binary format data type sub family the BCD format data type sub family the Real format data type sub family the character string format data type sub family the bit string format data type sub family There is no compatibility whatsoever between two data types even if they belong to the same sub family Derived Data Type DDT Family The Derived Data Type DDT family contains the following sub families the table type sub family the structure type sub family e structures concerning input output data IODDT e structures concerning other data 35006144 07 2011 289 Data Types Rules concerning the structures Two structures are compatible if their elements are e of the same e of the same e organized in the same order name type There are four types of structure ELEMENT 1 My Element INT Other Element BOOL ELEMENT_1 type structure ELEMENT 2 My Elemen t INT Other Element BOOL ELEMENT 2 ELEMENT 3 Element ELEMENT 3
29. Data content Representation in one of the bases 00000000000010101101110011011110 16 ADCDE 00000000000000010000000000000000 8 200000 00000000000010101011110011011110 2 10101011110011011110 264 35006144 07 2011 Data Types 8 6 Derived Data Types DDT IODDT Subject of this Section This section presents Derived Data Types These are e tables DDT e structures e structures concerning input output data IODDT e structures concerning other data DDT What s in this Section This section contains the following topics Topic Page Arrays 266 Structures 269 Overview of the Derived Data Type family DDT 270 DDT Mapping Rules 272 Overview of Input Output Derived Data Types IODDT 275 35006144 07 2011 265 Data Types Arrays What Is an Array Characteristics It is a data item that contains a set of data of the same type such as e elementary data EDT for example e a group of BOOL words e a group of UINT integer words e etc e derived data DDT for example e a group of WORD tables e a group of structures e etc An array is characterized by two parameters a parameter which defines its organization array dimension s e a parameter that defines the type of data it contains NOTE The most complex organization is the array with six dimensions The syntax comprising these two parameters is ARRAY l
30. IX1 5 4 D c DeP V 1b IX1 5 5 gt al A Crossing Literals Topological Link Addresses XOR Error2 EN ENO ae or Result IN4 gt Left Power Rail va Right Power Rail Objects The objects of the LD programming language help to divide a section into a number of e Contacts see page 351 e Coils see page 352 e EFs and EFBs Elementary Functions see page 354 and Elementary Function Blocks see page 355 35006144 07 2011 349 Ladder Diagram LD DFBs Derived Function Blocks see page 356 Procedures see page 356 Control Elements see page 364 and Operation and Comparison blocks see page 365 that represent an extension to IEC 61131 3 These objects can be connected with each other by means of e Links see page 367 or e Actual Parameters see page 357 FFBs only Comments regarding the section logic can be provided using text objects see Text Object page 370 Section Size One LD section consists of a window containing a single page This page has a grid that divides the section into rows and columns A width of 11 64 columns and 17 2000 lines can be defined for LD sections The LD programming language is cell oriented i e only one object can be placed in each cell Processing Sequence The processing sequence of the individual objects in an LD section is determined by the data flow within the section Networks connected to the left power rail are processed from
31. Introduction The following tables show the error codes and error values created for the EFBs sort by library and family What s in this Chapter This chapter contains the following topics Topic Page Tables of Error Codes for the Base Library 604 Tables of Error Codes for the Diagnostics Library 606 Tables of Error Codes for the Communication Library 607 Tables of Error Codes for the IO Management Library 611 Tables of Error Codes for the CONT_CTL Library 620 Tables of Error Codes for the Motion Library 627 Tables of Error Codes for the Obsolete Library 629 Common Floating Point Errors 637 35006144 07 2011 603 EFB Error Codes and Values Tables of Error Codes for the Base Library Introduction The following tables show the error codes and error values created for the EFBs of the Base Library Date amp Time Table of error codes and errors values created for EFBs of the Date amp Time family EFB name Error code ENO Error Error Error description state value in value in in Dec Hex case of error DIVTIME E_DIVIDE_BY_ZERO F 30176 16 8A20 Divide by zero DIVTIME E_NEGATIVE_INPUT_ F 30177 16 8A1F A negative value FOR_TIME_OPERATION cannot be converted to data type TIME DIVTIME E_ARITHMETIC_ ERROR 30170 16 8A26 Arithmetic error DIVTIME E_ERR_ARITHMETIC 30003 16 8ACD Arithmetic overflow S18 set DIVTIME FP_ER
32. When this bit is set to 1 the asynchronous communication requests processed in the monitoring task are entirely executed without interruption from the other MAST or FAST tasks thus ensuring the data is read or written consistently Reminder the request server of the monitoring task is addressed via gate 7 X Way NO YES NO 35006144 07 2011 165 System Objects Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S92 EXCHGTIME Measurement mode of the communication function Normally set to 0 this bit can be set to 1 by the user to set communication functions to performance measurement mode The communication functions time out parameter see Unity Pro Communication Block Library in the management table then displays the round trip exchange time in milliseconds Note The communication functions are executed with a time base of 100 ms 0 YES YES NO S94 SAVECURRVAL Saving adjustment values Normally at 0 this bit can be set to 1 by the user to replace the initial values of the declared variables with a Save attribute e g DFB variables with the current values For Modicon M340 on a S94 rising edge the internal RAM and the memory card content are different S96 0 and the CARDERR LED is on On cold start the current values are replaced by the most recent initial
33. 0 YES YES YES except for safety PLCs S16 IOERRTSK Task in put output fault Normally set to 1 this bit is set to 0 by the system when a fault on an in rack module or device on Fipio is detected e g non compliant configuration exchange fault hardware fault etc This bit must be reset to 1 by the user YES YES YES 4 CAUTION UNEXPECTED APPLICATION BEHAVIOR SPECIFIC VARIABLE BEHAVIOR On Quantum network communication errors with remote devices detected by communication modules NOM NOE NWM CRA CRP and motion modules MMS are not reported on bits S10 S16 and S119 Failure to follow these instructions can result in injury or equipment damage 154 35006144 07 2011 System Objects Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S17 CARRY Rotate shift output Normally at 0 During a rotate shift operation this bit takes the state of the outgoing bit 0 YES YES YES S18 OVERFLOW Overflow or arithmetic error Normally set to 0 this bit is set to 1 in the event of a capacity overflow if there is a result greater than 32 767 or less than 32 768 in single length result greater than 65 535 in unsigned integer aresult greater than 2 147 483 647 or less than 2 147 483 648 in double length result greater than 4
34. Element Name Data type Description StepName t TIME Current dwell time in the step If the step is deactivated the value of this element is retained until the step is activated again StepName x BOOL 1 Step active 0 Step inactive StepName tminErr BOOL This element is a supplement to IEC 61131 1 Underflow of minimum supervision time 0 No underflow of minimum supervision tim e Ifthe step is activated again e lf the sequence control is reset 3 e The element is automatically reset in the following cases e f the command button Reset Time Error is activated StepName tmaxErr BOOL This element is a supplement to IEC 61131 1 Overflow of maximum supervision time e Ifthe step is exited e lf the sequence control is reset 3 0 No overflow of maximum supervision time The element is automatically reset in the following cases f the command button Reset Time Error is activated 35006144 07 2011 399 SFC Sequence Language Macro Steps and Macro Sections Macro Step Macro steps are used for calling macro sections and thus for hierarchical structuring of sequential controls Representation of a Macro Step TEE T Macro steps have the following properties e Macro steps can be positioned in Sequence Control sections and in macro sections e The number of macro steps is unlimited e The nesting depth i e mac
35. Forcing Bits Anytime the value bit of A equals 0 and the history bit equals 1 B is set to 1 fora cycle cycle 2 and 8 0 82 4 68 41 A Value bit l t 7 a al A History Bit B Value bit i i z _s When forcing bits the value of the variable determined by the logic will be overwritten by the force value In the example a negative edge of the variable A is supposed to be recognized and B should therefore be set for a cycle A B N oN a Anytime the value bit or force bit of A equals 0 and the history bit equals 1 B is set to 1 for a cycle cycle 1 and 8 0 a2e4 68 687 EO A Value bit m A Force Bit A History Bit B Value bit i 374 35006144 07 2011 Ladder Diagram LD Using BOOL and EBOOL Variables Edge recognition behavior using BOOL or EBOOL variables types can be different e When using a BOOL variable the system manages the history by allowing edge detection during the contact execution e When using an EBOOL variable the history bit is updated during the coil execution The following examples show the different behavior depending on the variable type Variable A is define as BOOL whenever A is set to 1 sMW1 is incremented by 1 A OPERATE MW1 MW1 1 35006144 07 2011 375 Ladder Diagra
36. Topic Page Description of Sections 77 Description of SFC sections 79 Description of Subroutines 80 76 35006144 07 2011 Program Structure Description of Sections Overview of the Sections Sections are autonomous programming entities The identification tags of the instruction lines the contact networks etc are specific to each section no program jump to another section is possible These are programmed either in Ladder language LD Functional block language FBD Instruction List IL Structured Text ST or Sequential Function Charting SFC on condition that the language is accepted in the task The sections are executed in the order of their programming in the browser window structure view An execution condition can be associated with one or more sections in the master fast and auxiliary tasks but not in the event processing tasks The sections are linked to a task The same section cannot belong simultaneously to several tasks Example The following diagram shows a task structured into sections a ara Sections i Airlock k Oven 1 a E Dryer I SR Sections 35006144 07 2011 77 Program Structure Characteristics of a Section The following table describes the characteristics of a section Characteristic Description Name 32 characters maximum accents are possible but spaces are not all
37. ELEMENT 4 type structure INT Other Element BOOL type structure Other Element BOOL My Element INT ELEMENT 4 type structure Compatibility between the structure types Types ELEMENT_1 ELEMENT_2 ELEMENT_3 ELEMENT_4 ELEMENT_1 YES NO NO ELEMENT_2 YES NO NO ELEMENT_3 NO NO NO ELEMENT_4 NO NO NO 290 35006144 07 2011 Data Types Table one q Table one d TAB 3 ARRAY iTable one qd TAB 4 ARRAY Table one qd TAB 5 ARRAY Table two qd Rules concerning the tables Two tables are compatible if e their dimensions and the order of their dimensions are identical e each corresponding dimension is of the same type There are five types of table TAB 1 ARRAY 10 20 OF INT imension of TAB 1 type TAB 2 ARRAY 20 30 OF INT imension of TAB 2 type 20 30 0F INT imension of TAB 3 type 20 30 0F TAB 1 imension of TAB 4 type 20 30 10 20 OF INT imensions of type TAB 5 Compatibility between the table types Type and type are TAB_1 TAB_2 incompatible TAB_2 TAB_3 compatible TAB_4 TAB_5 compatible TAB_4 25 TAB_5 28 compatible 35006144 07 2011 291 Data Types The Generic Data Type GDT Family The Generic Data Type GDT family is made up of groups organized hierarchically which contain data types belonging to the following families e Elementary Data Types EDT e Derived
38. Function block DFB instances can be called multiple times other than instances of communication EFBs these can only be called once Calling the same function block DFB instance more than once makes sense for example in the following cases e f the function block DFB has no internal value or it is not required for further processing In this case memory is saved by calling the same function block DFB instance more than once since the code for the function block DFB is only loaded one time The function block DFB is then handled like a Function e f the function block DFB has an internal value and this is supposed to influence various program segments for example the value of a counter should be increased in different parts of the program In this case calling the same function block DFB means that temporary results do not have to be saved for further processing in another part of the program EN and ENO With all function blocks DFBs an EN input and an ENO output can be configured If the value of EN is equal to 0 when the function block DFB is called the algorithms defined by the function block DFB are not executed and ENO is set to 0 If the value of EN is equal to 1 when the function block DFB is invoked the algorithms which are defined by the function block DFB will be executed After the algorithms have been executed successfully the value of ENO is set to 1 If an error occurs when executing the
39. Function blocks are often used to read a variable at an input input variables to process it and to output the updated values of the same variable output variables This special type of input output variable is also called a VAR_IN_OUT variable The following special features are to be noted when using function blocks DFBs with VAR_IN_OUT variables e All VAR_IN_OUT inputs must be assigned a variable e VAR_IN_OUT inputs may not have literals or constants assigned to them e VAR_IN_OUT outputs may not have values assigned to them e VAR_IN_OUT variables cannot be used outside the block call Calling a function block with a VAR_IN_OUT variable in IL CAL MY FBLOCK IN1 V1 IN2 V2 I01 V3 OUT1 gt V4 OUT2 gt V5 Calling the same function block in FBD MY_FBLOCK FBLOCK Vi IN1 OUT1 V4 v2 IN2 OUT2 V5 V3 I01 101 V3 VAR_IN_OUT variables cannot be used outside the function block call The following function block calls are therefore invalid Invalid call example 1 LD V1 Loading a V1 variable in the accumulator CAL InOutFB Calling a function block with the VAR_IN_OUT parameter The accumulator now contains a reference to a VAR_IN_OUT parameter AND V2 AND operation on accumulator contents and v2 variable Error The operation cannot be performed since the VAR_IN_OUT parameter accumulator contents cannot be accessed from outside the function block call 564 35006144
40. IODDT Used to indicate that a number overruns the allowed limits For a number of Integers the value ranges shown in gray are as follows p E J E INF 3 4028246 38 1 17549446 38 0 0 1 1754944e 38 3 4028246 38 When a calculation result is e less than 3 402824e 38 the symbol INF for infinite is displayed e greater than 3 402824e 38 the symbol INF for infinite is displayed To instanciate an object is to allocate a memory space whose size depends on the type of object to be instantiated When an object is instantiated it exists and can be manipulated by the program INT is the abbreviation of single integer format coded on 16 bits The lower and upper limits are as follows 2 to the power of 31 to 2 to the power of 31 1 Example 32768 32767 2 1111110001001001 16 9FA4 Integer literal are used to enter integer values in the decimal system The values can have a preceding sign Individual underlines _ between numbers are not significant Example 12 0 123 456 986 IODDT is the abbreviation of Input Output Derived Data Type The term IODDT designates a structured data type representing a module or a channel of a PLC module Each application expert module possesses its own IODDTs 684 35006144 07 2011 Glossary Keyword LD Located variable Macro step Master task Mono Task A keyword is a unique combination of characters used as a syntactical progra
41. Module deliv ers no warn ing status I_PHYS_WARN E_EFB_FILTER_SQRT_NOT_AVAIL 30195 16 8A0D Filter SQRT is not avail able I_PHYS_WARN E_INPUT_VALUE_OUT_OF_RANGE 30183 16 8A19 Input value is out of range I_PHYS_WARN E_EFB_NO_MEASURING_RANGE 30185 16 8A17 Internal error _PHYS_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow I_PHYS_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow I_PHYS_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration _RAW E_EFB_OUT_OF_RANGE 30192 16 8A10 Internal er ror EFB has detected a vi olation e g write exceeds MW 4x boundaries 35006144 07 2011 613 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error de scription _RAW E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration _RAWSIM E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration _SCALE E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow _SCALE E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow _SCALE E_EFB_NOT_CONFIGURED 30188 16 8A14
42. NOTE To avoid this issue the M has to be written at the end of the task to update the old value information The old value is only updated when the M bit is written so if you write the bit only one time the edge detection will be infinite Old Value Current Value Edge Detect Description 0 0 0 state 0 before writing the bit 0 1 1 Write 1 in the bit e g by animation table 0 1 1 If you do not write again the edge remains infinitely 1 1 0 Write 1 again in the bit the old value is updated and the edge detection is set to 0 EBOOL with M written inside program For an EBOOL variable with a M address which is written inside your program you have to adhere to the restrictions described below e Do not use the bit with a SET or RESET coil In this case the old value is not updated So you can perform an infinite edge e Do not write the bit conditionally A simple logic as IF NOT M1 THEN M1 TRUE END ITF leads to an infinite edge because it is written only one time EBOOL with l For an EBOOL variable with a I address you have to adhere to the restriction described below e When using multitasking the test of sI edge must be performed in the task where it is updated The use of the edge detection of a I scheduled in a task of higher priority must be avoided Example If you have a fast task which updates a 31 do not use a edge detection in the mast task Depending on the
43. NOTE Type Array DDTs cannot be assigned this way However Type Structure DDTs may be assigned It is not necessary to assign a value to all formal parameters see also Parameter page 535 MY COUNT CU varl R reset Q gt out CV gt current Calling the same function block in FBD MY_COUNT cTU vari CU Qf out reset 7R PV cv current 35006144 07 2011 539 Structured Text ST Informal Call With informal calls call without Formal parameter names the function block is called using an instruction made from the function block instance names followed by a bracketed list of the actual parameters for the inputs and outputs The order in which the actual parameters are listed in a function block call is significant EN and ENO cannot be used for this type of call Calling a function block without formal parameter names Instance Name Actual Parameter Input MY_COUNT varl reset 100 value out current Actual Parameter Output Calling the same function block in FBD MY_COUNT CTU vari CU QF out reset R 100 value PV cv current With informal calls it is not necessary to assign a value to all formal parameters see also Parameter page 535 This does not apply for VAR_IN_OUT variables for input parameters with dynamic lengths and outputs of type ANY It must always be assigned a variable This is a supplement to IEC 61131 3 and must b
44. Representation Description Set coil XXX Om With set coils the status of the left link is copied onto the right link The relevant Boolean actual parameter indicated by xxx is set to ON if the left link has a status of ON otherwise it remains unchanged The relevant Boolean actual parameter can be reset through the reset coil Also see Edge Recognition page 371 Reset coil XXX lt With reset coils the status of the left link is copied onto the right link The relevant Boolean actual parameter indicated by xxx is set to OFF if the left link has a status of ON otherwise it remains unchanged The relevant Boolean actual parameter can be set through the set coil Also see Edge Recognition page 371 Stop coil XXX With halt coils if the status of the left link is 1 the program execution is stopped immediately With stop coils the status of the left link is not copied to the right link Call coil XXX o With call coils the status of the left link is copied to the right link If the status of the left link is ON then the respective sub program indicated by xxx is called The subroutine to be called must be located in the same task as the calling LD section Subroutines can also be called from within subroutines Subroutines are a supplement to IEC 61131 3 and must be enabled explicitly In SFC action sections call coils subroutine calls are only allo
45. SW75 Timer This word contains the number timer 0 YES YES 1 YES TIMEREVTNB type type events in the queue except event 1 Not available on the following for counter processors TSX 57 19 2e 3 4e 5e safety This word is not available on Quantum PLCs safety PLCs SW76 Diagnos Result of the last registration 0 YES YES YES DLASTREG tics func 0 if the recording was successful tion e 1 if the diagnostics buffer has not recording been configured e 2 if the diagnostics buffer is full 35006144 07 2011 183 System Objects Word Function Description Initial Modicon Premium Quan Symbol state M340 Atrium tum SW77 Diagnos Result of the last de registration 0 YES YES YES DLASTDEREG tics func 0 if the non recording was tion successful non re e 1 if the diagnostics buffer has not cording been configured e 21 if the error identifier is invalid 22 if the error has not been recorded SW78 Diagnos Number of errors currently in the 0 YES YES YES DNBERRBUF tics func diagnostics buffer tion number of errors SW80 Message These words are updated by the 0 YES YES YES MSGCNTO manage system and can also be reset using SW81 ment S80 MSGCNT1 For Premium e sSws0 Number of message sent by the system to the terminal port Uni Telway port e Sw8s1 Number of message received by the system to the terminal port Uni Telway port For Modicon M340 e sS
46. Section at l Motor1 PIL Init Search for selected variable ok Cancel Apply _ Hep The step properties are defined using a dialog box that offers the following features Definition of initial steps e Definition of diagnostics times e Step comments e Allocation of actions and their qualifiers 35006144 07 2011 49 Presentation Instruction List IL Introduction The IL editor is used for instruction list programming according to IEC 61131 3 Representation Representation of an IL section Label Operators Operands Comments Inspection window START LD VarA Key 1 Z ANDN VarB and not key 2 sT Varc Ventilator On LD Varx Undeclared Variable Tooltip S pes E1061 Undefined Symbol VarX Objects An instruction list is composed of a series of instructions Each instruction begins on a new line and consists of e An operator e A modifier if required e One or more operands if required e A label as a jump target if required e Acomment about the logic if required Input Aids The IL editor offers the following input aids e Syntax and semantics are checked as the program is being written e Keywords and comments are displayed in color e Unknown words e g undeclared variables or unsuitable data types are marked with a red wavy line e Brief description of errors in the Quickinfo Tooltip e Tabular display of the functions and function blocks
47. e EN ENO handling with function procedure blocks that only have one link as an output parameter FUNC PROC 1 FUNC PROC 2 EN ENO lEN ENO m OUT INI OUT m2 In2 5 If EN of FUNC_PROC_1 is set to 0 the value of the link on output OUT of FUNC_PROC_1 depends on the project setting Maintain output links on disabled EF available since Unity Pro 4 1 If this project setting is set to 0 the value of the link is set to 0 If this project setting is set to 1 the link maintains the old value it had during the last correctly executed cycle For detailed information please refer to Maintain output links on disabled EF see Unity Pro Operating Modes EN ENO handling with function procedure blocks that have one variable and one link as output parameters FUNC PROC 1 FUNC PROC 2 EN ENO EN ENO INI OUT OUTI INI OUT m2 IN2 If EN of FUNC_PROC_1 is set to 0 the value of the link on output OUT of FUNC_PROC_1 depends on the project setting Maintain output links on disabled EF available since Unity Pro 4 1 If this project setting is set to 0 the value of the link is set to 0 If this project setting is set to 1 the link maintains the old value it had during the last correctly executed cycle For detailed information please refer to Maintain output links on disabled EF see Unity Pro Operating
48. 149 System Objects Description of System Bits S0 to S7 Detailed Description Description of system bits SO to S7 Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S0 COLDSTART Cold start Normally on 0 this bit is set on 1 by power restoral with loss of data battery fault e the user program e the terminal e achange of cartridge This bit is set to 1 during the first complete restored cycle of the PLC either in RUN or in STOP mode It is reset to 0 by the system before the following cycle To detect the first cycle in run after cold start please refer to SW10 In Safe mode this bit is not available on Quantum safety PLCs S0 is not always set in the first scan of the PLC If a signal set for every start of the PLC is needed S21 should be used instead For Premium and Quantum Processing on Cold Start for Premium Quantum PLCs see page 138 For Modicon M340 Processing on Cold Start for Modicon M340 PLCs see page 127 1 1 cycle YES YES YES S1 WARMSTART Warm restart Normally at 0 this bit is set to 1 by e power is restored with data save e the user program e the terminal It is reset to 0 by the system at the end of the first complete cycle and before the outputs are updated This bit is not available on Quantum safety PLCs S1 is not always set in the first scan of the PLC If a si
49. 35006144 07 2011 Glossary Network Operator screen Periodic execution Procedure Protection Mainly used in communication a network is a group of stations which communicate among one another The term network is also used to define a group of intercon nected graphic elements This group forms then a part of a program which may be composed of a group of networks O This is an editor that is integrated into Unity Pro which is used to facilitate the operation of an automated process The user regulates and monitors the operation of the installation and in the event of any problems can act quickly and simply P The master task is executed either cyclically or periodically In periodic mode you determine a specific time period in which the master task must be executed If it is executed under this time a waiting time is generated before the next cycle If it is executed over this time a control system indicates the overrun If the overrun is too high the PLC is stopped Procedures are functions view technically The only difference to elementary functions is that procedures can take up more than one output and they support data type VAR_IN_OUT To the eye procedures are no different than elementary functions Procedures are a supplement to IEC 61131 3 Option preventing the contents of a program element to be read read protected or to write or modify the contents of a program element read write protected
50. Addition overflow AVE E_ARITHMETIC_ ERROR_BIG_PAR F 30171 16 8A25 Arithmetic error Parameter exceeds range AVE E_ARITHMETIC_ERROR_UNSIGN_OV F 30174 16 8A22 Arithmetic error Unsigned overflow MAX FP_ERROR F See table Common Floating Point Errors page 637 MIN FP_ERROR F See table Common Floating Point Errors page 637 MUX E_SELECTOR_OUT_OF_RANGE F 30175 16 8A21 Selector is out of range 35006144 07 2011 605 EFB Error Codes and Values Tables of Error Codes for the Diagnostics Library Introduction Diagnostics The following tables show the error codes and error values created for the EFBs of the Diagnostics Library Table of error codes and errors values created for EFBs of the Diagnostics family EFB name Error code ENO state in case of error Error value in Dec Error value in Hex Error description ONLEVT E_EFB_ONLEVT T F 30196 16 8A0C Error of EFB ONLEVT e True Error registration OK e False Error registration failed 606 35006144 07 2011 EFB Error Codes and Values Tables of Error Codes for the Communication Library Introduction The following tables show the error codes and error values created for the EFBs of the Communication Library Extended Table of error codes and errors values created for EFBs of the Extended family EFB name Error code ENO Error
51. Execution is from left to right After this common activation the individual branches are processed independently from one another All parallel branches are grouped using a parallel joint according to IEC 61131 1 The transition following a parallel joint is evaluated when all the immediately preceding steps of the parallel joint have been set Combining a parallel branch with an alternative joint is only possible in Multi Token see page 438 operation Example of a Parallel Sequence Example of a Parallel Sequence li S_5_10 S_5_11 _5_12 S_5_13 S_5_17 Properties of a Parallel Sequence see e Properties of a Parallel Sequence in Single Token see page 423 e Properties of a Parallel Sequence in Multi Token see page 435 35006144 07 2011 419 SFC Sequence Language 13 8 Text Objects Text Object Introduction Text can be positioned in the form of text objects using SFC sequence language The size of these text objects depends on the length of the text This text object is at least the size of a cell and can be vertically and horizontally enlarged to other cells according to the size of the text Text objects can overlap with other SFC objects 420 35006144 07 2011 SFC Sequence Language 13 9 Single Token Overview This section describes the Single Token operating mode for sequence controls What s in this Se
52. O_SCALE_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_SCALE_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow O_SCALE_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration 616 35006144 07 2011 EFB Error Codes and Values Immediate I O Table of error codes and errors values created for EFBs of the Immediate I O family EFB name Error code ENO Error Error Error description state valuein valuein in Dec Hex case of error IMIO_IN F 0000 0000 Operation OK IMIO_IN F 8193 2001 invalid operation type e g the I O module addressed is not an input module IMIO_IN F 8194 2002 Invalid rack or slot number I O map in the configurator contains no module entry for this slot IMIO_IN F 8195 2003 invalid slot number IMIO_IN F 4095 F001 Module not OK IMIO_OUT F 0000 0000 Operation OK IMIO_OUT F 8193 2001 invalid operation type e g the I O module addressed is not an input module IMIO_OUT F 8194 2002 Invalid rack or slot number I O map in the configurator contains no module entry for this slot IMIO_OUT 8195 2003 invalid slot number IMIO_OUT 4095 F001 Module not OK Quantum I O Configuration Table of error codes and errors values created for EFBs of the Quantum 1 0 Configuration family
53. Overview of the Data Types of the Sequential Function Chart Family 287 8 10 Compatibility Between Data Types 0 0 c eee eee 289 Compatibility Between Data Types 00 0 e eee eee eee 289 Chapter 9 Data Instances 2 000 e eee eee ee eens 293 Data Type Instances 2 2 c ee eee ee 294 Data Instance Attributes 0 2 naaa ees 298 Direct Addressing Data Instances 0 0000 e eee eee eee 300 Chapter 10 Data References 00 cece eee ee eee eee 307 References to Data Instances by Value 2 20 eae 308 References to Data Instances by Name 0 0s aera 310 References to Data Instances by Address 00 0 000 ee 313 Data Naming Rules 0 0 eee ee 317 Part IV Programming Language 00e005 319 Chapter 11 Function Block Language FBD 55 321 General Information about the FBD Function Block Language 322 Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures FFBs 0 000 cece eee eee eee 324 Subroutine Calli weer ee nee ewes oY ee ee oe ee wales 334 Control Elements 5 ees eh ba ae ieee eee s Bea 335 35006144 07 2011 LIK ist Ae ee eee ee Ga a ee Se ee 336 TOXt Objecto cise ste ict este A emcee yan eer ot E a are aae deg et en 338 Execution Sequence of the FFBS 0 0 0 e eee eee eee 339 Change Execution Sequence 0 0
54. Suggested Network Description FBD lt The suggested network contains an AND block with 2 inputs for eee ere eee which the output is linked with a variable having the name of the alao transition section The suggested block can either be linked or it can be deleted if desired LD Ti The suggested network contains a coil which is linked with a variable having the name of the transition section The suggested coil can either be linked or it can be deleted if desired IL The suggested network is empty The content may only be created of Boolean logic The assignment of the logic result on the output the transition variable is done automatically i e the memory assignment ST is not allowed Example LD A AND B ST The suggested network is empty The content may only be created of Boolean logic in the form of a nested expression The assignment of the logic result on the output the transition variable is done automatically i e the instruction assignment is not allowed The expression is not terminated by a semicolon Example A AND B or A AND WORD TO BOOL B 35006144 07 2011 413 SFC Sequence Language Properties of Transition Sections Transition sections have the following properties Transition sections only have one single output transition variable whose data type is BOOL The name of these variables are identical to the names of the transition sections The transition variable
55. The effects of each conversion are described in the help text supplied with the Base Library Note 4 List of types for String functions e LEN INT LEFT INT RIGHT INT MID INT INSERT INT DELETE INT REPLACE INT FIND INT 35006144 07 2011 651 IEC Compliance Note 5 A variable can be mapped to a directly represented variable if they stricly have the same type This means that a variable of type INT can only be mapped on a directly represented variable of type INT But there is one exception to this rule for internal word sMW lt i gt Flat word SIW lt i gt and constant word SKwW lt i gt memory variables any declared variable type is allowed Allowed mappings Syntax Data type Allowed variable types Internal bit SM lt i gt or 3MX lt i gt EBOOL EBOOL ARRAY OF EBOOL Internal word SMW lt i gt INT All types are allowed except EBOOL ARRAY OF EBOOL Internal double word sMD lt i gt DINT No mapping because of overlapping between sMWw lt i gt and SMD lt i gt and SMF lt i gt Internal real SMF lt i gt REAL No mapping because of overlapping between sMWw lt i gt and SMD lt i gt and SMF lt i gt Constant word SKW lt i gt INT All types are allowed except EBOOL ARRAY OF EBOOL Constant double word KD lt i gt DINT No mapping because of overlapping between sKW lt i gt and SKD lt i gt and SKF lt i gt This kind of
56. The protection is confirmed by a password 35006144 07 2011 687 Glossary REAL Real literals Real type is a coded type in 32 bits The ranges of possible values are illustrated in gray in the following diagram os E 7 E INF 3 4028235e 38 1 1754944e 38 0 0 1 1754944e 38 3 4028235e 38 When a calculation result is e between 1 175494e 38 and 1 175494e 38 it is considerd as a DEN less than 3 4028234e 38 the symbol INF for infinite is displayed greater than 3 4028234e 38 the symbol INF for infinite is displayed undefined square root of a negative number the symbol NAN or NAN is displayed NOTE The IEC 559 standard defines two classes of NAN quiet NAN QNAN and signaling NaN SNaN QNAN is a NAN with the most significant fraction bit set and a SNAN is a NAN with the most significant fraction bit clear Bit number 22 QNANs are allowed to propagate through most arithmetic operations without signaling an exception SNAN generally signal an invalid operation exception whenever they appear as operands in arithmetic operations See SW17 and S18 NOTE when an operand is a DEN Denormalized number the result is not significant An literal real value is a number expressed in one or more decimals Example 12 0 0 0 0 456 3 14159 26 Real literals with exponent An Literal decimal value can be expressed using standard scientific notation The representation is as follows mantissa expone
57. Then If Then Since s_3_4 cannot become active S_3_1 If transition condition then a sequence runs remains token 1 active d is true tos 3 6 If transition condition a is true then a sequence runs toS_ 3 1 ands 3 2 This ends token 2 and the string is again processed as Single Token If the transition condition a is true then a sequence runstoS 3 lands 3 2 If transition condition then a sequence runs b is true and c is tos 3 4 false Since S_3 4 cannot become active S_3 1 remains token 1 active until a sequence appears on S_3 2 token 2 and the transition is b If S_4 4 is no longer active token 1 then it is reactivated by token 2 and both tokens continue running parallel Multi Token Merging the two tokens can also be done ins 4 3 35006144 07 2011 447 SFC Sequence Language 448 35006144 07 2011 Instruction List IL 14 Overview This chapter describes the programming language instruction list IL which conforms to IEC 61131 What s in this Chapter This chapter contains the following sections Section Topic Page 14 1 General Information about the IL Instruction List 450 14 2 Calling Elementary Functions Elementary Function Blocks 472 Derived Function Blocks and Procedures 35006144 07 2011 449 Instruction List IL 14 1 General Information about the IL Instruction List Overview This sect
58. date The action is always performed on the rising edge of the bit This word is enabled by bit 2S59 1 In the following illustration bits in the left column increment the value and bits in the right column decrement the value a _ Type of value Bits 0 8 Day of the week 1 9 Seconds 2 10 Minutes 3 11 Hours 4 12 Days 5 13 Months 6 14 Years 7 15 Centuries 182 35006144 07 2011 System Objects Description of System Words SW70 to SW100 Detailed Description Description of system words 3SW70 to 3SW100 Word Function Description Initial Modicon Premium Quan Symbol state M340 Atrium tum SW70 Real time System word containing the number of YES YES YES WEEKOFYEAR clock the week in the year 1 to 52 in BCD function SW71 Position This word provides the image of the 0 NO NO YES KEY SWITCH of the positions of the switches on the front switches panel of the Quantum processor This on the word is updated automatically by the Quantum system front pan SW71 0 1 switch in the Memory el protected position SW71 1 1 switch in the STOP position SW71 2 1switchinthe START position SW71 8 1 switch in the MEM position SW71 9 1 switch in the ASCII position SW71 10 1 switch in the RTU position SW71 3 to 7 and 11 to 15 are not used
59. start LD A AND B OR C ST D JMP start Jump properties With JMP operation a jump to the label can be restricted or unrestricted JMP can be used with the modifiers c and CN only if the battery content is data type BOOL Jumps can be made within program and DFB sections Jumps are only possible in the current section Possible destinations are the first LD instruction of an EFB DFB call with assignment of input parameters see start2 a normal LD instruction see start1 a CAL instruction which does not work with assignment of input parameters see start3 a JMP instruction see start 4 the end of an instruction list see start5 35006144 07 2011 469 Instruction List IL Example start2 startl start3 start4 starts S Li S O O 5 J L O S Hg wA OOQ E H G n OC MEG O E D A T counter CU D B T counter R DC l counter PV L counter PCN start4 A DB Cc D PC start3 A DE P startd L counter 5 D Zo OU H W O ll gt V C P starti D A RB RC T D MPC starti DC RB TA 470 35006144 07 2011 Instruction List IL Comment Description In the IL editor comments always start with the string and end in the string Any comments can be entered between these character strings Nesting comments is not permitted according to IEC 61131 3 If comments are nested nevertheless then they must b
60. 11 Function Block Language FBD 321 12 Ladder Diagram LD 347 13 SFC Sequence Language 389 14 Instruction List IL 449 15 Structured Text ST 497 35006144 07 2011 319 Programming Language 320 35006144 07 2011 Function Block Language FBD 11 Overview This chapter describes the function block language FBD which conforms to IEC 61131 What s in this Chapter This chapter contains the following topics Topic Page General Information about the FBD Function Block Language 322 Elementary Functions Elementary Function Blocks Derived Function Blocks 324 and Procedures FFBs Subroutine Calls 334 Control Elements 335 Link 336 Text Object 338 Execution Sequence of the FFBs 339 Change Execution Sequence 342 Loop Planning 346 35006144 07 2011 321 Function Block Language FBD General Information about the FBD Function Block Language Introduction The FBD editor is used for graphical function block programming according to IEC 61131 3 Representation of an FBD Section Representation EN Input ENO Output Inversion ST Expression Link Variable AND OR AND cond gt EN ENO EN ENO EN ENO INI gt So A lt B D TRUE gt IX1 5 4 gt c Db Ve Le IX1 5 5 gt Nie Literals Topological Link Crossing Addresses XOR EN ENO IN4 gt Objects Err
61. 15 16 17 18 20 ASCII port number Number of station modules Station already configured Port already configured More than 1024 output points More than 1024 input points Module slot address Module rack address 22 23 25 26 28 30 31 32 33 34 35 36 Number of output bytes Number of input bytes First reference number Second reference number Internal bits outside the 16 bit range Unpaired odd output module Unpaired odd input module Unpaired odd module reference Reference 1x after register 3x Reference of dummy module already used Module 3x is not a dummy module Module 4x is not a dummy module SW536 CAERRCNTO SW537 CAERRCNT1 SW538 CAERRCNT2 Communication status oncableA The words SW536 to SW538 are the communication error words on cable A SW536 e most significant byte counts framing errors e least significant byte counts overruns of the DMA receiver SW537 e most significant byte counts receiver errors e least significant byte counts incorrect station receptions SW538 SW538 15 1 short frame SW538 14 1 no end of frame SW538 3 1 CRC error SW538 2 1 alignment error SW538 1 1 overrun error SW538 13 to 4 and 0 are unused 35006144 07 2011 219 System Objects SW542 11 to 8 lost communications counter e SW542 7 to 0 retry totalizer counter SW543 is the global error totalizer counter fo
62. 238 35006144 07 2011 Data Types Boolean Types At a Glance There are two types of Boolean These are e BOOL type which contains only the value FALSE 0 or TRUE 1 e EBOOL type which contains the value FALSE 0 or TRUE 1 but also information concerning the management of falling or rising edges and forcing Principle of the BOOL Type This type takes up one memory byte but the value is only stored in one bit The default value for this type is FALSE 0 It is accessible via an address containing the offset of the corresponding byte Address settings Memory Offset In the case of the word extracted bit it is accessible via an address containing the following information e an offset of the corresponding byte e the rank defining its position in the word Address settings Memory Offset Rank 35006144 07 2011 239 Data Types Principle of the EBOOL Type This type takes up one memory byte which contains e the bit for the value V e the history bit H for managing rising or falling edges Each time the object s status changes the value is copied to this bit e the bit containing the forcing status F Equal to 0 if the object is not forced and equal to 1 if the object is forced The default value for the bits associated with the EBOOL type is FALSE 0 It is accessible via an address specifying the offset of the corresponding byt
63. 35006144 07 2011 359 Ladder Diagram LD Private Variables In addition to inputs outputs and public variables some function blocks also provide private variables Like public variables private variables are used to transfer statistical values values that are not influenced by the process to the function block Private variables can not be accessed by user program These type of variables can only be accessed by the animation table NOTE Nested DFBs are declared as private variables of the parent DFB So their variables are also not accessible through programming but trough the animation table Private variables are a supplement to IEC 61131 3 Programming Notes Attention should be paid to the following programming notes e FFBs will only be processed when they are directly or indirectly connected to the left bus bar e Ifthe FFB will be conditionally executed the EN input may be pre linked through contacts or other FFBs also see EN and ENO see page 361 e Boolean inputs and outputs can be inverted Special conditions apply when using VAR_IN_OUT variables see page 363 e Function block DFB instances can be called multiple times also see Multiple Function Block Instance Call see page 360 Multiple Function Block Instance Call Function block DFB instances can be called more than once other than instances from communication EFBs and function blocks DFBs with an ANY output but no ANY input these can o
64. Comment z Standard lt Struct gt Motor lt Struct gt siop Bool feedback Bool start Bool alarm Standard Speed Int Amp Int SFCSTEP_STATE lt Struct gt G SFCSTEP_TIMES lt Struct gt The following functions are available Definition of nested DDTs max 8 levels Definition of arrays with up to 6 dimensions Assignment of an initial value Assignment of an address Entering a comment Analysis of derived data types Assignment of derived data types to a library View all properties of a derived data type in a separate properties dialog box An alias name can be given to all elements of a DDT structure or an array 34 35006144 07 2011 Presentation Function Blocks The Function blocks tab is used for the instance declaration of elements and derived function blocks EFBs DFBs Tab Function blocks l Data Editor E I SFCConirol SFGCNTRL ey as S CnN CLEAR DISTIME Reset SFC Reset SFG Supervision time A 3 4 DISTRANS 5 M DISACT 6 Action processing 7 amp gt DISRMOTE Bool Remote control ALLTRANS Bool FALSE All transitions RESSTEPT Bool FALSE Elapsed time The following functions are available Display of the function blocks used in the project Definition of a symbol for the function blocks used in the project Automatic enabling of the defined symbols in the p
65. Defined as E _EFB_USER_ERROR_11 ERT_854_ 10 E_ERT_BASIC values F 30199 16 8A09 Defined as E _EFB_USER_ERROR_1 1 ERT_854_ 10 E WRONG_ANSW F 30211 16 89FD Defined as E _EFB_USER_ERROR_12 ERT_854_10 ES CBUF_OFLOW 28672 16 7000 ERT_854_ 10 E CBUF_OFLOW 30217 16 89F7 Defined as E _EFB_USER_ERROR_18 ERT_854_10 ES WRONG_PAKET F 8192 16 2000 ERT_854_10 E WRONG_PAKET 30212 16 89FC Defined as E _EFB_USER_ERROR_13 ERT_854_10 ES_WRONG_FELD 12288 16 3000 ERT_854_ 10 E WRONG_FELD 30213 16 89FB Defined as E _EFB_USER_ERROR_14 QUANTUM E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration QUANTUM E_EFB_UNKNOWN_DROP_ F 30190 16 8A12 Unknown drop No Quantum traffic cop XBE E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration XBE E_EFB_UNKNOWN_DROP_ F 30190 16 8A12 Unknown drop No Quantum traffic cop XDROP E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration NOTE For details about 1 see Quantum with Unity in the IO Management Li ERT 854 10 please refer to the ERT_854_10 description Pro 140 ERT 854 10 Time Stamp Module User s manual brary 35006144 07 2011 619 EFB Error Codes and Values Tables of Error Codes for the CONT_CTL Library Introduction The following tables show the error codes and error values created for the EFBs of the
66. EFB configu ration does not match hardware configuration _SCALE_WARN E_EFB_NO_WARNING_STATUS_AVAILABLE 30189 16 8A13 Module deliv ers no warn ing status _SCALE_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow _SCALE_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow _SCALE_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_NORM E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_NORM E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow 614 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error de scription O_NORM E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_NORM_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_NORM_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow O_NORM_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_PHYS E_EFB_NO_MEASURING_RANGE 30185 16 8A17 Internal error O_PHYS E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_PHYS E_EFB_NE
67. Error Error description state value value in in in Dec Hex case of error CREAD_REG E_EFB_MSTR_ERROR F 30191 16 8A11 MSTR communication error CREAD_REG E_EFB_NOT_STATE_RAM_4X F 30531 16 88BD Variable not mapped to MW 4x area CREAD_REG F 8195 16 2003 Value displayed in status word Comes together with E_EFB_MSTR_ERROR CREAD_REG F 8206 16 200E Value displayed in status word Comes together with E_EFB_NOT_STATE_RAM_4X CREAD_REG F See tables of e Modbus Plus and SY MAX EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e SY MAX specific Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e TCP IP EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual CWRITE_REG E_ EFB_MSTR_ERROR F 30191 16 8A11 MSTR communication error CWRITE_REG 8195 16 2003 Value displayed in status word Comes together with E_EFB_MSTR_ERROR 35006144 07 2011 607 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error description CWRITE_REG 8206 16 200E Value displayed in status word Comes together with E_EFB_NOT_STATE_RAM_4X CWRITE_REG See tables of e Modbus Plus and SY MAX EtherNet Error Codes see Modicon Quantum with Unity
68. Error code ENO state Error Error Error description in case of valuein value in error Dec Hex CFG_CP_F BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 CFG_CP_F MMF_BAD_4xX T 9010 16 2332 CFG_CP_F MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error CFG_CP_V_ BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 CFG_CP_V_ MMF_BAD_4X T 9010 16 2332 CFG_CP_V MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error CFG_CS BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 CFG_CS MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error CFG_FS BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 CFG_FS MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error CFG_IA BAD_REVISION F 30200 16 8A08 defined as E_LEFB_USER_ERROR_1 CFG_IA MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error CFG_RA BAD_REVISION F 30200 16 8A08 defined as E_LEFB_USER_ERROR_1 CFG_RA MMF_ABORT_SUB 7004 16 1B5C SubNum SubNumEcho handshake error CFG_SA BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 CFG_SA MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error DRV_DNLD BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 DRV_DNLD MMF_ABORT_SUB_ T 7004 16 1B5C SubNum SubNumEcho handshake error DRV_UPLD BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 350
69. Ethernet Network Modules User Manual e SY MAX specific Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e TCP IP EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual MBP_MSTR E_EFB_OUT_OF_RANGE 30192 16 8A10 Internal error EFB has detected a violation e g write exceeds MW 4x boundaries MBP_MSTR E_EFB_NOT_STATE_RAM_4X 30531 16 88BD Variable not mapped to MW 4x area MBP_MSTR 8195 16 2003 Value displayed in status word Comes together with E_EFB_MSTR_ERROR in status of control block MBP_MSTR 8206 16 200E Value displayed in status word Comes together with E_EFB_NOT_STATE_RAM_4Xin status of control block 608 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error description MBP_MSTR See tables of e Modbus Plus and SY MAX EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e SY MAX specific Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e TCP IP EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual READ_REG W_WARN_OUT_OF_RANGE 30110 16 759E Parameter out of range READ_REG E_EFB_NOT_STATE_RAM_4
70. FB Instances No No No Yes No Yes No EF Yes 2 No No No No No Variable Yes No Yes Yes No 1 No 1 An instance belonging to the application domain cannot have the same name as an EF 2 An instance belonging to the type domain internal variable can have the same name as an EF The EF in question cannot be used in this type 35006144 07 2011 317 Data References 3 The creation or import of EFB DFBs with the same name as an existing instance are prohibited 4 An DDT IODDT element might have the same name of an FB EF however it is not advised as the FB EF should not be used in the application NOTE A number of additional considerations to the rules given in the table are listed below specifying that e Within a type an instance internal variable cannot have the same name as the type name of the object to which it belongs e There is no conflict between the name of an instance belonging to a section of the application and the name of the instance belonging to a section of a DFB e There is no conflict between the name of a section belonging to a task and the name of the section belonging to a DFB 318 35006144 07 2011 Programming Language IV Contents of this Part What s in this Part This part describes the syntax of the programming languages that are available This part contains the following chapters Chapter Chapter Name Page
71. For the months 01 03 05 07 08 10 12 01 30 For the months 04 06 09 11 01 29 For the month 02 leap years 01 28 For the month 02 non leap years Example Entry Comments D 2001 1 1 The left O of the month and the day can be omitted d 1990 02 02 The prefix can be written in lower case 250 35006144 07 2011 Data Types The Time of Day TOD Type At a Glance Syntax Rules The Time of Day type coded in 32 bit format contains the following information e the hour coded in an 8 bit field 2 most significant half bytes e the minutes coded in an 8 bit field 2 half bytes e the seconds coded in an 8 bit field 2 half bytes NOTE The 8 least significant bits are unused Representation in BCD format of the time of day 13 25 47 Hour 13 Minutes 25 Seconds 47 Least significant byte 0001 0011 0010 0101 0100 0111 Unused The Time of Day type is entered as follows TOD lt Hour gt lt Minutes gt lt Seconds gt This table shows the lower upper limits in each field Field Limits Comment Hour 00 23 The left 0 is always displayed but can be omitted at the time of entry Minute 00 59 The left 0 is always displayed but can be omitted at the time of entry Second 00 59 The left 0 is always displayed but can be omitted at the time of entry Example Entry Comment TOD 1 59 0 The left 0 of the hours and seconds can be omitted tod 23 10 59 Th
72. IL and ST Elements of a Program A program can be constructed from e a Master task MAST a Fast task FAST one to four Aux Tasks not available for Modicon M340 sections which are assigned one of the defined tasks sections for processing time controlled events Timerx sections for processing hardware controlled events EVTx subroutine sections SR 18 35006144 07 2011 Presentation Software Packages The following software packages are available Unity Pro S Unity Pro M Unity Pro L Unity Pro XL Unity Pro XLS Unity Developers Edition UDE Performance Scope The following table shows the main characteristics of the individual software packages Unity Pro S Unity Pro M Unity Pro L Unity Pro XL Unity Pro XLS Programming languages Function Block Diagram FBD Ladder Diagram LD language Instruction List IL 2 Structured Text 2 ST Sequential Lan 2 guage SFC Libraries 1 Standard library 2 Control library 2 Communication 2 library Diagnostics li 2 brary I O Management 2 library System library 2 Motion control 2 drive library TCP Open library optional optional optional optional 2 Obsolete library 2 MFB library 2 Safety library
73. If the ELSE instruction comes after CASE the instruction or group of instructions will only be executed if no tag contains the value of the selector If an identification contains the value of the selector the instruction or group of instructions will not be executed NOTE Any number of IF THEN ELSE END_ IF instructions may be nested to generate complex selection instructions Example ELSE IF A gt B THEN C SIN A COS B B C Aj ELSE C A B B C A END_IF See Also IF see page 513 ELSIF see page 515 CASE see page 516 514 35006144 07 2011 Structured Text ST Select Instruction ELSIF THEN Description The ELSE instruction always comes after an IF THI EN instruction The ELSIF instruction determines that an instruction or group of instructions is only executed if the associated Boolean expression for the IF instruction has the value 0 false and the associated Boolean expression of the If the condition of the IF instruction is 1 true or the condition of the ELSIF instruction has the value 1 true ELSIF instruction is O false the command or group of commands will not be executed The THEN instruction identifies the end of the of the instruction s NOTE Any number of IF THE N ELSIF THE ELSIF condition s and the beginning N END_IF instructions may
74. MOD function N EXPT function MOVE function 25 SHL function SHR function ROR function ROL function 26 AND function OR function XOR function olNIoJAa AJ OIN NOT function 646 35006144 07 2011 IEC Compliance Table No Feature No Description of Feature 27 1 SEL function 2a MAX function 2b MIN function 3 LIMIT function 4 MUX function 28 5 GT function 6 GE function 7 EQ function 8 LE function 9 LT function 10 NE function 29 1 LEN function Note 4 page 651 2 LEFT function Note 4 page 651 3 RIGHT function Note 4 page 651 4 MID function Note 4 page 657 6 INSERT function Note 4 page 657 7 DELETE function Note 4 page 651 8 REPLACE function Note 4 page 651 9 FIND function Note 4 page 651 30 la ADD function Note 6 page 653 1b ADD_TIME function 2b ADD_TOD_TIME function 3b ADD_DT_TIME function 4a SUB function Note 6 page 653 4b SUB_TIME function 5b SUB_DATE_DATE function 6b SUB_TOD_TIME function 7b SUB_TOD_TOD function 8b SUB_DT_TIME function 9b SUB_DT_DT function 10a MUL function Note 6 page 653 10b MULTIME function 11a DIV function function Note 6 page 653 11b DIVTIME function 35006144 07 2011 647 IEC Compliance
75. MX 5 Calling the same function in FBD LIMIT MUL 4 MN out vari JIN1 OUT In yar 7 IN2 5 MxX Functions that return a value of the ANY ARRAY data type can not be used within a function call Unauthorized nesting with ANY ARRAY ANY_ARRAY out LIMIT MN 4 IN EXAMP IN1 varl IN2 var2 MX 5 ANY_ARRAY is permitted as the return value of the function called or as a parameter of the nested functions Authorized nesting with ANY ARRAY ANY_ARRAY ANY_ARRAY ANY_ARRAY out EXAMP MN 4 IN EXAMP IN1 varl IN2 var2 MX var3 With all functions an EN input and an ENO output can be configured If the value of EN is equal to 0 when the function is called the algorithms defined by the function are not executed and ENO is set to 0 If the value of EN is equal to 1 when the function is called the algorithms which are defined by the function are executed After successful execution of these algorithms the value of ENO is set to 1 If an error occurs during execution of these algorithms ENO will be set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If ENO is set to 0 caused when EN 0 or an error occurred during executing the output of the function is set to 0 The output behavior of the function does not depend on whether the function was ca
76. Q1 2 1 Cpt_1 Done 590 35006144 07 2011 Use of DFBs Elements of the Sequence The following table lists the different elements of the program sequence when a formal DFB call is made Element Meaning Cpt_1 Name of the DFB instance Clear MD10 100 Assignment object or value of the inputs Non assigned inputs are represented by an empty field End of sequence symbol Argument separation symbol 35006144 07 2011 591 Use of DFBs Use of a DFB in an Instruction List Program Principle In Instruction List a user function block is called by a CAL instruction followed by the name of the DFB instance as an operand and a list of arguments optional Arguments are displayed in the list between brackets and separated by commas In Instruction List there are three possible ways of calling a DFB e The instruction CAL DFB Name is followed by a list of arguments that are assignments parameter value In this case the order in which the arguments are entered in the list is not important The EN input parameter can be used to control the execution of the function block e The instruction CAL DFB_ Name is followed by a list of arguments that are values expression object or immediate value In this case the order in which the arguments are entered in the list must follow the order of the DFB input parameters including for non assigned inputs the argument is an empty field
77. SWO to SW11 171 Description of System Words SW12 to SW29 175 Description of System Words SW30 to SW47 179 Description of System Words SW48 to SW59 181 Description of System Words SW70 to SW100 183 Description of System Words SW108 to SW116 193 Description of System Words SW123 to SW127 194 170 35006144 07 2011 System Objects Description of System Words SW0 to SW11 Detailed Description Description of system words SW0 to SW11 Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SWO0 Master This word is used to modify the period of 0 YES YES YES MASTPERIOD task the master task via the user program or via except scanning the terminal for safety period The period is expressed in ms 1 255 ms PLCs SWO 0 in cyclic operation On a cold restart it takes the value defined by the configuration This word is not available on Quantum safety PLCs SW1 Fast task This word is used to modify the period of 0 YES YES YES FASTPERIOD scanning the fast task via the user program or via the except period terminal for safety The period is expressed in milliseconds PLCs 1 255 ms On a cold restart it takes the value defined by the configuration This word is not available on Quantum safety PLCs SW2 Auxiliary This word is used to modify the period of O NO YES 1 YES 1 AUXOPERIOD task the tasks defined i
78. See table Common Floating Point Errors page 637 SCON3 E_ERR_DEN F 30152 16 8A38 Nota valid floating point number SCON3 W_WARN_DSR_TN T 30101 16 7595 TN 0 SCON3 W_WARN_DSR_TSN T 30102 16 7596 TSN 0 SCON3 W_WARN_DSR_KP T 30103 16 7597 KP lt 0 SCON3 E_ERR_DSR_HYS F 30105 16 8A67 2 UZI lt IHYSI SCON3 FP_ERROR F See table Common Floating Point Errors page 637 VLIM E_ERR_DEN F 30152 16 8A38 Not a valid floating point number VLIM E_ERR_AB1_MAX_MIN 30101 16 8A6B YMAX lt YMIN VLIM FP_ERROR See table Common Floating Point Errors page 637 35006144 07 2011 633 EFB Error Codes and Values Extension Compatibility Table of error codes and errors values created for EFBs of the Extension Compatibility family EFB name Error code ENO Error Error Error description state in valuein value in case of Dec Hex error AKF_TA E_AKFEFB_TIMEBASE_IS_ZERO F 30482 16 88EE Time base is zero AKF_TE E_AKFEFB_TIMEBASE_IS_ZERO F 30482 16 88EE Time base is zero AKF_TI E_AKFEFB_TIMEBASE_IS_ZERO F 30482 16 88EE Time base is zero AKF_TS E_AKFEFB_TIMEBASE_IS_ZERO F 30482 16 88EE Time base is zero AKF_TV E_AKFEFB_TIMEBASE_IS_ZERO F 30482 16 88EE Time base is zero FIFO E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range GET_3X E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19
79. Value Type Comment fe et 1 Bool pump_1 cmd 1 Bool pump_1 speed 100 Int high_anim 0 Bool jack_1_out 1 Bool jack_3_out 0 Bool midle_anim 1 Bool Low_anim 0 Bool hole_anim1 0 Bool End_threadingx O Bool Unblocking x 0 Bool hole_anim2 0 Bool End_drilling x 0 Bool e Animation table The value of all variables in the project can be displayed changed or forced in animation tables Values can be changed individually or simultaneously together Table FBD Editor FBD1 MAST El if Fr EM Name Value Setvalue Type Comment start 1 Bool El Indexing_blocki SFCSTEP_STAT t Os Time ex 1 Bool tminErr 0 Bool tmaxErr 0 Bool text String var1 120 120 Int var2 360 360 Int at ol 58 35006144 07 2011 Presentation Watch Point Watch points allow you to view PLC data at the exact moment at which it is created 1 and not only at the end of a cycle Animation tables can be synchronized with the watch point 2 A counter 3 determines how often the watch point has been updated ST section with watch point Watch Point are wo 41 if pump_1 start then pump_1 cmd true che pump 1 emd BRE end _if M odificatio Force Value ifpump_lemdthnp 1 end eH ite Peay OY ELON tet
80. WORD and DWORD Data Type BOOL data types the link is made bit by bit BYTE WORD or Example In the examples OUT is 1 if IN1 IN2 DWORD and IN3 are 1 OUT IN1 AND IN2 AND IN3 XOR Logical 10 Expression Literal With XOR there is a logical Exclusive OR link Exclusive OR Variable Address of between the operations In the case of BYTE WORD Data Type BOOL and DWORD data types the link is made bit by bit BYTE WORD or Example In the example OUT is 1 if IN1 and IN2 DWORD are not equal If A and B have the same status both O or 1 Dis 0 OUT IN1 XOR IN2 If more than two operands are linked the result with an uneven number of 1 states is 1 and is 0 with an even number of 1 states Example In the example out is 1 if 1 or 3 operands are 1 OUT is 0 if 0 2 or 4 operands are 1 OUT IN1 XOR IN2 XOR IN3 XOR IN4 OR Logical OR 11 lowest Expression Literal With OR there is a logical OR link between the Variable Address of operands With the BYTE and WORD DWORD data Data Type BOOL types the link is made bit by bit BYTE WORD or Example In the example OUT is 1 if IN1 IN2 or DWORD IN3 is 1 OUT IN1 OR IN2 OR IN3 35006144 07 2011 507 Structured Text ST 15 2 Instructions Overview This section describes the instructions for the programming language of structured text ST What s in this Section This section contains the following topics
81. YMW4 2 3 1 R W DINT type double word MD lt mod gt lt c gt MD4 2 3 R W MD lt mod gt lt c gt lt d gt MD4 2 3 2 R W Read type REAL floating point MF lt mod gt lt c gt MF4 2 3 R W MF lt mod gt lt c gt lt d gt MF4 2 3 2 R W 35006144 07 2011 303 Data Instances Syntax Example Program access rights K Constants Modicon M340 and Premium INT type word KW lt mod gt lt c gt KW4 2 3 R KW lt mod gt lt c gt lt d gt KW4 2 3 1 R DINT type double word KD lt mod gt lt c gt KD4 2 3 R KD lt mod gt lt c gt lt d gt KD4 2 3 12 R Read type REAL floating point KF lt mod gt lt c gt KF4 2 3 R KF lt mod gt lt c gt lt d gt KF4 2 3 12 R lt mod lt b gt lt e gt lt r gt lt m gt lt b gt bus number omitted if station is local lt e gt device connection point number omitted if station is local the connection point is also called Drop for Quantum users lt r gt rack number lt m gt module slot lt c gt channel number 0 to 999 or MOD reserved word lt d gt data number 0 to 999 or ERR reserved word optional if O value For Modicon M340 lt d gt is always even 304 35006144 07 2011 Data Instances Examples local station and station on bus for Modicon M340 PLCs l0 1 5 Line end CANopen Bus No 3 h A T
82. dark gray Function blocks 35006144 07 2011 233 General Overview of Data Syntax Rules for Type Instance Names Introduction The syntax of names of types and variables can be written up with or without the extended character set This option can be selected in the Language extensions tab of the Tools gt Project settings menu e With Allow extended character set option selected the application is compliant with the IEC standard e With Allow extended character set option not selected the user has a certain degree of flexibility but the application is not compliant with the IEC standard The extended character set used for names entered into the application concerns e DFB Derived Function Block user function blocks or DDT Derived data type e the internal elements composing a DFB EFB function block data type or a derived data type DDT e the data instances If the Allow extended Checkbox is Selected The names entered are strings made up of alphanumeric characters and the Underscore character The rules are as follows e the first character of the name is an alphabetic character or an Underscore e two Underscore characters cannot be used consecutively If the Allow extended Checkbox is not Selected The names entered are strings made up of alphanumeric characters and the Underscore character Additional characters are authorized such as e characters corresponding to ASCII cod
83. e Variable e Address e Literal The following can be used as actual parameters for procedure outputs e Variable e Address The data type of the actual parameter must match the data type of the formal parameter The only exceptions are generic formal parameters whose data type is determined by the actual parameter When dealing with generic ANY BIT formal parameters actual parameters of the INT or DINT not UINT and UDINT data types can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND AnyBitParam IntVarl AnyBitParam2 IntVar2 35006144 07 2011 489 Instruction List IL Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 In this case AND_ INT must be used AND ARRAY WORD ArrayInt In this case an explicit type conversion must be carried out using INT ARR TO WORD ARR Not all formal parameters must be assigned a value for formal calls Which formal parameter types must be assigned a value can be seen in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Input VAR_IN_OUT 4 ue Output z s z Actual parameter required Actual parameter not required not applicable If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no ini
84. functions LENGTH ARWORD compute the size of each array in order to condition the execution of the MOVE function 35006144 07 2011 583 Use of DFBs Use of IODDTs in a DFB At a Glance The following tables present the different IODDTs for the Modicon M340 Premium and Quantum PLCs that can be used in a DFB exclusively as input output see page 561 parameters IOODT that Can Be Used in a DFB The following table lists the IODDTs of the differente application for Modicon M340 Premium and Quantum PLCs that can be used in a DFB IODDT families Modicon M340 Premium Quantum Discrete application T_DIS_IN_GEN No No No T_DIS_IN_STD No No No T_DIS_EVT No No No T_DIS_OUT_GEN No No No T_DIS_OUT_STD No No No T_DIS_OUT_REFLEX No No No Analog application T_ANA_IN_GEN No No No T_ANA_IN_STD No No No T_ANA_IN_CTRL No Yes No T_ANA_IN_EVT No Yes No T_ANA_OUT_GEN No No No T_ANA_OUT_STD No No No T_ANA_IN_BMX Yes No No T_ANA_IN_T_BMX Yes No No T_ANA_OUT_BMX Yes No No T_ANA_IN_VE No No No T_ANA_IN_VWE No No No T_ANA_BI_VWE No No No T_ANA_BI_IN_VWE No No No Counting application T_COUNT_ACQ No Yes No T_COUNT_HIGH_SPEED No Yes No T_COUNT_STD No Yes No 584 35006144 07 2011 Use of DFBs IODDT families Modicon M3
85. ments addresses more than 100 words IEC_BMDI E_EFB_USER_ERROR 30209 16 89FF The value for NumberOfEle ments selects a source address outside the accept able limits IEC_BMDI E_EFB_USER_ERROR 30210 16 89FE The value for NumberOfEle ments selects a destination ad dress outside the acceptable limits IEC_BMDI E_EFB_USER_ERROR 30211 16 89FD The value for NumberOfEle ments is not a multiple of 16 IEC_BMDI E_EFB_USER_ERROR 30212 16 89FC Warning Address overlap of input and output ad dresses LIFO E_INPUT_VALUE_OUT OF_RANGE 30183 16 8A19 Input value is out of range 35006144 07 2011 635 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state in valuein value in case of Dec Hex error PUT_4X E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range MUX_DINTARR_125 E_SELECTOR_OUT_OF_RANGE F 30175 16 8A21 Selector is out of range SET_BIT E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range 636 35006144 07 2011 EFB Error Codes and Values Common Floating Point Errors Introduction The following table shows the commen error codes and error values created for floating point errors Common Floating Point Errors Table of common floating point
86. unused combinations Example of DBCD coding e the number 78993016 e is coded 0111 1000 1001 1001 0011 0000 0001 0110 DDT DDT is the abbreviation of Derived Data Type A derived data type is a set of elements of the same type ARRAY or of various types structure 35006144 07 2011 675 Glossary DFB DFB instance DINT Documentation DFB is the abbrevation of Derived Function Block DFB types are function blocks that can be programmed by the user ST IL LD or FBD By using DFB types in an application it is possible to simplify the design and input of the program increase the legibility of the program facilitate the debugging of the program reduce the volume of the generated code A DFB type instance occurs when an instance is called from a language editor The instance possesses a name input output interfaces the public and private variables are duplicated one duplication per instance the code is not duplicated A DFB type can have several instances DINT is the abbrevation of Double Integer format coded on 32 bits The lower and upper limits are as follows 2 to the power of 31 to 2 to the power of 31 1 Example 2147483648 2147483647 16 FFFFFFFFE Contains all the information of the project The documentation is printed once compiled and used for maintenance purposes The information contained in the documentation cover the hardware and software configuration the prog
87. 13 IfstepsS_ 5 11 S 5 12ands_5 13 are activated then the strings run independently of one another Ifs 5 14 S 5 15ands 5 16 are active at the same time and transition condition e which belongs to the common transition is true then a sequence is run from s 5 14 s 5 15ands 5 16tos 5 17 35006144 07 2011 427 SFC Sequence Language Using an Alternative Branch in a Parallel String If a single alternative branch is used in a parallel string it leads to blocking the string with Single Token Using an Alternative Branch in a Parallel String a a S_7_1 S_7_2 T ay EENEI zs b c d S_7_3 S_7_4 S75 T e S_7_6 If Then If transition condition a is true then a sequence is runtoS 7 lands 7 2 If steps S_7 1 ands _7_ 2 are activated then the strings run independently of one another If transition condition d is true then a sequence runs to S_7_5 If transition condition b is true and c is false then a sequence runs to S_7_ 3 never both at the same time is blocked alternative branch Since S_7 3 S 7 4ands_7_5 are linked with a parallel merge no sequence can follow to S_7_6 because S_ 7 3 ands _7 4 can never be active at the same time Either S_7_ 3 is activated with transition condition b or S_7_4 with transition condition c
88. 2011 Program Structure Task Control The execution of fast and event processing tasks can be controlled by the program using the following system bits e S30 is used to control whether or not the MAST master task is active e S31 is used to control whether or not the FAST task is active e S32 to S35 are used to control whether or not the auxiliary tasks AUXO to AUX3 are active e S38 is used to control whether EVTi event processing is active NOTE The elementary functions MASKEVT and UNMASKEVT also allow the global masking and unmasking of events by the program 35006144 07 2011 93 Program Structure Task Control Cyclic and Periodic Operation In multitasking operation the highest priority task shall be used in periodic mode in order to allow enough time for lower priority tasks to be executed For this reason only the task with the lowest priority should be used in cyclic mode Thus choosing cyclic operating mode for the master task excludes using auxiliary tasks Measurement of Task Durations The duration of tasks is continually measured This measurement represents the duration between the start and the end of execution of the task This measurement includes the time taken up by tasks of higher priority which may interrupt the execution of the task being measured The following system words see page 179 give the current maximum and minimum cycle times for each task value in ms
89. 294 967 296 in double length or unsigned integer real values outside limits division by O the root of a negative number forcing to a non existent step on a drum stacking up of an already full register emptying of an already empty register There is only one case for which bit S18 is not raised by the Modicon M340 PLCs when real values are outside limits It is only if denormalized operands or some operations which generate denormalized results are used gradual underflow It must be tested by the user program after each operation where there is a risk of overflow then reset to O by the user if there is indeed an overflow When the S18 bit switches to 1 the application stops in error state if the S78 bit has been to set to 1 YES YES YES S19 OVERRUN Task period overrun periodical scanning Normally set to 0 this bit is set to 1 by the system in the event of a time period overrun i e task execution time is greater than the period defined by the user in the configuration or programmed into the SW word associated with the task The user must reset this bit to 0 Each task manages its own S19 bit YES YES YES 35006144 07 2011 155 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S20 Index Normally set to O this bit is set to 1 when 0 YES YES YES INDEXOVF overflow the address
90. 433 Alternative String 0 0 e eet eee 435 Parallel Strings ee ee 223 098 Pa seie het ahs Ride ha Sie eps ate oe as 438 Jump into a Parallel String 0 0 0 eee 442 Jump out of a Parallel String 0 00 eee eee 444 Instruction List IL naa cc eee 449 General Information about the IL Instruction List 450 General Information about the IL Instruction List 451 Operands crre ea see bedskirt ae styt weenie oe ee ie 454 Modifier aseenaan are tee ON EE Seno ahd Soe Sie ke oe ae See 457 Operators he ee we eae Ree ee le ee ee E 459 Subroutine Call ieina ace ward toh a Ree dade wpa dee Ge Sed Me ered nce Greg ek 468 Labels and JUMPS 0 0 6 a D aaa a a Aaa 469 Commentare chs hs es Seca tae a eI ee as Si aches e ais 471 Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures 00 eec eee eee eeee 472 Calling Elementary Functions 0 000 e eee eee 473 Calling Elementary Function Blocks and Derived Function Blocks 478 Calling Procedures 0 0 c cece ett 489 Structured Text ST 2 2 ees Se ee eee ieee 497 General Information about the Structured Text ST 498 General Information about Structured Text ST 2 00 499 Operands nire ese bok iw a Ethel ed bok Ga Soden TE 502 OPGralors enan ot adele pacer ea sige dana eet wae Ei 504 INStFUCTIONS 5 srp scies sraateer crear es G
91. A Internal A Saved data Flash Internal Memory RAM MW backup If the memory card is present working properly and not write protected the program is saved on the memory card e Automatically after e a download e online modification e arising edge of the system bit S66 in the project program 35006144 07 2011 109 Memory Structure Program Restore Saved Data Save_Param e Manually e with the command PLC Project backup Backup Save e in an animation table by setting the system bit S66 A WARNING LOSS OF DATA APPLICATION NOT SAVED The interruption of an application saving procedure by an untimely or rough extraction of the memory card may lead to the loss of saved application The bit S65 see page 160 allows managing a correct extraction See help page 65 bit in system bit chapter Failure to follow these instructions can result in death serious injury or equipment damage The memory card uses Flash technology therefore no battery is necessary If the memory card is present and working properly the program is copied from the PLC memory card to the internal memory e Automatically after e a power cycle e Manually with the Unity Pro command PLC Project backup Backup Restore NOTE When you insert the memory card in run or stop mode you have to do a power cycle to restore the project on the PLC Located unlocated data diagnostic buffer are
92. APPSERVCNT n flow per master MAST task cycle manage sw89 Number of requests ment processed by server functions Modicon immediately per master MAST M340 task cycle HTTP For Modicon M340 and FTP e scwes Number of HTTP requests requests received by the processor s Web received server per second by the e Sw89 Number of FTP requests proces received by the FTP server per sorsWeb second server and FTP server per sec ond 186 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW90 MAXREQNB Maxi mum number of re quests pro cessed per mas ter task cycle This word is used to set a maximum number of requests all protocols included UNI TE Modbus etc which can be processed by the server of the PLC per master task cycle Requests sent by the PLC as client are not concerned This number of requests must be between a minimum and a maximum defined as N 4 depending on the model For M340 range BMX P34 10 20 N 8 minimum 2 maximum 8 4 12 For Premium range TSX 57 0 N 4 minimum 2 maximum 4 4 9 e TSX 57 1 N 4 minimum 2 maximum 4 4 8 TSX 57 2 N 8 minimum 2 maximum 8 4 12 TSX 57 3 N 12 minimum 2 maximum 12 4 16 e TSX 57 4 N 16 minimum 2 maximum 16 4 20 T
93. Data Types The operand and the current accumulator content must be of the same type Should operands of various types be processed a type conversion must be performed beforehand In the example the integer variable i1 is converted into a real variable before being added to the real variable r4 LD il INT_TO REAL ADD r4 ST r3 As an exception to this rule variables with data type TIME can be multiplied or divided by variables with data type INT DINT UINT or UDINT Permitted operations e LD timeVarl DIV dintVar1 ST timeVar2 e LD timeVarl UL intVarl ST timeVar2 e LD timeVarl UL 10 ST timeVar2 This function is listed by IEC 61131 3 as undesired service 454 35006144 07 2011 Instruction List IL Direct Use of Addresses Addresses can be used directly without a previous declaration In this case the data type is assigned to the address directly The assignment is made using the Large prefix The different large prefixes are given in the following table Large prefix Example Data type Symbol no prefix 110 SCH203 MOD 3CH203 MOD ERR BOOL x SMX20 BOOL B QB102 3 BYTE W SKW43 INT D QD100 DINT F SMF100 REAL Using Other Data Types Should other data types be assigned as the default data types of an address this must be done through an explicit declaration This variable declaration takes place comfortably using the variable editor
94. Data Types DDT Rules A conventional data type is compatible with the genetic data types related to it hierarchically A generic data type is compatible with the generic data types related to it hierarchically Example a x he INT type is compatible with the ANY_INT or ANY NUM or ANY_MAGNITUDE types 3 he INT type is not compatible with the ANY BIT or ANY REAL types J he ANY INT generic type is compatible with the ANY NUM type J he ANY_INT generic type is not compatible with the ANY REAL type 292 35006144 07 2011 Data Instances What s in this Chapter This chapter describes data instances and their characteristics These instances can be e unlocated data instances e located data instances e direct addressing data instances What s in this Chapter This chapter contains the following topics Topic Page Data Type Instances 294 Data Instance Attributes 298 Direct Addressing Data Instances 300 35006144 07 2011 293 Data Instances Data Type Instances Introduction What is a data type instance see page 231 A data type instance is referenced either by e a name symbol in which case we say the data is unlocated because its memory allocation is not defined but is carried out automatically by the system e a name symbol and a topological address defined by the manufacturer in which case we say the data i
95. Description Initial state Modicon Premium Quan Symbol M340 Atrium tum SW13 Mode of the For Quantum safety PLC only this NO NO YES INTELMODE Intel word indicates the operating mode of Only on processor the Intel Pentium processor of the safety CPU module PLCs e 16 501A maintenance mode e 16 5AFE safe mode Any other value is interpreted as an error Note In a HotStand By safety system this word is exchanged from the primary to the standby PLC to inform the standby PLC of the safe or maintenance mode SW14 Commer This word contains the current YES YES YES OSCOMMVERS cial version Operating System OS version of the of PLC pro PLC processor cessor Example 16 0135 version 01 issue number 35 SW15 PLC This word contains the commercial YES YES YES OSCOMMPATCH processor version of the PLC processor patch patch It is coded onto the least significant version byte of the word Coding 0 no patch 1 A 2 B Example 16 0003 corresponds to patch C SW16 Firmware This word contains the Firmware YES YES YES OSINTVERS version version number in hexadecimal of the number PLC processor firmware Example 16 0011 version 2 1 VN 17 176 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW17 FLOATSTAT Error status on floating operation When an error in a floating arithmetic op
96. ENO is an output parameter They are both of BOOL type and may or may not be used optional in the definition of a DFB type Where the user wishes to use these parameters the editor sets them automatically EN is the first input parameter and ENO the first output parameter Example of implementation of EN ENO parameters Control _ EN ENO L Deviation Accel Inputs Outputs Speed Error _ Enable Inputs J Actions o inputs Outputs Outputs If the EN input parameter of an instance is assigned the value 0 FALSE then e the section s that make up the code of the DFB is are not executed this is managed by the system e the ENO output parameter is set to 0 FALSE by the system If the EN input parameter of an instance is assigned the value 1 TRUE then e the section s that make up the code of the DFB is are executed this is managed by the system e the ENO output parameter is set to 1 TRUE by the system 35006144 07 2011 563 Description of DFBs If an error is detected for example a processing error by the DFB instance the user has the option of setting the ENO output parameter to 0 FALSE In this case e either the output parameters are frozen in the state they were in during the previous process until the fault disappears e or the user provides a function in the DFB code whereby the outputs are forced to the required state until the fault disappears VAR_IN_OUT Variable
97. E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow I_NORM E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration _NORM_WARN E_EFB_NO_WARNING_STATUS_AVAILABLE 30189 16 8A13 Module deliv ers no warn ing status _NORM_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow _NORM_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow _NORM_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration I_PHYS E_EFB_NO_WARNING_STATUS_AVAILABLE 30189 16 8A13 Module deliv ers no warn ing status _PHYS E_INPUT_VALUE_OUT_OF_RANGE 30183 16 8A19 Input value is out of range 612 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error de scription I_PHYS E_EFB_NO_MEASURING_RANGE 30185 16 8A17 Internal error _PHYS E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow I_PHYS E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow I_PHYS E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration I_PHYS_WARN E_EFB_NO_WARNING_STATUS_AVAILABLE 30189 16 8A13
98. Error The operation cannot be carried out since the VAR_IN_OUT parameter contents of accumulator cannot be accessed outside the procedure call Invalid call example 2 LD V1 Loading a V1 variable in the accumulator AND InOutProc inout AND operation on the contents of the accumulator and a reference to a VAR_IN_OUT parameter Fehler The operation cannot be carried out since the VAR_IN_OUT parameter cannot be accessed outside the procedure call Invalid call example 3 LD V1 Loading a V1 variable in the accumulator InOutFB V2 Calling the procedure with assignment of the actual parameter V2 to the VAR_IN_OUT parameter Error The operation cannot be carried out as with this type of procedure call only the VAR_IN_OUT parameter would be stored in the accumulator for later use The following procedure calls are always valid Valid call example 1 CAL InOutProc IN1 V1 inout V2 Calling a procedure with the VAR_IN_OUT parameter and formal assignment of the actual parameter within the procedure call 35006144 07 2011 495 Instruction List IL Valid call example 2 InOutProc IN1 V1 inout V2 Calling a procedure with the VAR_IN_OUT parameter and formal assignment of the actual parameter within the procedure call Valid call example 3 CAL InOutProc V1 V2 Calling a procedure with the VAR_IN_OUT parameter
99. FBD LD IL and or ST The only difference to elementary function blocks is that the derived function block is represented as a frame with double vertical lines Derived Function Block FBI 1 1 DFB_EXAMP IN1 OUTI 1N2 IN3 OUT2 Procedures are functions viewed technically The only difference to elementary functions is that procedures can occupy more than one output and they support data type VAR_IN_ OUT Procedures are a supplement to IEC 61131 3 and must be enabled explicitly To the eye procedures are no different than elementary functions Procedure J PROC EXAMP INI OUTI IN OUT2 101 101 326 35006144 07 2011 Function Block Language FBD Parameters Inputs and outputs are required to transfer values to or from an FFB These are called formal parameters Objects are linked to formal parameters these objects contain the current process states They are called actual parameters Formal and actual parameters Actual Parameters FBI_2 Cr Actual Parameters CTU Clock CTU QH Output l 1 1 3 R MUX 1 varl var2 PV C a 7 Current_Value Formal Parameters At program runtime the values from the process are transferred to the FFB via the actual parameters and then output again after processing Only one object actual parameter of the following types may be linked to FFB inputs e Variable
100. Friday SW53 e 6 Saturday YEAR e 7 Sunday Sw50 Seconds 16 SS00 SW51 Hours and Minutes 16 HHMM SW52 Month and Day 16 MMDD e SW53 Year 16 YYYY These words are managed by the system when the bit S50 is set to 0 These words can be written by the user program or by the terminal when the bit S50 is set to 1 35006144 07 2011 181 System Objects Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW54 Real time System words containing date and YES YES YES STOPSEC clock time of the last power failure or PLC SW55 function on stop in Binary Coded Decimal STOPHM last stop e Sw54 Seconds 00SS SW56 SW55 Hours and Minutes STOPMD HHMM SW57 e Sw56 Month and Day MMDD STOPYEAR e Sw57 Year YYYY SW58 e sw58 the most significant byte STOPDAY contains the day of the week 1 for Monday through to 7 for Sunday and the least significant byte contains the code for the last stop e 1 change from RUN to STOP by the terminal or the dedicated input e 2 stop by watchdog PLC task or SFC overrun e 4 power outage or memory card lock operation e 5 stop on hardware fault e 6 stop on software fault Details on the type of software fault are stored in 3SwW125 SW59 Adjustment Contains two 8 bit series to adjust the 0 YES YES YES ADJDATETIME of current current date
101. Function Description Initial state SW144 BAOPMOD Fipio bus arbiter function operating mode This system word is used to start and stop the bus arbiter function and the producer consumer function It can modify the starting automatic and manual modes of the bus in the event of a stop SW144 0 e 1 producer consumer function in RUN e 0 producer consumer function in STOP no variables are exchanged on the bus SW144 1 e 1 bus arbiter is in RUN 0 0 bus arbiter is in STOP no variables or message scanning is carried out on the bus SW144 2 e 1 automatic start in the event of an automatic bus stop e 0 manual start in the event of an automatic bus stop SW144 3 to 15 reserved SW144 3 1 SW144 4 to 15 0 0 SW145 BAPARAM Modification of Fipio Bus Arbiter Parameters The bits are set to 1 by the user and reset to 0 by the system when initialization has been carried out SW145 0 1 modification of the priority of the bus arbiter the most significant byte for this system word contains the value of the priority of the bus arbiter which is to be applied to the bus SW145 1 and SW145 2 are reserved SW145 3 to SW145 7 reserved on 0 SW145 8 to SW145 15 this byte contains the value which is applied to the bus according to the value of bit 0 These parameters can be modified when the bus arbiter is in RUN but for them to be taken i
102. Function Blocks SFB do not allow to be added or removed online As a result changing the type of an EFB instance to a SFB instance is not possible and conversely 38 35006144 07 2011 Presentation In both of these cases the following dialog box is displayed On Line Modification Authorization x A You must build this modification Offline Do you confirm the modification NOTE Due to these limitations if a Derived Function Block DFB contains at least one instance of a SFB it is not be possible to add or remove instance of this DFB in online mode see Unity Pro Operating Modes 35006144 07 2011 39 Presentation Program Editor Introduction A program can be built from e Tasks that are executed cyclically or periodically Tasks are built from e Sections e Subroutines e Event processing that is carried out before all other tasks Event processing is built from e Sections for processing time controlled events e Sections for processing hardware controlled events Example of a Program Project Browser Es Structural View E Program 3 Tasks H S MAST Eh Section A Counting ues Drilling o E BEE Washing E S SR Sections E SRI SR2 J FAST F Sections 5 SR Sections J AUXO E Sections lo i B SR Sections Ek 4 Events E Timer event E Timero 1 Timer1 E 1O Events fr Evto E pt Evt1
103. IEC 61131 3 General information about IEC 61131 3 Compliance At a Glance The IEC 61131 3 Standard cf its subclause 1 4 specifies the syntax and semantics of a unified suite of programming languages for programmable controllers These consist of two textual languages IL Instruction List and ST Structured Text and two graphical languages LD Ladder Diagram and FBD Function Block Diagram Additionally Sequential Function Chart SFC language elements are defined for structuring the internal organization of programmable controller programs and function blocks Also configuration elements are defined which support the installation of programmable controller programs into programmable controller systems NOTE Unity Pro uses the English acronyms for the programming languages Further more features are defined which facilitate communication among programmable controllers and other components of automated systems Unity Pro compliance to IEC 61131 3 The current version of the Unity Pro Programming System supports a compliant subset of the language elements defined in the Standard Compliance in this context means the following e The Standard allows an implementer of an IEC Programming System to choose or to drop specific language features or even complete languages out of the Feature Tables which form an inherent part of the specifications a system claiming compliance to the Standard just has to implement the chosen feat
104. IN2 V2 101 V3 OUT1 gt V4 OUT2 gt V5 542 35006144 07 2011 Structured Text ST Calling the same function block in FBD MY_FBLOCK FBLOCK vi IN1 OUT1 v2 IN2 OUT2 V3 101 101 v4 v5 v3 VAR_IN_OUT variables cannot be used outside the function block call The following function block calls are therefore invalid Invalid call example 1 InOutFB inout V1 _ Assigning the variables v1 toa VAR_IN_OUT parameter Error The operation cannot be executed since the VAR_IN_OUT parameter cannot be accessed outside of the function block call Invalid call example 2 V1 InOutFB inout Assigning a VAR_IN_OUT parameter to the v1 variable Error The operation cannot be executed since the VAR_IN_OUT parameter cannot be accessed outside of the function block call The following function block calls are always valid Valid call example 1 InOutFB inout V1 Calling a function block with the VAR_IN_OUT parameter and formal assignment of the actual parameter within the function block call Valid call example 2 InOutFB V1 Calling a function block with the VAR_IN_OUT parameter and informal assignment of the actual parameter within the function block call 35006144 07 2011 543 Structured Text ST Procedures Procedure Parameter Procedures are provided in the form of libraries The logic of th
105. If the character _ is employed in this literal value it is not significant Example 12 0 123 456 986 An literal value in base 16 is used to represent an integer in hexadecimal The base is determined by the number 16 and the sign The signs and are not allowed For greater clarity when reading you can use the sign _ between bits Example 16 F_F or 16 FF in decimal 255 16 F_F or 16 FF in decimal 224 672 35006144 07 2011 Glossary Base 2 literals Base 8 literals BCD BIT BOOL A literal value in base 2 is used to represent a binary integer The base is determined by the number 2 and the sign The signs and are not allowed For greater clarity when reading you can use the sign _ between bits Example 2 1111_1111 or 2 11111111 in decimal 255 2 1110 0000 or 2 11100000 in decimal 224 A literal value in base 8 is used to represent an octal integer The base is determined by the number 8 and the sign The signs and are not allowed For greater clarity when reading you can use the sign _ between bits Example 8 3 77 or 8 377 in decimal 255 8 34 0 or 8 340 in decimal 224 The Binary Coded Decimal BCD format is used to represent decimal numbers between 0 and 9 using a group of four bits half byte In this format the four bits used to code the decimal numbers have a range of unused combinations Example of BCD coding e the number 2450
106. Input value is out of range GET_4X E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range GET_BIT E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range IEC_BMDI E_EFB_USER_ERROR_1 F 30200 16 8A08 Input value is in valid register type SourceTable IEC_BMDI E _EFB_USER_ERROR_2 F 30201 16 8A07 The input offset OffsetInSource Table selects an address outside acceptable limits IEC_BMDI E _EFB_USER_ERROR_3 F 30202 16 8A06 The input offset OFF_IN is not 1 or a multiple of 16 1 IEC_BMDI E _EFB_USER_ERROR_4 F 30203 16 8A05 Output value is in valid register type DestinationTable IEC_BMDI E _EFB_USER_ERROR_5 F 30204 16 8A04 The output offset OffsetInDestina tionTable selects an address outside acceptable limits 634 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO state in case of error Error value in Dec Error value in Hex Error description IEC_BMDI E_EFB_USER_ERROR F 30205 16 8A03 The output offset OffsetInDestina tionTable is not 1 or a multiple of 16 1 IEC_BMDI E_EFB_USER_ERROR 30206 16 8A02 The value for NumberOfEle ments is 0 IEC_BMDI E_EFB_USER_ERROR 30207 16 8A01 The value for NumberOfEle ments addresses more than 1600 bits IEC_BMDI E_EFB_USER_ERROR 30208 16 8A00 The value for NumberOfEle
107. Introduction Illustration A data instance is an individual functional entity which has all the characteristics of the data type to which it belongs One or more instances can belong to a data type The data instance can have a memory allocation that is e unlocated or e located Memory allocation of instances dark gray belonging to the different types Function 35006144 07 2011 231 General Overview of Data Definitions Definition of the memory allocations of data instances Data instance Definition Unlocated The memory slot of the instance is automatically allocated by the system and can change for each generation of the application The instance is located by a name symbol chosen by the user Located The memory slot of the instance is fixed predefined and never changes The instance is located by a name symbol chosen by the user and a topological address defined by the manufacturer or by the topological address of the manufacturer only 232 35006144 07 2011 General Overview of Data Overview of the Data References Introduction Illustration A data reference allows the user to access the instance of this data either by e immediate value true only for data of type EDT e address settings true only for data of type EDT e name symbol true for all EDT DDT EFB DFB data types as well as for SFC objects Possible data references according to data type
108. Ladder Language Program Principle In Ladder language there are two possible ways of calling a DFB function block e viaa textual call in an operation block in which the syntax and constraints on the parameters are identical to those of Structured Text language e via a graphic call The inputs of the function blocks may be connected or assigned a value an object or an expression In any case the type of external element value evaluation of the expression etc must be identical to that of the input parameter A DFB block must have at least one connected Boolean input and an output if necessary For this you may use the EN input parameters and the ENO output parameter see the description of these parameters below It is compulsory to connect or assign the ANY_ARRAY type inputs the generic data type outputs ANY_ and the input outputs of a DFB block Graphic Representation of a DFB Block The following illustration shows a simple DFB programming example Control_port_1 1 Control 2 ABS MDO 3 Deviation 7 Accel 8 MW8 Q1 2 1 10000 4 Speed 7 Error 8 Q1 2 5 Enable 7 MW 100 6 Actions 9 MW100 Elements of the DFB Block The following table lists the different elements of the DFB block labeled in the above illustration Label Element 1 Name of the DFB instance 2 Name of the DFB type 3 Input assigned by an ex
109. Loop Planning page 346 The execution sequence for networks that are not linked is determined by the graphic sequence from top right to bottom left This execution sequence can be influenced see Change Execution Sequence page 342 Processing on a network is ended completely before the processing begins on another network for which outputs are used on the previous network No element of a network is deemed to be processed as long as the status of all inputs of this element are not calculated Processing on a network is only ended if all outputs on this network have been processed Signal Flow within a Network For execution sequences within a network the following rules apply An FFB is only processed if all elements FFB outputs etc with which its inputs are linked are processed The execution sequence of FFBs that are linked with various outputs of the same FFB runs from top to bottom The execution sequence of FFBs is not influenced by the location within the network This does not apply if more than one FFB is linked to the same output of the calling FFB In this case the execution sequence is determined by the graphic sequence from top to bottom 35006144 07 2011 339 Function Block Language FBD Priorities Priorities in Defining the Signal Flow Within a Section Priority Rule Description 1 Link Links have the highest priorities in defining the signal flow within a FBD section
110. Mate pono OOS en e animation chilling amp threadinf lugh anim not jack_1_out and not jack _3 out Table FBD Editor My_ST MAST Comment Lio Indexing_blocki SFCST t Time 0 x Bool f tminErr Bool 35006144 07 2011 59 Presentation Breakpoint Single Step Mode Breakpoints allow you to stop processing of the project at any point ST section with breakpoint ST1 MAST ME TIMER IN NOT pulse tls Blink timer pise CE WE Breakpoint Count every pulse IF pulse 1 THEN OaE tE is END_IF Animate lights according to counter CASE OF 1 outl TRUE 2 out2 TRUE ELSE All lights are on switch then off agam and start from outl FALSE out FALSE Single step mode allows you to execute the program step by step Single step functions are provided if the project was stopped by reaching a breakpoint or if it is already in single step mode ST section in single step mode Si ST Section test MAST Care counter varl 1y paraa ri o AAE a E SE E B m E MAST call stack Calls newest to the oldest Section Instance Langu Line test test my_dfb ST 1 4 test1 ST 2 1 Display Close The following functions are provided in single step mode Step by step execution of the program Stepln 1 S
111. Mode PLC in RUN the processor carries out internal processing input acquisition processing of the application program and the updating of outputs in that order PLC in STOP the processor carries out e internal processing e input acquisition 1 e and depending on the chosen configuration e fallback mode the outputs are set to fallback position e maintain mode the last value of the outputs is maintained 1 for Premium Atrium and Quantum PLCs input acquisition is inhibited when the PLC is in STOP 35006144 07 2011 83 Program Structure Mono Task Cyclic Execution General The master task operates as outlined below A description is provided of cyclic execution of the master task in mono task operation Operation The following drawing shows the execution phases of the PLC cycle Processing the Processing program the program l Q l Q Cycle n Cycle n 1 ma ap gt l Reading of inputs Q Writing of outputs Description This type of operation consists of sequencing the task cycles one after another After having updated the outputs the system performs its own specific processing then starts another task cycle without pausing Cycle Check The cycle is checked by the watchdog see page 86 84 35006144 07 2011 Program Structure Periodic Execution Description Operation Operating Mode Cycle Check In this operating mode input acquisition
112. Naming convention identifier NAN An identifier is a sequence of letters numbers and underlines beginning with a letter or underline e g name of a function block type an instance a variable or a section Letters from national character sets e g 6 U 6 can be used except in project and DFB names Underlines are significant in identifiers e g A BCD and AB CD are interpreted as different identifiers Multiple leading underlines and consecutive underlines are invalid Identifiers cannot contain spaces Not case sensitive e g ABCD and abcd are interpreted as the same identifier According to IEC 61131 3 leading digits are not allowed in identifiers Nevertheless you can use them if you activate in dialog Tools Project settings in tab Language extensions the check box Leading digits Identifiers cannot be keywords Used to indicate that a result of an operation is not a number NAN Not A Number Example calculating the square root of a negative number NOTE The IEC 559 standard defines two classes of NAN quiet NAN QNAN and signaling NaN SNaN QNAN is a NAN with the most significant fraction bit set and a SNAN is a NAN with the most significant fraction bit clear Bit number 22 QNANs are allowed to propagate through most arithmetic operations without signaling an exception SNAN generally signal an invalid operation exception whenever they appear as operands in arithmetic operations See SW17 and S18 686
113. POU bodies according to functional aspects the user has the possibility to subdivide his POU body into functionally meaningful parts The list of sections represents a kind of functional table of contents of a large otherwise unstructured POU body e Sections allow to subdivide large POU bodies according to graphical aspects the user has the possibility to design substructures of a large POU body according to an intended graphical presentation He can create small or large graphical sections according to his taste e The subdivision of large POU bodies allows quick online changes in Unity Pro the Section serves as the unit for online change If a POU body is modified during runtime at different locations automatically all sections affected by the changes are downloaded on explicit request e Sections allow to rearrange the execution order of specific labeled parts of a POU body the section name serves as a label of that part of the body which is contained inside the section and by ordering these labels the execution order of those parts is managable 664 35006144 07 2011 IEC Compliance e Sections allow to use different languages in parallel in the same POU this feature is a major extension of the IEC syntax which allows only one single IEC language to be used for a POU body In a compliant body SFC has to be used to manage different languages inside a body each transition and action may be formulated in its own language
114. Pro main window NOTE In the Open menu window the selected file type must be Unity Pro Application Exchange File XEF For more information about creating an XEF file see the Unity Pro Installation Manual see Unity Pro Installation manual Create Unity Pro Application Exchange File see Unity Pro Installation manual For more information about restoring an XEF file see the Unity Pro Installation Manual see Unity Pro Installation manual Restoring Unity Pro Application Exchange File see Unity Pro Installation manual The following table presents the XEF file advantages and drawbacks Advantages Drawbacks e The XML source e Medium size format ensures project compatibility with any version of Unity Pro e Generation of the project is mandatory to re assemble the project binary code Opening of the project takes time while the project is imported before operation e Operating with the PLC requires to rebuild all the project and perform a download in the processor e Connecting to the PLC in Equal Online mode with an XEF file is not possible For additional information see Connection Disconnection see Unity Pro Operating Modes in the Operating Modes see Unity Pro Operating Modes manual Important Information The STU files are not compatible across Unity Pro versions In order to use a project with different Unity Pro versions users must either store the e Unity Pro Arc
115. String2 STRING 4 String3 STRING 4 tringl AAAAAAAA Gring3s TCO cenario 1 S S S String2 BBBB the size of the string is equal to the maximum declared size Stringl SEL FALSE String2 String3 the result will be BBBBAAAA Scenario 2 String2 BBB the size of the string is less than the maximum declared size Stringl SEL FALSE String2 String3 the result will be BBB 260 35006144 07 2011 Data Types 8 5 Elementary Data Types EDT in Bit String Format Subject of this Section This section describes data types in bit string format These are e Byte type e Word type e Dword type What s in this Section This section contains the following topics Topic Page Overview of Data Types in Bit String Format 262 Bit String Types 263 35006144 07 2011 261 Data Types Overview of Data Types in Bit String Format Introduction Data types in bit string format belong to the EDT Elementary data type family which includes single rather than derived data types tables structure function blocks Reminder Concerning Bit String Format The particularity of this format is that all of its component bits do not represent a numerical value but a combination of separate bits The data belonging to types of this format can be represented in three bases These are e
116. This zone contains the executable codes of the application e program code e code associated with EFs EFBs and the management of I O modules e code associated with DFBs e initial variable values This zone also contains the necessary information for downloading the application graphic codes symbols etc On 140 CPU 31 41 51 processors this contains the operating system for processing the application This operating system is transferred from an internal EPROM memory to internal RAM on power up A Flash EPROM memory zone of 1435K8 available on processors 140 CPU 310 41e 51 can be used to backup the program and the initial values of variables The application stored in this zone is automatically transferred to internal RAM when the PLC processor is powered up if the PLC MEM switch is set to off on the processor front panel 35006144 07 2011 119 Memory Structure Other Information Other information relating to the configuration and structure of the application are also stored in the memory in a data or program zone depending on the type of information e Configuration other data relating to the configuration hardware configuration software configuration e System data used by the operating system task stack etc e Diagnostics information relating to process or system diagnostics diagnostics buffer 120 35006144 07 2011 Operating Modes Subject of this Chapter The chapte
117. TypeINT exponent DINT UINT UDINT Example In the example OUT is 20 0 if IN1 is 5 0 or REAL and IN2 is 4 0 OUT IN1 IN2 Note The MULTIME function in the obsolete library is available for multiplications involving the data type Time Division 5 Expression Literal In division the value of the first operand is Variable Address of divided by the value of the second operand Data TypeINT Example In the example OUT is 4 0 if IN1 is 20 0 DINT UINT UDINT and IN2 is 5 0 or REAL OUT IN1 IN2 Note The DIVTIME function in the obsolete library is available for divisions involving the data type Time MOD Modulo 5 Expression Literal For MOD the value of the first operand is divided Variable Address of by that of the second operand and the remainder Data Type INT of the division Modulo is displayed as the result DINT UINT or Example In this example UDINT ouTis 1 if IN1 is 7 and IN2 is 2 ouT is 1 if IN1 is 7 and IN2 is 2 OUT is 1 if IN1 is 7 and IN2 is 2 OUT is 1 if IN1 is 7 and IN2 is 2 OUT IN1 MOD IN2 Addition 6 Expression Literal In addition the value of the first operand is Variable Address of added to the value of the second operand Data Type INT Example In this example DINT UINT OUT is 9 if IN1 is 7 and IN2 is 2 UDINT REAL or OUT IN1 IN2 TIME E Subtraction 6 Expression Literal In subtraction the value of the second operand Variable Address of
118. User Definition User Access to Execution Sequence 3 Network by Processing on a network is ended completely before the Network processing begins on another network 4 Output Sequence FFBs that are linked to the outputs of the same calling FFB are processed from top to bottom 5 Rung by Rung Lowest priority Only applies if none of the other rules apply 340 35006144 07 2011 Function Block Language FBD Example Example of the Execution Sequence of Objects in an FBD Section NW1 NW2 NW3 9 AND 14 4 3 AND AND ENO 15 5 AND 17 10 AND 9 AND 18 11 AND EN ENO AND 20 AND AND AND Nw4 35006144 07 2011 341 Function Block Language FBD Change Execution Sequence Introduction Original Situation The execution order of networks and the execution order of objects within a network are defined by a number of rules see page 340 In some cases the execution order suggested by the system should be changed The procedure for defining changing the execution sequence of networks is as follows e Using links instead of actual parameters e Network positions e Explicit execution sequence definition The procedure for defining changing the execution sequence of networks is as follows e FFB positions The following diagram sho
119. Values EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error MULDIV_W FP_ERROR F See table Common Floating Point Errors page 637 SUM_W FP_ERROR F See table Common Floating Point Errors page 637 Measurement Table of error codes and errors values created for EFBs of the Measurement family EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error AVGMV E_ERR_DEN F 30152 16 8A38 Not a valid floating point number AVGMV W_WARN_AVGMV T 30108 16 759C AVGMV N must be lt 50 AVGMV FP_ERROR F See table Common Floating Point Errors page 637 AVGMV_K E_ERR_DEN F 30152 16 8A38 Not a valid floating point number AVGMV_K W_WARN_AVGMV_K T 30109 16 759D AVGMV_K N must be lt 10000 AVGMV_K FP_ERROR F See table Common Floating Point Errors page 637 DEAD_ZONE E_ERR_DEN 30152 16 8A38 Not a valid floating point number DEAD_ZONE E_ERR_DZONE 30119 16 8A59 DZONE DZ must be gt 0 DEAD_ZONE FP_ERROR See table Common Floating Point Errors page 637 LOOKUP_TABLE1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number LOOKUP_TABLE1 E_ERR_POLY_ANZAHL F 30107 16 8A65 number of inputs not even LOOKUP_TABLE1 E_ERR_POLY_FOLGE F 30108 16 8A64 base point x i lt x i 1 LOOKUP_TABLE1 FP_ERROR F See table Common Floating P
120. a d If Then If transition condition a is true and b is false then a sequence runs toS 6 1 Since S_6 1 ands _ 6 2 are linked by a parallel merge the branch cannot be departed because S_ 6 1 ands 6 2 can never be active at the same time Either s_6_1 is activated with transition condition a or S_6_2 with transition condition b Therefore Ss 6 1 ands 6 2 can never be active at the same time either The string is blocked This block can be removed for example by a second timed token that runs via transition b 35006144 07 2011 437 SFC Sequence Language Parallel Strings Parallel Strings With parallel branches switching a single transition leads to a parallel activation of more than one maximum 32 steps branches This applies with Single Token as well as with Multi Token Processing Parallel Strings l S_5_10 S_5_16 Then IfS_5 10 is active and transition condition a which belongs to the common transition is also true then a sequence runs from s_5 10 to S 5 11 8 5 12ands 5 13 IfstepsS 5 11 S 5 12ands_ 5 13 are activated then the strings run independently of one another lfs 5 14 S 5 15ands 5 16 areactiveat the same time and transition condition e which belongs to the common transition is true then a sequence is run from s 5 14 s_5 15ands 5 16tos 5
121. after the first run of the task driving this output After power is restored the outputs remain in the fallback position until they are updated by the task 35006144 07 2011 143 Operating Modes Automatic Start in RUN for Premium Quantum Description Automatic start in RUN is a processor configuration option This option forces the PLC to start in RUN after a cold restart see page 136 except after an application has been loaded onto the PLC For Quantum PLCs automatic start in RUN also depends on the position of the switch on the front panel of the processor For more details refer to the Quantum documentation see Quantum with Unity Pro Hardware Reference Manual A WARNING UNEXPECTED SYSTEM BEHAVIOR UNEXPECTED PROCESS START The following actions will trigger automatic start in RUN Inserting the PCMCIA card when the PLC is powered up Premium Quantum Replacing the processor while powered up Premium Quantum Unintentional or careless use of the reset button If the battery is found to be defective in the event of a power outage Premium Quantum To avoid an unwanted restart when in RUN mode e We stongly recommend to use the RUN STOP input on Premium PLCs or the switch on the front of the panel of the processor for Quantum PLCs e We strongly recommend not to use memorized inputs as RUN STOP input of the PLC Failure to follow these instructions can result in death serious injury or equipmen
122. and informal assignment of the actual parameter within the procedure call 496 35006144 07 2011 Structured Text ST 15 Overview This chapter describes the programming language structured text ST which conforms to IEC 61131 What s in this Chapter This chapter contains the following sections Section Topic Page 15 1 General Information about the Structured Text ST 498 15 2 Instructions 508 15 3 Calling Elementary Functions Elementary Function Blocks 528 Derived Function Blocks and Procedures 35006144 07 2011 497 Structured Text ST 15 1 General Information about the Structured Text ST Overview This section contains a general overview of the structured text ST What s in this Section This section contains the following topics Topic Page General Information about Structured Text ST 499 Operands 502 Operators 504 498 35006144 07 2011 Structured Text ST General Information about Structured Text ST Introduction With the programming language of structured text ST it is possible for example to call up function blocks perform functions and assignments conditionally perform instructions and repeat tasks Expression The ST programming language works with Expressions Expressions are constructions consisting of operators and operands that return a value when executed Operator Operators are symbol
123. assignments are a supplement to IEC 61131 3 and must be enabled explicitly Even after being enabled multiple assignments are NOT allowed in the following cases e inthe parameter list for a function block call e inthe element list to initialize structured variables The instruction X Y Z is allowed The instructions FB inl 1 In2 In3 2 and strucVar compl 1 comp2 comp3 2 are not allowed 35006144 07 2011 511 Structured Text ST Assignments between Arrays and WORD DWORD Variables Assignments between arrays and WORD DWORD variables are only possible if a type conversion has previously been carried out e g Q03 0 16 INT TO AR BOOL MW20 The following conversion functions are available General Library family Array e MOVE BOOL AREBOOL e MOVE WORD ARWORD e MOVE DWORD ARDWORD e MOVE INT ARINT e MOVE DINT _ARDINT e MOVE REAL ARREAL 512 35006144 07 2011 Structured Text ST Select Instruction IF THEN END_IF Description The IF instruction determines that an instruction or a group of instructions will only be executed if its related Boolean expression has the value 1 true If the condition is O false the instruction or the instruction group will not be executed The THEN instruction identifies the end of the condition and the beginning of the instruction s The END_IF instruction marks the end of the
124. be nested to generate complex selection instructions Example ELSIF THEN IF A gt B THEN C SIN A COS B B SUB C A ELSIF A B THEN C ADD A B B MUL C A END _IF For Example Nested Instructions IF A gt B THEN IF B C THEN C SIN A COS B ELSE B SUB C A END_IF ELSIF A B THEN C ADD A B B MUL C A ELSE C DIV A B END_IF See Also IF see page 513 ELSE see page 514 r 35006144 07 2011 515 Structured Text ST Select Instruction CASE OF END_CASE Description The CASE instruction consists of an INT data type expression the selector anda list of instruction groups Each group is provided with a tag which consists of one or several whole numbers INT DINT UINT UDINT or ranges of whole number values The first group is executed by instructions whose tag contains the calculated value of the selector Otherwise none of the instructions will be executed The OF instruction indicates the start of the tag An ELSE instruction may be carried out within the CASE instruction whose instructions are executed if no tag contains the selector value The END_CASE instruction marks the end of the instruction s Example CASE OF END_CASE ExamplecAsE OF END CASE Selector CASE SELECT OF 45 2 C SIN A COS B Tags 2i Bere AAi 6 10 C C A ELSE BosC Ao C A B EN
125. belonging to a task Mast Fast Aux which can be written in the language chosen by the programmer FBD LD ST or IL A subroutine may only be called by a section or by another subroutine belonging to the task in which it is declared T A group of sections and subroutines executed cyclically or periodically for the MAST task or periodically for the FAST task A task possesses a level of priority and is linked to inputs and outputs of the PLC These I O are refreshed in consequence The type TIME expresses a duration in milliseconds Coded in 32 bits this type makes it possible to obtain periods from 0 to 2 to the power of 32 1 milliseconds The units of type TIME are the following the days d the hours h the minutes m the seconds s and the milliseconds ms A literal value of the type TIME is represented by a combination of previous types preceded by T t TIME or time Examples T 25h15m t 14 7S TIME 5d10h23m45s3ms In communication projects The Time out is a delay after which the communication is stopped if there is no answer of the target device see TOD 35006144 07 2011 691 Glossary TOD Token UDINT UINT TOD is the abbreviation of Time of Day The TOD type coded in BCD in 32 bit format contains the following information e the hour coded in a 8 bit field e the minutes coded in an 8 bit field e the seconds coded in an 8 bit field NOTE The 8 least signi
126. bit on line 1 of B are always identical Solution In this example the variable B is first assigned to the link to recognize positive edges and then the coil B c Ld A B f QS A Value bit p B Value bit B Force Bit m B History Bit C Value bit i At the beginning of the second cycle the value bit of B equals 0 When forcing B within this cycle the force bit and value bit are set to 1 While processing the first line of the logic in the third cycle the history bit of the link B will remain set to 0 Edge recognition recognizes the difference between value bits and history bit and sets the coil C to 1 for one cycle Using Set Coil or Reset Coil Can Cause the Loss of Edge Recognition Using set coil or reset coil can cause the loss of edge recognition with EBOOL variables The variable above the set reset coil variable c in the example is always affected by the value of the left link If the left link is 1 the value bit variable c in the example is copied to the history bit and the value bit is set to 1 378 35006144 07 2011 Ladder Diagram LD If the left link is O the value bit variable c in the example is copied to the history bit but the value bit is not changed This means that whatever value the left link has before the set or reset coil the history bit is always updated In the
127. bit value that changes at every application modification except when updating upload information replacing the initial value with the current value e saving the parameter command They can be read by the user program or by the terminal YES NO NO 35006144 07 2011 189 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SWIE6 Com CMDDIAGSAVEREST mandand Diagnos tic of Save and Restore This word is used to copy or delete the current value of Mw to or from internal flash memory see page 109 and to give the action s status It can be read by the user program or by the terminal e SW96 0 Request to copy current value of MW to internal Flash memory Set to 1 by the user to request a save and set to 0 by the system when a save is in progress NOTE You must stop the processor before copying via SW96 0 SW96 1 is set to 1 by the system when a Save is finished and set to 0 by the system when a save is in progress SwW96 2 1 indicates an error on a save or restore operation see Sw96 8 to 15 for error code definitions e SwW96 3 1 indicates that a restore operation is in progress SW96 4 may be setto 1 by the user to delete MW area in internal Flash memory SW96 7 1 indicates that internal memory has valid Mw backup YES NO NO SW96 CMDDIA
128. can be done either in the data editor or in the properties editor in the same way as in offline mode A CAUTION UNEXPECTED APPLICATION BEHAVIOR When changing the type of a variable the new value of the variable to be modified depends on its kind e Inthe case of an unlocated variable the variable is set to the initial value if one exists Otherwise it is set to the default value e Inthe case of a located variable the variable restarts with the initial value if one exists Otherwise the current binary value is unchanged Before applying the variable type change check the impact of the new value of the variable on the application execution Failure to follow these instructions can result in injury or equipment damage NOTE It is not possible to modify the type of a variable declared in Derived Data Type DDT in online mode see Unity Pro Operating Modes The application has to be switched into offline mode see Unity Pro Operating Modes in order to build such a modification Online Modifications In the following cases the online type modification of a variable or of a Function Block FB is not allowed e Ifthe variable is used as network global data the online type modification is not permitted e Whether the current FB can not be removed online or anew FB can not be added online the online type modification of this FB is not allowed Indeed some Elementary Function Blocks EFB like the Standard
129. change behavior Steps and transitions are linked to one another through directional links Two steps can never be directly linked and must always be separated by a transition The active signal status processes take place along the directional links and are triggered by switching a transition The direction of the chain process follows the directional links and runs from the end of the preceding step to the top of the next step Branches are processed from left to right Every step has zero or more actions A transition condition is necessary for every transition The last transition in the chain is always connected to another step in the chain via a graphic link or jump symbol to create a closed loop Step chains are therefore processed cyclically SFCCHART_STATE Variable When an SFC section is created it is automatically assigned a variable of data type SFCCHART_ STATE The variable that is created always has the name of the respective SFC section This variable is used to assign the SFC control blocks to the SFC section to be controlled Token Rule The behavior of an SFC network is greatly affected by the number of tokens selected i e the number of active steps Explicit behavior is possible by using one token single token Parallel branches each with an active token step per branch as a single token This corresponds to a step chain as defined in IEC 61131 3 A step chain with a number of maximum active steps M
130. cycle time e SW30 contains the execution time of the last cycle e SW31 contains the execution time of the longest cycle e SW32 contains the execution time of the shortest cycle NOTE These different items of information can also be accessed explicitly from the configuration editor 86 35006144 07 2011 Program Structure Execution of Quantum Sections with Remote Inputs Outputs General Quantum PLCs have a specific section management system It applies to stations with remote inputs outputs These stations are used with following RIO modules e 140 CRA 931 00 e 140 CRA 932 00 This system allows remote inputs outputs to be updated on sections with optimum response times without waiting for the entire task cycle before updating the inputs outputs Operation The following diagram shows the IO phases when 5 drops are associated to client task sections Process USER EXEC ira pocoazaza li inputs of drop No i Qi outputs of drop No i i drop number 35006144 07 2011 87 Program Structure Description Phase Description 1 Request to update e the inputs of the first drop i 1 e the outputs of the last drop i 5 2 Processing the program e Updating the inputs of the first drop i 1 e Request to update the inputs of the second drop i 2 4 Request to update e the inputs of the third drop i 3 e the outputs of the first drop i 1 5 Request to update e the inputs
131. defined in the configuration one in internal RAM Restore application from memory card with Cold start forced in STOP or RUN mode as Unity Pro commands PLC Project defined in the configuration backup RESET button pressed on supply Cold start forced in STOP or RUN mode as defined in the configuration RESET button pressed on supply less than Cold start forced in STOP or RUN mode as 500ms after a power down defined in the configuration RESET button pressed on supply after a Cold start forced in STOP The start in RUN processor error except in the case of a mode as defined in the configuration is not watchdog error taken into account Initialization from Unity Pro Start in STOP or in RUN retaining the Forcing the system bit SO operating mode in progress at downtime initialization only of application Restoral after power supply outage with loss Cold start forced in STOP or RUN mode as of context defined in the configuration 4 CAUTION LOSS OF DATA ON APPLICATION TRANSFER Loading or transferring an application to the PLC typically involves initialization of unlocated variables To save the located variables e Avoid the initialization of the sMwi by unchecking Initialize MWi on cold start in the configuration screen of the CPU It is necessary to assign a topological address to the data if the process requires keeping the current values of the data when transferring the applicatio
132. documents can be web pages files xls pdf wav mp3 jpg gif etc 682 35006144 07 2011 Glossary 1 0 Object An I O object is an implicit or explicit language object for an expert function module or a I O device on a fieldbus They are of the following types Ch l IW ID VIF YQ QW QD QF KW KD KF MW MD and MF The objects topological address depends on the module s position on the rack or the device s position on the bus For Premium Atrium PLCs double type instances of located data SMD lt i gt sKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type SMW lt i gt SKW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SQF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are not available IEC 61131 3 International standard Programmable Logic Controls Part 3 Programming languages IL is the abbreviation of Instruction List This language is a series of basic instructions This language is very close to the assembly language used to program processors Each instruction is composed of an instruction code and an operand 35006144 07 2011 683 Glossary INF Instanciate INT Integer literals
133. e Address e Literal e ST Expression see page 499 ST expressions on FFB inputs are a supplement to IEC 61131 3 and must be enabled explicitly e Link The following combinations of objects actual parameters can be linked to FFB outputs e one variable e avariable and one or more connections but not for VAR_IN_OUT see page 333 outputs e an address e an address and one or more connections but not for VAR_IN_OUT see page 333 outputs e one or more connections but not for VAR_IN_OUT see page 333 outputs The data type of the object to be linked must be the same as that of the FFB input output If all actual parameters consist of literals a suitable data type is selected for the function block Exception For generic FFB inputs outputs with data type ANY_BIT it is possible to link objects of data type INT or DINT not UINT and UDINT This is a supplement to IEC 61131 3 and must be enabled explicitly 35006144 07 2011 327 Function Block Language FBD Example Allowed OUT IntVar3 AND IntVarl IN1 IntVar2 jIN2 Not allowed 1 AND_WORD IntVarl IN1 OUT IntVar2 jIN2 H IntVar3 In this case AND_ INT must be used Not all formal parameters have to be assigned an actual parameter However this does not apply in the case of negated pins These must always be assigned an actual parameter This is also the case with some formal parameter types These types are s
134. e Comment of a maximum of 1024 characters Formatting characters carriage return tab etc are not authorized For each type of DFB a descriptive file is also accessible via a dialog box size of the DFB number of parameters and variables version number date of last modification protection level etc Online Help for DFB Types It is possible to link an HTML help file to each DFB in the User Defined Library This file must e Have a name that is identical to the linked DFB e Be located in the directory Schneider Electric FFBLibset CustomLib MyCustomFam Language where Language is named Eng Fre Ger lta Spa or Chs according to the language desired Creation of a DFB Instance Once the DFB type is created you can define an instance of this DFB via the variable editor or when the function is called in the program editor Use of DFB Instances A DFB instance is used as follows e asa standard function block in Ladder LD or Functional Block Diagram FBD language e as an elementary function in Structured Text ST or Instruction List IL language A DFB instance can be used in all application program tasks except event tasks and Sequential Function Chart SFC transitions Storage The DFB types the user creates can be stored see Unity Pro Operating Modes in the function and function block library 35006144 07 2011 557 Overview of DFBs 558 35006144 07 2011 Description of User Function Blocks
135. e Input assistance for functions and function blocks e Operands can be entered and displayed as symbols or topological addresses e Display of inspection windows 50 35006144 07 2011 Presentation Structured Text ST Introduction Representation Objects Input Aids The ST editor is used for programming in structured text according to IEC 61131 3 Representation of an ST section Operator Operand Comment Instruction fy SS D B B 4 A C Basis Calculation IF D lt 0 0 THEN NROOTS 0 ELSIF D 0 0 THEN Inspection window NROOTS 1 X1 B 2 0 A ELSE Expression NROOTS 2 oe EA X1 B SORTOJ 20A X2 B SORT D 2 0 A END IF Tooltip Varx 15 Undeclared Variable PLDI E1061 Undefined Symbol Varx The ST programming language works with Expressions Expressions are constructions consisting of operators and operands that return a value when executed Operators are symbols representing the operations to be executed Operators are used for operands Operands are variables literals function and function block inputs outputs etc Instructions are used to structure and control the expressions The ST editor offers the following input aids e Syntax and semantics are checked as the program is being written e Keywords and comments are displayed in color e Unknown words e g undeclared variables or unsuitable data typ
136. end at the same time the lowest timer number is processed first The system word SW48 counts IO events and telegram processed NOTE TELEGRAM is available only for PREMIUM not on Quantum or M340 680 35006144 07 2011 Glossary Fast task FBD FFB Flash Eprom FNES Function Function block Task launched periodically setting of the period in the PC configuration used to carry out a part of the application having a superior level of priority to the Mast task master FBD is the abbreviation of Function Block Diagram FBD is a graphic programming language that operates as a logic diagram In addition to the simple logic blocks AND OR etc each function or function block of the program is represented using this graphic form For each block the inputs are located to the left and the outputs to the right The outputs of the blocks can be linked to the inputs of other blocks to form complex expressions Collective term for EF Elementary Function EFB Elementary Function Block and DFB Derived Function block PCMCIA memory card containing the program and constants of the application FNES is the abbreviation of Fichiers Neutres d Entr es Sorties Neutral I O Documentation FNES format describes using a tree structure the PLCs in terms of rack cards and channels It is based on the CNOMO standard comit de normalisation des outillages de machines outils see EF see EFB 35006144 07 20
137. errors Error codes Error value Error value Error description in Dec in Hex FP_ERROR 30150 16 8A3A Base value not apearing as an error value E_FP_STATUS_FAILED_IE 30151 16 8A39 Illegal floating point operation E_FP_STATUS_FAILED_DE 30152 16 8A38 Operand is denormalized not a valid REAL number E_FP_STATUS_FAILED_ZE 30154 16 8A36 Illegal divide by zero E_FP_STATUS_FAILED_ZE_IE 30155 16 8A35 Illegal floating point operation Divide by zero E_FP_STATUS_FAILED_OE 30158 16 8A32 Floating point overflow E_FP_STATUS_FAILED_OE_IE 30159 16 8A31 Illegal floating point operation Overflow E_FP_STATUS_FAILED_OE_ZE 30162 16 8A2E Floating point overflow Divide by zero E_FP_STATUS_FAILED_OE_ZE_IE 30163 16 8A2D Illegal floating point operation Overflow Divide by zero E_FP_NOT_COMPARABLE 30166 16 8A2A Internal error 35006144 07 2011 637 EFB Error Codes and Values 638 35006144 07 2011 IEC Compliance Overview This chapter contains the compliance tables required by IEC 61131 3 What s in this Chapter This chapter contains the following sections Section Topic Page B 1 General Information regarding IEC 61131 3 640 B 2 IEC Compliance Tables 642 B 3 Extensions of IEC 61131 3 664 B 4 Textual language syntax 666 35006144 07 2011 639 IEC Compliance B 1 General Information regarding
138. events triggered by input output modules by setting the input output module s implicit language objects for unmasking of events to 1 By default the events are masked e Check that the stack of events at system level is not saturated bit S39 must be at 0 3 Event program creation phase The program must e Determine the origin of the event s on the basis of the event status word associated with the input output module if the module is able to generate several events e Carry out the reflex processing associated with the event This process must be as short as possible e Write the reflex outputs concerned Note the event status word is automatically reset to zero 35006144 07 2011 105 Program Structure Illustration of Event Unmasking This figure shows event unmasking in the MAST task Unmasking events UNMASKEVT EN ENO If cold start THEN authorize events S1 S38 S If cold start THEN unmask threshold 0 crossing event QW1 1 0 5 S1 YAW 1 0 1 5 If cold start THEN unmask threshold 1 crossing event QW1 1 0 6 9 S1 71 0 1 6 Illustration of the Contents of Event Processing This figure shows the possible contents of event processing bit test and action If crossing threshold event 0 THEN set physical output Q2 0 to 1 YAW 1 0 3 5 YQ2 0 H S If crossing threshold event 1 THEN set physical output Q2
139. example a positive edge of the variable c should be recognized and set D for a cycle Code line Behavior in LD Corresponds to in ST 1 Original situation c 0 History bit 0 IF A AND B A B c THEN C 1 o o A ELSE C C a END IF A 1 B 1 c 1 History bit 0 2 5 een Pa NOT B 1 1 R ELSE C C END IF A 1 B 1 c 1 History 1 3 D g p 1P Ma C 1 History 1 D 0 as the value bit and history bit of c are identical The rising edge of C shown in code line 1 is not recognized by the code in line 2 as this forces the history bit to be updated If the condition is FALSE the present value of C is again assigned to C see ELSE statement in code line 2 in ST example 35006144 07 2011 379 Ladder Diagram LD Execution Sequence and Signal Flow Execution Sequence of Networks The following rules apply to network execution sequences Executing a section is completed network by network based on the object links from above and below Links may not be used to create loops since the sequence of execution in this case cannot be clearly determined Loops must be created using actual parameters see Loop Planning page 382 The execution sequence of networks which are only linked by the left power rail is determined by the graphical sequence from top to bottom in which these are connected to the left power rail This does not apply
140. i Generating Via an Actual Parameter This type of logic must be resolved using feedback variables so that the signal flow can be determined Feedback variables must be initialized The initial value is used during the first execution of the logic Once they have been executed the initial value is replaced by the actual value Pay attention to the two different types of execution sequences number in brackets after the instance name for the two blocks Loop generated with an actual parameter Type 1 5 6 OR AND IN1 OUTI OUT1 IN2 Loop generated with an actual parameter Type 2 5 6 OR AND IN1 OUT2 OUT2 IN2 i 346 35006144 07 2011 Ladder Diagram LD 12 Overview This chapter describes the ladder diagram language LD which conforms to IEC 611311 What s in this Chapter This chapter contains the following topics Topic Page General Information about the LD Ladder Diagram Language 348 Contacts 351 Coils 352 Elementary Functions Elementary Function Blocks Derived Function Blocks 354 and Procedures FFBs Control Elements 364 Operate Blocks and Compare Blocks 365 Links 367 Text Object 370 Edge Recognition 371 Execution Sequence and Signal Flow 380 Loop Planning 382 Change Execution Sequence 383 35006144 07 2011 3
141. if the sequence is influenced by control elements Processing on a network is ended completely before the processing begins on another network No element of a network is deemed to be processed until the status of all inputs of this element have been processed Processing on a network is only ended if all outputs on this network have been processed This also applies if the network contains one or more control elements Signal Flow within a Network For signal flow within a network rungs the following rules apply The signal flow for Boolean links is e left to right with horizontal Boolean links and e from top to bottom with vertical Boolean links The signal flow with FFB links is from the FFB output to the FFB input regardless of which direction they are made in An FFB is only processed if all elements FFB outputs etc to which it s inputs are linked are processed The execution sequence of FFBs that are linked with various outputs of the same FFB runs from top to bottom The execution sequence of objects is not influenced by their positions within the network The execution sequence for FFBs is represented as execution number by the FFB 380 35006144 07 2011 Ladder Diagram LD Priorities Priorities when defining the signal flow within a section Priority Rule Description 1 Link Links have the highest priorities in defining the signal flow within an LD section 2 Network
142. indicates an output double word type language object Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SQF IF by using their topological address for example 3MD0 6 0 11 MFO 6 0 31 QF According to the IEC standard smw indicates an output real type language object Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SOF IF by using their topological address for example SMD0 6 0 11 SMFO 6 0 31 QW According to the IEC standard QW indicates an analog output type language object A Animating the links This is also called power flow and refers to a type of animation used with Ladder language and the function blocks The links are displayed in red green or black according to the variables connected 670 35006144 07 2011 Glossary ANY There is a hierarchy between the different types of data In the DFB it is sometimes possible to declare which variables can contain several types of values Here we use ANY xxx types The following diagram shows the hierarchically ordered structure ANY ANY_ELEMENTARY ANY_MAGNITUDE_OR_BIT ANY_MAGNITUDE ANY_NUM ANY_REAL REAL ANY_INT DINT INT UDINT UINT TIME ANY_BIT DWORD WORD BYTE BOOL ANY_STRING STRING ANY_DATE DATE_AND_TIME DATE TIME_OF_DAY EBOOL ANY_DERIVED ANY_ARRAY ANY_ARRAY_ANY_EDT JANY_ARRAY
143. instruction s NOTE Any number of IF THEN END_IF instructions may be nested to generate complex selection instructions Example IF THEN END_IF The condition can be expressed using a Boolean variable If FLAG is 1 the instructions will be executed if FLAG is 0 they will not be executed IF FLAG THEN C SIN A COS B B C Aj END_IF The condition can be expressed using an operation that returns a Boolean result If Ais greater than B the instructions will be executed if A is less than or equal to B they will not be executed IF A gt B THEN C SIN A COS B B C Aj END_IF Example IF NOT THEN END_ IF The condition can be inverted using NOT execution of both instructions at 0 IF NOT FLAG THEN C SIN REAL A COS REAL B Bea AN END_IF See Also SSE see page 514 ELSIF see page 515 35006144 07 2011 513 Structured Text ST Select Instruction ELSE Description The ELSE instruction always comes afteran IF THEN ELSIF THENOrCASE instruction If the ELSE instruction comes after an IF or ELSIF instruction the instruction or group of instructions will only be executed if the associated Boolean expressions of the IF and ELSIF instruction are 0 false If the condition of the IF or ELSIF instruction is 1 true the instruction or group of instructions will not be executed
144. link is 1 the ST instruction in the block block OPERATE is executed RES lt FCT_NAME gt All ST instructions see page 499 are allowed except the control instructions RETURN JUMP IF CASE FOR e etc For operate blocks the state of the left link is passed to the right link regardless of the result of the ST instruction A block can contain up to 4096 characters If not all characters can be displayed then the beginning of the character sequence will be followed by suspension points An operate block takes up 1 line and 4 columns Example Ind Out1 In2 H instruction H Hinstructionz lt In the example Instruction1 is executed if In1 1 Instruction2 is executed if In1 1 and In2 1 the result of Instruction1 has no meaning for the execution of Instruction2 Out becomes 1 if In1 1 and In2 1 the results of Instruction1 and Instruction2 have no meaning for the status of Out1 35006144 07 2011 365 Ladder Diagram LD Designation Representation Description Horizontal Matching Block m COMPARE _ lt obj1 OP obj2 gt Horizontal compare blocks used to execute a compare expression lt gt lt gt lt gt in the ST programming language Note The same functionality is also possible using ST expressions see page 499 A compare block performs an AND of its
145. maintain it The following special messages may appear throughout this documentation or on the equipment to warn of potential hazards or to call attention to information that clarifies or simplifies a procedure The addition of this symbol to a Danger or Warning safety label indicates that an electrical hazard exists which will result in personal injury if the instructions are not followed personal injury hazards Obey all safety messages that follow this symbol to avoid possible injury or death A DANGER DANGER indicates an imminently hazardous situation which if not avoided will result in death or serious injury A WARNING WARNING indicates a potentially hazardous situation which if not avoided can result in death or serious injury This is the safety alert symbol It is used to alert you to potential 35006144 07 2011 11 PLEASE NOTE A CAUTION CAUTION indicates a potentially hazardous situation which if not avoided can result in minor or moderate injury CAUTION CAUTION used without the safety alert symbol indicates a potentially hazardous situation which if not avoided can result in equipment damage Electrical equipment should be installed operated serviced and maintained only by qualified personnel No responsibility is assumed by Schneider Electric for any consequences arising out of the use of this material A qualified person is one who has skills and knowl
146. mode Definition of the SFCSTEP_TIMES Structure Type This structure includes all types of data linked to the definition of the runtime parameters of the step or of the Macro step These data types are e delay TIME elementary data type EDT defining the polling delay time of the transition situated downstream from the active step e tmin TIME elementary data type EDT containing the minimum value during which the step must at least be executed If this value is not respected the data tmin Err switches to the value TRUE e tmax TIME elementary data type EDT containing the maximum value during which the step must at least be executed If this value is not respected the data tmax Err switches to the value TRUE These data types are only accessible from the SFC editor Data Access Syntax of the Structure SFCSTEP_STATE The instance names of this structure correspond to the names of the steps or macro steps of the sequential function chart Syntax Comment Name_Step x Used to find out the status of the step active inactive Name_Step t Used to find out the current or total activation time for the step Name_Step tminErr Used to find out if the minimum activation time of the step is less than the time programmed in Name_Step tmin Name_Step tmaxErr Used to find out if the maximum activation time of the step is greater than the time programmed in Name_Step tmax 288 35006144 07 2011
147. oam E gl ona channel 1 data 5 gee mau a 4 EO aoon E B DIO No 2 Available for Unity versions higher than V1 0 IW 2 1 1 3 4 5 bus 2 drop device 1 rack 1 module 3 channel 4 data 5 306 35006144 07 2011 Data References 10 What s in this Chapter This chapter provides the references of data instances These references can be e value based references e name based references e address based references What s in this Chapter This chapter contains the following topics Topic Page References to Data Instances by Value 308 References to Data Instances by Name 310 References to Data Instances by Address 313 Data Naming Rules 317 35006144 07 2011 307 Data References References to Data Instances by Value Introduction At a Glance What is a data instance reference see page 233 A reference to a data instance by a value is an instance which does not have a name symbol or topological address This corresponds to an immediate value which can be assigned to a data type instance belonging to the EDT family Standard IEC 1131 authorizes immediate values on instances of the following data types Booleans e BOOL e EBOOL integers e INT UINT DINT UDINT TIME reals e REAL dates and times e DATE e DATE AND TIME e TIME OF DAY character
148. of FFB links Display of inspection windows 46 35006144 07 2011 Presentation General Information about SFC Sequence Language Introduction The sequence language SFC Sequential Function Chart which conforms to IEC 61131 3 is described in this section IEC conformity restrictions can be lifted through explicit enable procedures Features such as multi token multiple initial steps jumps to and from parallel strings etc are then possible Representation Representation of an SFC section a S41 Link ai Y hnitial Step Ti Transition condition Boolean Variable a Parallel branch S_4 2 S_4_5 Step Ta TA 4 Alternat lt 110 fl VarX 1108 Transition condition circ return value of a E1061 Undefined Symbol VarX Transition section S_4 3 S_4 6 S_49 S_47 YD Jum l Pe l1 oF Transition condition S44 S47 Topological Boolean address Alternative joint Tha Parallel joint gt Transition condition Boolean Literal MS_4_1 ee Macro Step 35006144 07 2011 47 Presentation Objects An SFC section provides the following objects for creating a program Properties Steps Macro steps embedded sub step sequences Transitions transition conditions Transition sections Action sections Jumps Links Alternative sequenc
149. of System Bits S15 to S21 2 0 cece 154 Description of System Bits S30 to S59 002 cee eee 157 Description of System Bits S65 to S79 1 eee 160 Description of System Bits S80 to S96 1 eee 165 Description of System Bits S100 to S123 2 0022 168 6 2 System Words oe ets ng Pe ead Pee ta Se a eh Ase ah ba Gv die eee ees 170 Description of System Words SW0 to SW11 220 00 e 171 Description of System Words SW12 to SW29 20 00s 175 Description of System Words SW30 to SW47 20005 179 Description of System Words SW48 to SW59 0 02 ee 181 Description of System Words SW70 to SW100 00 183 Description of System Words SW108 to SW116 0 193 Description of System Words SW123 to SW127 0 00 194 6 3 Atrium Premium specific System Words 0 00 eee ee eee 196 Description of System Words SW60 to SW65 25 197 Description of System Words SW128 to SW143 4 200 Description of System Words SW144 to SW146 0 201 Description of System Words SW147 to SW152 2 ee eee 203 Description of System Word SW153 0 0 cee eee 204 Description of System Word SW154 0 2 eee 206 Description of Premium Atrium System Words SW155 to SW167 207 6 4 Quantum specific System Words 0 000 cece ee eee 208 Description of Quantum System Words SW60 to SW6
150. of internal cache IEC 61131 refers to this accumulator as the result For this reason an instruction list should always begin with the LD operand Load in accumulator command 35006144 07 2011 451 Instruction List IL Section Size Syntax Example of an addition Command Meaning LD 10 Load the value 10 into the accumulator ADD 25 25 is added to the contents of the accumulator STA The result is stored in the variable A The content of the variable A and the accumulator is now 35 Any further instruction will work with accumulator contents 35 if it does not begin with LD Compare operations likewise always refer to the accumulator The Boolean result of the comparison is stored in the accumulator and therefore becomes the current accumulator content Example of a comparison Command Meaning LD B The value B is loaded into the accumulator GT 10 10 is compared with the contents of the accumulator STA The result of the comparison is stored in the variable A If B is less than or equal to 10 the value of both variable A and the accumulator content is 0 FALSE If B is greater than 10 the value of both variable A and the accumulator content is 1 TRUE The length of an instruction line is limited to 300 characters The length of an IL section is not limited within the programming environment The length of an IL section is only limited by the size
151. of the PLC memory Identifiers and Keywords are not case sensitive Spaces and tabs have no influence on the syntax and can be used as and when required Exception Not allowed spaces and tabs keywords literals values identifiers variables and limiter combinations e g for comments 452 35006144 07 2011 Instruction List IL Execution Sequence Instructions are executed line by line from top to bottom This sequence can be altered with the use of parentheses If for example A B C and D have the values 1 2 3 and 4 and are calculated as follows LDA ADD B SUB C MUL C ST E the result in E will be 0 In the case of the following calculation LDA ADD B SUB LDC MUL D ST E the result in E will be 9 Error Behavior The following conditions are handled as an error when executing an expression e Attempting to divide by 0 e Operands do not contain the correct data type for the operation e The result of a numerical operation exceeds the value range of its data type IEC Conformity For a description of IEC conformity for the IL programming language see IEC Conformity see page 639 35006144 07 2011 453 Instruction List IL Operands Introduction Operators are used for operands An operand can be an address a literal a variable a multi element variable an element of a multi element variable an EFB DFB output or an EFB DFB call
152. or periodic operation is controlled by the PLC watchdog and must not exceed the value defined in Tmax configuration 1500 ms by default 1 5 s maximum Software Watchdog Periodic or Cyclic Operation If watchdog overflow should occur the application is declared in error which causes the PLC to stop immediately HALT state The bit S11 indicates a watchdog overflow It is set to 1 by the system when the cycle time becomes greater than the watchdog The word SW11 contains the watchdog value in ms This value is not modifiable by the program NOTE e The reactivation of the task requires the terminal to be connected in order to analyze the cause of the error correct it reinitialize the PLC and switch it to RUN e Itis not possible to exit HALT by switching to STOP To do this you must reinitialize the application to ensure consistency of data Control in Periodic Operation In periodic operation an additional control enables a period overrun to be detected A period overrun does not cause the PLC to stop if it remains less than the watchdog value The bit S19 indicates a period overflow It is set to 1 by the system when the cycle time becomes greater than the task period The word SWO contains the value of the period in ms It is initialized on cold restart by the defined value It can be changed by the user Exploitation of Master Task Execution Times The following system words can be used to obtain information on the
153. parallel to one another i e S 2 1 ands 2 3 are active at the same time 444 35006144 07 2011 SFC Sequence Language Token 1 S_2_1 Token 2 S_2_3 If Then If Then If the transition condition then a sequence If transition condition then a sequence runs e is true runstoS 2 5 dis true tos 2 4 If transition condition then a sequence runs f is true tos 2 5 If s_2_5 is still active token 1 because of the activation of transition condition e then token 2 is ended and the string will be further processed as Single Token If S_2_5 is no longer active token 1 then it is reactivated by token 2 and both tokens continue running parallel Multi Token Jump Between Two Branches of a Parallel String Jump Between Two Branches of a Parallel String z a S41 S_42 a a b c S_4_3 S_4_1 a d If Then If the transition condition a is true then a sequence runstos 4 lands 4 2 IfstepsS 4 lands 4 2 are activated then the strings run independently of one another If transition condition b is true then a sequence runs to S 4 3 If the transition condition c is true then a jump is madetos 4 1 A second token is created by the jump out of a branch string Both tokens are running parallel to one another i e S 4 3andsS 4 1 are active at the same time 35006144 07 2011 445 SFC Sequence Language
154. program are supported by the internal RAM of the processor module The following diagram describes the memory structure Located data Internal RAM Unlocated data Program Structure with Memory Extension Card The data is supported by the internal RAM of the processor module The program is supported by the extension memory card The following diagram describes the memory structure Internal A RAM Located data Unlocated data External 7 memory card Program 112 35006144 07 2011 Memory Structure Memory Backup The internal RAM is backed up by a Ni Cad battery supported by the processor module The RAM memory cards are backed up by a Ni Cad battery Specificities of Memory Cards Three types of memory card are offered e application these cards contain the application program The cards offered use either RAM or Flash EPROM technology e application file storage in addition to the program these cards also contain a zone which can be used to backup restore data using the program The cards on offer use either RAM or Flash EPROM technology e file storage these cards can be used to backup restore data using the program These cards use SRAM technology The following diagram describes the memory structure with an application and file storage card Internal RAM A Located data Unlocated data External A memory Program card g Files y NOTE On proc
155. same procedure in FBD PROC TEN ENO error vari IN1 OUT1 result1 var2 IN2 OUT2 result2 VAR_IN_OUT Variable Procedures are often used to read a variable at an input input variables to process it and to output the updated values of the same variable output variables This special type of input output variable is also called a VAR_IN_ OUT variable The following special features are to be noted when using procedures with VAR_IN_OUT variables e All VAR_IN_OUT inputs must be assigned a variable e VAR_IN_OUT inputs may not have literals or constants assigned to them e VAR_IN_OUT outputs may not have values assigned to them e VAR_IN_OUT variables cannot be used outside of the procedure call Calling a procedure with VAR_IN_OUT variable in IL PROC3 IN1 V1 IN2 V2 I01 V3 OUT1 gt V4 OUT2 gt V5 494 35006144 07 2011 Instruction List IL Calling the same procedure in FBD PROC3 V1 IN1 OUTI V2 IN2 OUT2 N3 101 Tol v4 v5 v3 VAR_IN_OUT variables cannot be used outside the procedure call The following procedur Invalid call example 1 e calls are therefore invalid LD V1 Loading a v1 variable in the accumulator CAL InOutProc Calling a procedure with the VAR_IN_OUT parameter The accumulator now contains a reference toa VAR_IN_OUT parameter AND V2 AND operation on contents of accumulator with variable v2
156. section contains the following topics Topic Page Description of System Words SWE0 to SW65 197 Description of System Words SW128 to SW143 200 Description of System Words SW144 to SW146 201 Description of System Words SW147 to SW152 203 Description of System Word SW153 204 Description of System Word SW154 206 Description of Premium Atrium System Words SW155 to SW167 207 196 35006144 07 2011 System Objects Description of System Words SW60 to SW65 Detailed Description Description of system words SWE60 to SWE65 on Premium and Atrium Hot e SW60 2 e 0 sets PLC B to OFFLINE mode e 1 sets PLC B to RUN mode SW60 4 OS Version Mismatch e 0 If OS Versions Mismatch with Primary Standby goes to Offline mode e 1 If OS Versions Mismatch with Primary PLC Standby stays in standby mode Firmware OS Mismatch This relate to main processor OS version embedded copro OS version monitored ETY OS version and enables a Hot Standby system to operate with different versions of the OS running on the Primary and Standby Standby Word Function Description Initial Premium Atrium Symbol state SW60 Premium Meaning of the different bits of the word SW60 0 YES NO HSB_CMD Hot e SWE60 1 Standby e 0 sets PLC A to OFFLINE mode command e 1 sets PLC A to RUN mode register 35006144 07 2011 197 System Objects Word Func
157. see page 175 and S18 see page 154 are raised except for the Modicon M340 The Modicon M340 PLCs are able to use the denormalized operands but due to the format with a loss of precision Underflow is signaled depending on the operation only when the result is O total underflow or when the result is a denormalized gradual underflow with loss of precision 254 35006144 07 2011 Data Types The Real Type Presentation Type Scale bits Default value REAL 32 0 0 Range of values grayed out parts Ea E 3 4028235e 38 1 1754944e 38 0 0 1 1754944e 38 3 4028235e 38 When a calculation result is e between 1 1754944e 38 and 1 1754944e 38 it is a DEN less than 3 4028234e 38 the symbol INF for infinite is displayed greater than 3 4028234e 38 the symbol INF for infinite is displayed undefined Square root of a negative number the symbol NAN is displayed Examples of inaccuracy on normalized value 7 986 will be coded by the application as E 129 M 8359248 0 1000001 11111111000110101010000 Using the formula 0 129 127 _ 8359248 __ 1 x2 x 1 a 7 986000061035145625 a3 J The number 7 986 should have a significant of L286 1 9 8359247 872 9 J As the significant is expressed as an integer it can only be coded as 8359248 rounded to the nearest limit No number can be coded between the significant 8359247 and 8359
158. set number of frame types are defined in the WorldFip standard link protocol Any other code found within a frame is therefore an unknown frame type bit 13 a truncated frame has been received a frame section is recognized by a sequence of symbols delimiting the end of the frame while the destination station awaits the arrival of a delimiter sequence for the start of the frame bit 14 unused non significant value bit 15 unused non significant value 35006144 07 2011 205 System Objects Description of System Word SW154 Detailed Description Description of system word SW154 Word Function Description Initial Symbol state SW154 List of Fipio channel Each bit is set to 1 by the system and reset 0 FipioERR1_ manager faults to 0 by the user See the list below Description of the Bits bit O aperiodic sequence time out indicates that the messages or aperiodic variables window has overflowed its limit within an elementary cycle of the macro cycle bit 1 refusal of messaging request indicates that the message queue is saturated for the time being the bus arbiter is in no position to latch onto nor to comply with a request bit 2 urgent update command refused indicates that the queue for urgent aperiodic variables exchange requests is saturated for the time being the bus arbiter is in no position to latch onto nor to comply with a request bit 3 non urgent upd
159. state SW60 Quantum Different bits meaning of the word SW60 0 HSB CMD Hot e SW60 0 1 invalidates the commands entered in the display Standby keypad command e SW60 1 register e 0 sets PLC A to OFFLINE mode 35006144 07 2011 209 System Objects Word Function Description Initial Symbol state SW6O Quantum continued 0 HSB_ CMD Hot SW60 9 Standby e 0 address switch on Modbus port 2 during a primary swap command 1 no address switch on Modbus port 2 during a primary swap register e SW60 10 e 0 address switch on Modbus port 3 during a primary swap e 1 no address switch on Modbus port 3 during a primary swap SW61 Quantum Meaning of the different bits of the word SW61 0 HSB_STS status SW61 0 and SW61 1 PLC operating mode bits register SW61 1 0 SW61 0 1 OFFLINE mode SW61 1 1 SW61 0 0 primary mode SW61 1 1 SW61 0 1 secondary mode Standby SW61 2 and SW61 3 operating mode bits from the other PLC SW61 3 0 SW61 2 1 OFFLINE mode SW61 3 1 SW61 2 0 primary mode SW61 3 1 SW61 2 1 secondary mode Standby SW61 3 0 SW61 2 0 the remote PLC is not accessible switched off no communication SW61 4 0 the applications are identical on both PLCs SW61 5 Othe PLC is used as unit A e 1 the PLC is used as unit B SW61 6 indicates if the CPU sync link between the two PLC is vali
160. the inputs and outputs actual parameters The order that the actual parameters are enumerated in a procedure call is significant EN and ENO cannot be used for this type of call Calling a procedure without formal parameter names Procedure Name Actual Parameters Inputs PROC varl var2 resultl result2 Actual Parameter Output Calling the same procedure in FBD PROC vari JIN1 outit result var2 IN2 ouT2 result2 With informal calls it is not necessary to assign a value to all formal parameters see also Parameter page 544 This is a supplement to IEC 61131 3 and must be enabled explicitly An empty parameter field is used to skip a parameter Call with empty parameter field PROC varl resultl result2 Calling the same procedure in FBD PROC varl IN1 OUT1 resultl IN2 oOuT2 result2 An empty parameter field does not have to be used if formal parameters are omitted at the end PROC varl var2 resultl Calling the same procedure in FBD PROC vari var2 IN1 IN2 OUT1 OUT2 resultl 35006144 07 2011 547 Structured Text ST EN and ENO With all procedures an EN input and an ENO output can be configured If the value of EN is equal to 0 when the procedure is called the algorithms defined by the procedure are not executed and ENO is set to 0 If the value of EN is 1
161. the master task is active At the end of the first cycle the other tasks are automatically activated except if one of the tasks in inhibited associated system bit set to 0 by the program Controls on Input Reading and Output Writing Phases The bits of the following system words can be used only when the PLC is in RUN to inhibit the input reading and output writing phases Inhibition of phases MAST FAST AUX0 AUX1 AUX2 AUX3 reading of inputs SSW8 0 SSW8 1 SSW8 2 SSW8 3 SSW8 4 SSW8 5 writing of outputs SSw9 0 SSW9 1 SSW9 2 SSW9 3 SSW9 4 SSwW9 5 NOTE By default the input reading and output writing phases are active bits of system words SW8 and SW9 set to 0 On Quantum inputs outputs which are distributed via DIO bus are not assigned by the words SW8 and SW9 96 35006144 07 2011 Program Structure Assignment of Input Output Channels to Master Fast and Auxiliary Tasks General Each task writes and reads the inputs outputs assigned to it The association of a channel group of channels or an input output module with a task is defined in the configuration screen of the corresponding module The task that is associated by default is the MAST task Reading of Inputs and Writing of Outputs on Premium All the input output channels of in rack modules can be associated with a task MAST FAST or AUX 0 3 Local and remote inputs outputs X bus For each task cycle the inputs a
162. the number of left bracket modifiers Brackets can be nested Example In the example E is 1 if c and or D is 1 and A and Bare 1 LDA AND B AND C OR D STE 35006144 07 2011 467 Instruction List IL Subroutine Call Call Subroutine A subroutine call consists of the CAL operator followed by the name of the subroutine section followed by an empty parameter list optional Subroutine calls do not return a value The subroutine to be called must be located in the same task as the IL section called Subroutines can also be called from within subroutines e g STA CAL SubroutineName LD B or STA CAL SubroutineName LD B Subroutines are a supplement to IEC 61131 3 and must be enabled explicitly In SFC action sections subroutine calls are only allowed when Multitoken Operation is enabled 468 35006144 07 2011 Instruction List IL Labels and Jumps Introduction Label Properties Jump Properties Labels serve as destinations for Jumps Label properties Labels must always be the first element in a line The name must be clear throughout the directory and it is not upper lower case sensitive Labels can be 32 characters long max Labels must conform to the IEC name conventions Labels are separated by a colon from the following instruction Labels are only permitted at the beginning of Expressions otherwise an undefined value can be found in the battery Example
163. the operands A B C and D have the values 1 2 3 and 4 A B C D has the result 9 and A B C D has the result 0 FUNCNAME Function 2 Expression Literal Function processing is used to execute functions Actual processing Variable Address see Calling Elementary Functions page 529 parameter call all data types list z Negation 3 Expression Literal During negation a sign reversal for the value of Variable Address of the operand takes place Data TypeINT Example In the example OUT is 4 if IN1 is 4 DINT or REAL OUT INI NOT Complement 3 Expression Literal In NOT a bit by bit inversion of the operands takes Variable Address of place Data Type BOOL Example In the example OUT is 0011001100 if BYTE WORD or IN1 is 1100110011 DWORD OUT NOT IN1 EE Exponentiation 4 Expression Literal In exponentiation the value of the first operand Variable Address of basis is raised to the power of the second Data TypeREAL operand exponent Basis and INT Example In the example OUT is 625 0 if IN1 is 5 0 DINT UINT UDINT and IN2 is 4 0 or REAL Exponent OUT IN1 IN2 504 35006144 07 2011 Structured Text ST Operator Meaning Order of possible operands Description rank Multiplication 5 Expression Literal In multiplication the value of the first operand is Variable Address of multiplied by the value of the second operand Data
164. the percentage of load relating to IO Scanning load The Most Significant Byte of this word measures the percentage of load relating to Global Data SW140 Load for messaging The Least Significant Byte of this word measures 0 BW_OTHER MSG service and other services the percentage of load relating to messaging The Most Significant Byte of this word measures the percentage of load relating to other services 35006144 07 2011 213 System Objects ERIO_DROP_ ERROR error status associated with the detected Ethernet RIO Drop status The bit is set to 0 if at least one I O module in the drop has detected error It is set to 1 if all modules are operating correctly SW152 0 Drop No 1 SW152 1 Drop No 2 SW153 14 Drop No 31 Word Function Description Initial Symbol state SW141 and SW142 IP Address This double word SDW141 receives the IP 0 IP_ADDR address of the Ethernet link SW143 and SW144 IP subnetwork mask This double word SDW143 receives the 0 IP_NETMASK subnetwork mask of the Ethernet link SW145 and SW146 Default Ethernet This double word SDW145 receives the address 0 IP_GATEWAY gateway address of the default Ethernet gateway SW147 to SW149 MAC Addresses The words SW147 SW148 SW149 code 0 MAC_ADDR1 to 3 the addresses MAC 1 MAC 2 and MAC 3 respectively SW150 Coprocessor version This word codes the coprocessor version for 0 1
165. the same channel e bit 6 talking fault corresponds to a fault whereby the transmitter is controlling the line for longer than the maximum set operating limit This fault is caused for example by deterioration of the modulator or by a faulty data link layer e bit 7 undercurrent fault corresponds to a fault whereby the transmitter generates when solicited a current weaker than the minimum set operating limit This fault is caused by increased line impedance e g open line etc e bit 8 pierced frame fault indicates that a pause has been received in the frame body after identifying a delimiter at the start of the frame and before identifying a delimiter at the end of the frame The appearance of a pause in normal operating conditions takes place after a delimiter has been identified at the end of a frame e bit 9 Receiving frame CRC fault indicates that the CRC calculated on a normally received frame and the CRC contained within this frame have different values e bit 10 Receiving frame code fault indicates that certain symbols belonging exclusively to delimitation sequences at the start and end of frames have been received within the body of the frame e bit 11 received frame length fault more than 256 bytes have been received for the frame body 204 35006144 07 2011 System Objects bit 12 unknown frame type received within the frame body the first byte identifies the type of frame link A
166. to output the altered values of the same variable output variables This special type of input output variable is also called a VAR_IN_OUT variable The link between input and output variables is represented by a line in the FFB VAR_IN_OUT variable 4 EXAMP1 Input 4IN1 OUTI Output Input2 IN2 OUT2 Output2 Comb_IN_OUT 101 t ____ IOI Comb_IN_OUT The following special features are to be noted when using FFBs with VAR_IN_ OUT variables e All VAR_IN_OUT inputs must be assigned a variable e Via graphical links only VAR_IN_ OUT outputs with VAR_IN_OUT inputs can be connected e Only one graphical link can be connected to a VAR_IN_OUT input output e Acombination of variable address and graphical connections is not possible for VAR_IN_OUT outputs e No literals or constants can be connected to VAR_IN_OUT inputs outputs e No negations can be used on VAR_IN_OUT inputs outputs e Different variables variable components can be connected to the VAR_IN OUT input and the VAR_IN_OUT output In this case the value of the variables variable component on the input is copied to the at the output variables variable component 35006144 07 2011 333 Function Block Language FBD Subroutine Calls Calling a Subroutine In FBD subroutines are called using the following blocks SR_CALL Condition EN MySR SR_NAME ENO If the status of EN is 1 the respective subroutin
167. topological address for example SMD0 6 0 11 3MFO 6 0 31 According to the IEC standard Iw indicates an analog input type language object 35006144 07 2011 667 Glossary KD KF KW M According to the IEC standard mw indicates a constant double word type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt sKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type MW lt i gt SKW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt SQD 1D SMF lt i gt SKF lt i gt SOF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are not available According to the IEC standard smw indicates a constant real type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type sMW lt i gt KW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD 1D SMF lt i gt SKF lt i gt SOF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SM
168. type INT Example The example corresponds to the DINT UINT UDINT formulaD A B C or REAL LD A MUL B MUL C ST D Note The MULTIME function in the obsolete library is available for multiplications involving the data type Time DIV Division Literal variable The DIV operator divides the contents of the direct address of accumulator by the value of the operand data type INT Example The example corresponds to the DINT UINT UDINT formula D A B C or REAL LD A DIV B DIV C ST D Note The DIVTIME function in the obsolete library is available for divisions involving the data type Time MOD Modulo Literal variable The MOD operator divides the value of the first Division direct address of operand by the value of the second and returns INT DINT UINT or the remainder Modulo as the result UDINT data types Example In this example e cis1ifAis 7 andBis2 e cis1ifAis 7 andB is 2 cis 1ifAis 7 and B is 2 cis 1 if A is 7 and B is 2 LD A MOD B STC 35006144 07 2011 463 Instruction List IL Comparison Operators IL programming language comparison operators Operator Modifier Meaning Operands Description GT Comparison gt Literal variable The GT operator compares the contents of the direct address of accumulator with the contents of the operand If data type BOOL the contents of the accumulator are greater than BYTE WORD DWORD the contents of the operands the result is a S
169. vag ea ie Pet eed ein ae ear dee eet ond teed EA gate 405 Action Sections cer ao els ooo Sa Pe i 407 Qualifier x 4 foi nr a op aed Bed Si ke oi a ce 408 13 4 Transitions and Transition Sections 00 0 cece eee 410 Transition setae Gee pee eee ea core ae Bathe Nd Rorhob eat dae 411 Transition Section 20 rea i a a a a a 413 13 5 JUMP innare in a bode eck PE R OE eas s tise eee a oe 415 JUMP ea condos tA Bebe op din nd E E A E E E Bebe ake Sarde i ana E Das 415 HER LINK AE EE Sh pane E aca T TEAT 416 LNK ie Ee ee eho e la ae Pinar ei Ei 416 13 7 Branches and Merges 00 c eect ttt ee 417 Alternative Branches and Alternative Joints 55 418 Parallel Branch and Parallel Joint 0 0 002 eee ee eee 419 13 8 Text OBjectS e ceded eschewed dee erate Led ied adehew inked 420 Text Object ies caidas o died aoe nest dense hed aaa 420 35006144 07 2011 7 13 9 13 10 Chapter 14 14 1 14 2 Chapter 15 15 1 15 2 Single Token 0 0 0 cece eee eet teens 421 Execution Sequence Single Token 0 0c cece eens 422 Alternative String 0 0 20 cece tees 423 Sequence Jumps and Sequence Loops 00 e0eees 424 Parallel Strings 3 c0 a h4eiiista tek eevee aaa 427 Asymmetric Parallel String Selection unuau 0000 c cee eee eee 429 MultisTokent escort ae ae ota eed ee E eh ee 432 Multi Token Execution Sequence 00 c cee eee eee
170. when the procedure is called the algorithms defined by the function are executed After successful execution of these algorithms the value of ENO is set to 1 If an error occurs during execution of these algorithms ENO will be set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If ENO is set to 0 caused when EN 0 or an error occurred during executing the outputs of the procedure are set to 0 The output behavior of the procedure does not depend on whether the function is called without EN or with EN 1 If EN ENO are used the procedure call must be formal The assignment of variables to ENO must be made using the gt operator PROC EN 1 IN1 varl IN2 var2 ENO gt error OUT1 gt resultl OUT2 gt result2 Calling the same procedure in FBD PROC 1 EN ENO error vari 7 IN1 OUT1 result1 var2 j IN2 OUT2 result2 VAR_IN_OUT Variable Procedures are often used to read a variable at an input input variables to process it and to restate the altered values of the same variable output variables This special type of input output variable is also called a VAR_IN_ OUT variable The following special features are to be noted when using procedures with VAR_IN_OUT variables e All VAR_IN_OUT inputs must be assigned a variable e VAR_IN_OUT in
171. with other objects Connections Horizontal Boolean Link Re tf Ld a Vertical Boolean Link XXX XXX A a ENO EN ENO ee id XXX EN ENO XXX EN ENO 35006144 07 2011 367 Ladder Diagram LD General Programming Notes Attention should be paid to the following general programming notes e The data types of the inputs outputs to be linked must be the same e Links between parameters with variable lengths e g ANY ARRAY INT are not allowed e Several links can be connected with one output right hand side of one contact one coil or one FFB output However only one link can be connected with an input left hand side of one contact one coil or one FFB output e Unconnected contacts coils and FFB inputs are specified as 0 by default e Links may not be used to create loops since the sequence of execution in this case cannot be clearly determined in the section Loops must be created using actual parameters see Non Permitted Loops page 382 Notes on Programming Boolean Links Notes on Programming Boolean Links e Overlapping Boolean links with other objects is not permitted e The signal flow power flow is from left to right for Boolean links Therefore backwards links are not allowed e f two Boolean links are crossed the links are connected automatically Since crossing Boolean links is not possible links are not indicat
172. 0 tees 342 Loop Planning 0 c cee teens 346 Chapter 12 Ladder Diagram LD 00 0c eee eee eee 347 General Information about the LD Ladder Diagram Language 348 CONTACTS ret aA a E tes Wee wee oh she 2 woes ee aa 351 COIS 225 tek E balmy ere idle Tae Gave ibe Sen be ee ee Geb ened 352 Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures FFBs 000 cece eee eee eee 354 Control Elements isr r A hue asset a a aut eee at ANA aae 364 Operate Blocks and Compare Blocks 0 0c eee eee eee 365 LIK Sie vith stole ee eee ye a ga eee whe a als 367 Text Objet ais dt e a a tel yank ee ad ge eet he 370 Edge Recognition eee ttt tenes 371 Execution Sequence and Signal Flow 0 0 cece eee eee 380 Loop Planningen ofseba du cAn 3 chen co el Ain Oe ae A 382 Change Execution Sequence 00 0 cece ete eae 383 Chapter 13 SFC Sequence Language 2 eeeeeeeees 389 13 1 General Information about SFC Sequence Language 390 General Information about SFC Sequence Language 391 LINK RUlOS Si estes ces cca tnd eis eel nak aA tech aE 395 13 2 Steps and Macro Steps 0 c eee eee 396 SISD si mieciaie ceased ees E a avandia ec ate be uta ae Rntin ae Guorcaad gheeriene ASS 397 Macro Steps and Macro Sections 00 0 cee eee eee 400 13 3 Actions and Action Sections 00 0 404 ACION eaea
173. 0 to 0 YQ2 0 R 106 35006144 07 2011 Application Memory Structure Subject of this Chapter This chapter describes the application memory structure of Premium Atrium and Quantum PLCs What s in this Chapter This chapter contains the following sections Section Topic Page 4 1 Memory Structure of the Premium Atrium and Modicon M340 108 PLCs 4 2 Memory Structure of Quantum PLCs 115 35006144 07 2011 107 Memory Structure 4 1 Memory Structure of the Premium Atrium and Modicon M340 PLCs Subject of this Section This section describes memory structure and detailed description of the memory zones of the Premium Atrium and Modicon M340 PLCs What s in this Section This section contains the following topics Topic Page Memory Structure of Modicon M340 PLCs 109 Memory Structure of Premium and Atrium PLCs 112 Detailed Description of the Memory Zones 114 108 35006144 07 2011 Memory Structure Memory Structure of Modicon M340 PLCs Overview Structure Program Backup The PLC memory supports e located application data e unlocated application data e the program task descriptors and executable code constant words initial values and configuration of inputs outputs The data and program are supported by the processor module s internal RAM The following diagram describes the memory structure
174. 00 2 01111111111111111111111111111111 Octal 8 20000000000 8 17777777777 Hexadecimal 16 80000000 16 7FFFFFFF 244 35006144 07 2011 Data Types Unsigned Integer Type UINT Unsigned type with a 16 bit format This table shows the range in each base Base from to Decimal 0 65535 Binary 2 0 2 1111111111111111 Octal 8 0 84177777 Hexadecimal 16 0 16 FFFF Unsigned Double Integer Type UDINT Unsigned type with a 32 bit format This table shows the range in each base Base from to Decimal 0 4294967295 Binary 2 0 2 11111111111111111111111111111111 Octal 8 0 8 37777777777 Hexadecimal 16 0 16 FFFFFFFF 35006144 07 2011 245 Data Types The Time Type At a Glance Entering a Value The Time type T or TIME is represented by an unsigned double integer UDINT see page 244 type It expresses a duration in milliseconds which approximately represents a maximum duration of 49 days The units of time authorized to represent the value are days D hours H minutes M seconds S milliseconds MS This table shows the possible ways of entering the maximum value of the Time type according the authorized units of time Diagram Comment T 4294967295MS value in milliseconds T 4294967S_295MS value in seconds milliseconds T 71582M_47S_295MS value in minutes seconds milliseconds T 1193H_2M_47
175. 06144 07 2011 627 EFB Error Codes and Values EFB name _ Error code ENO state Error Error Error description in case of valuein value in error Dec Hex DRV_UPLD MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error IDN_CHK BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 IDN_CHK MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error IDN_XFER BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 IDN_XFER MMF_ABORT_SUB 7004 16 1B5C SubNum SubNumEcho handshake error MMF_BITS BAD_REVISION 30200 16 8A08 defined as E EFB_USER_ERROR_1 MMF_ESUB BAD_REVISION 30200 16 8A08 defined as E_EFB_USER_ERROR_1 MMF_ESUB MMF_ABORT_SUB 7004 16 1B5C SubNum SubNumEcho handshake error MMF_IDNX BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 MMF_IDNX MMF_ABORT_SUB 7004 16 1B5C SubNum SubNumEcho handshake error MMF_JOG_ BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 MMF_JOG_ MMF_ABORT_SUB 7004 16 1B5C SubNum SubNumEcho handshake error MMF_JOG MMF_SUB_TIMEOUT T 7005 16 1B5D Subroutine does not complete in time MMF_MOVE BAD_REVISION F 30200 16 8A08 defined as E_ EFB_USER_ERROR_1 MMF_MOVE MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error MMF_RST BAD_REVISION F 30200 16 8A08 defined as E_ EFB_USER_ERROR_1 MMF_SUB BAD_REV
176. 07 2011 Description of DFBs Invalid call example 2 LD V1 Loading a V1 variable in the accumulator AND InOutFB inout AND operation on accumulator contents and a reference to a VAR_IN_OUT parameter Error The operation cannot be performed since the VAR_IN_OUT parameter cannot be accessed from outside the function block call The following function block calls are always valid Valid call example 1 CAL InOutFB IN1 V1 inout V2 Calling a function block with the VAR_IN_OUT parameter and assigning the actual parameter within the function block call Valid call example 2 LD V1 Loading a V1 variable in the accumulator ST InOutFB IN1 Assigning the accumulator contents to the IN1 parameter of the IN1 function block CAL InOutFB inout V2 Calling the function block with assignment of the actual parameter v2 to the VAR_IN_OUT parameter 35006144 07 2011 565 Description of DFBs DFB Variables Description of the Variables This table shows the role of each type of variable Variable Maximum Role number Public unlimited These internal variables of the DFB may be used by the DFB by the application program and by the user in adjust mode Private unlimited These internal variables of the DFB can only be used by this function block and are therefore not accessible by the application program but these type o
177. 1 CAL InOutFB IN1 V1 inout V2 Calling a function block with the VAR_IN_OUT parameter and assigning the actual parameter within the function block call Valid call example 2 LD V1 Loading a V1 variable in the accumulator ST InOutFB IN1 Assigning the accumulator contents to the IN1 parameter of the IN1 function block CAL InOutFB inout V2 Calling the function block with assignment of the actual parameter V2 to the VAR_IN_OUT parameter 488 35006144 07 2011 Instruction List IL Calling Procedures Procedure Procedures are provided in the form of libraries The logic of the procedure is created in the programming language C and may not be modified in the IL editor Procedures like functions have no internal states If the input values are the same the value on the output is the same every time the procedure is executed For example the addition of two values gives the same result every time In contrast to functions procedures do not return a value and support VAR_IN_OUT variables Procedures are a supplement to IEC 61131 3 and must be enabled explicitly Parameter Inputs and outputs are required to transfer values to or from procedures These are called formal parameters The current process states are transferred to the formal parameters These are called actual parameters The following can be used as actual parameters for procedure inputs
178. 1 ADD ADD EN ADD EN ENO ADD EN ENO BPD 6 7 7 ADD 6 ADD EN ENO EN ENO gt oa 8 8 ADD EN ENO m gt 35006144 07 2011 383 Ladder Diagram LD Link Instead of Actual Parameter By using a link instead of a variable the two networks are run in the proper sequence see also Original Situation page 383 1 io ADD EN ADD 7 ENO ADD z z EN ENO ADD 7 EN ENO ADD 4 ADD 5 EN ENO EN ENo gt a ADD 6 EN ENo 384 35006144 07 2011 Ladder Diagram LD Network Positions The correct execution sequence can be achieved by changing the position of the networks in the section see also Original Situation page 383 6 ti ADD ADD EN ENO EN ENO ADD EN ENO ADD ADD EN ENO ADD EN ENO ADD B b 35006144 07 2011 385 Ladder Diagram LD Positioning of Objects The position of objects can only have an influence on the execution order if several inputs left link of Contacts Coils FFB inputs are linked with the same output of the object to be called right link of Contacts Coils FFB outputs see also Original Situation page 383 Origi
179. 1 411 SFC Sequence Language Enabling a Transition A transition is enabled if the steps immediately preceding it are active Transitions whose immediately preceding steps are not active are not normally analyzed NOTE If no transition condition is defined the transition will never be active Triggering a Transition A transition is triggered when the transition is enabled and the associated transition conditions are satisfied Triggering a transition leads to the disabling resetting of all immediately preceding steps that are linked to the transition followed by the activation of all immediately following steps Trigger Time for a Transition The transition trigger time switching time can theoretically be as short as possible but can never be zero The transition trigger time lasts at least the duration of a program cycle 412 35006144 07 2011 SFC Sequence Language Transition Section Introduction For every transition a transition section can be created This is a section containing the logic of the transition condition and it is automatically linked with the transition Name of Transition Section The name of the transition section is always identical to the assigned transition see Transition Name page 411 Programming Languages FBD LD IL and ST are possible as programming languages for transition sections Suggested Networks for Transition Section Language
180. 1 0 2 RR Var_3 INT AT MW10 Instance of EDT family of integer type with 2 byte memory allocation predefined in MW10 Var_4 DINT AT MW1 Prohibited for Modicon M340 Double type located data instances must have a topological address even MW2 SMW1O la Var_5 WORD AT MW10 Instance of EDT family of WORD type with 2 byte memory allocation predefined in MW10 Var_6 ARRAY 1 10 OF INT AT MW50 Instance of EDT family of table type with 20 byte memory allocation predefined from MW50 COORD X INT Y INT Var_7 COORD AT MW20 Instance of DDT family of COORD structure type with 4 byte memory allocation predefined from MW20 Var_8 DINT AT MDO 6 0 1 Instance of EDT family of DINT type with 4 byte memory allocation predefined from the topologic address of the I O object of the application specific module Var_9 REAL AT MFO 6 0 3 Instance of EDT family of REAL type with 4 byte memory allocation predefined from the topologic address of the I O object of the application specific module NOTE Sequential Function Chart SFC data type instances are created the moment they are inserted in the application program with a default name that the user can modify 296 35006144 07 2011 Data Instances Direct Addressing Data Instances Direct addressing data instances have a predefined location in the PLC memory or in an application specific module and this location is kno
181. 1024 steps per SFC section 660 35006144 07 2011 IEC Compliance Parameters Limitations Behavior Maximum number of transitions per SFC and per step Limited by the available area for entering steps transitions and by the maximum number of steps per SFC section 1024 Steps 32 transition per step Limited by the available area for entering Alternative Parallel branches maximum is 32 rows Maximum number of action blocks per step 20 Access to the functional equivalent of the Q or A outputs not applicable Transition clearing time Target dependent always lt 100 micro seconds Maximum width of diverge converge constructs 32 Contents of RESOURCE libraries Not applicable Effect of using READ WRITE access to function block outputs Not applicable Maximum number of tasks Depends on controller type Maximum on most powerful controller 9 tasks Task interval resolution 10 ms Maximum length of expressions Practically no limit Maximum length of statements Practically no limit Maximum number of CASE selections Practically no limit Value of control variable upon termination of FOR loop Undefined Restrictions on network topology No restrictions Evaluation order of feedback loops The block connected to the feedback variable is executed first 35006144 07 2011 661 IEC Compliance Error Con
182. 11 681 Glossary Function view Functional Module GRAY Hyperlink View making it possible to see the program part of the application through the functional modules created by the user See Functional module definition A functional module is a group of program elements sections sub programs macro steps animation tables runtime screen etc whose purpose is to perform an automation device function A functional module may itself be separated into lower level functional modules which perform one or more sub functions of the main function of the automation device G Gray or reflected binary code is used to code a numerical value being developed into a chain of binary configurations that can be differentiated by the change in status of one and only one bit This code can be used for example to avoid the following random event in pure binary the change of the value 0111 to 1000 can produce random numbers between 0 and 1000 as the bits do not change value altogether simultaneously Equivalence between decimal BCD and Gray Decimal 0 1 2 3 4 5 6 7 8 9 BCD 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 Gray 0000 0001 0011 0010 0110 0111 0101 0100 1100 1101 The hyperlink function enables links to be created between your project and external documents You can create hyperlinks in all the elements of the project directory in the variables in the processing screen objects etc The external
183. 14 EQ operator with modifier 15 NE operator with modifier 16 LE operator with modifier 17 LT operator with modifier 18 JMP operator with modifiers C N 19 CAL operator with modifiers C N 20 RET operator with modifiers C N Note page 655 21 evaluate deferred operation 654 35006144 07 2011 IEC Compliance Table No Feature No Feature description 53 la CAL of Function Block with non formal argument list 1b CAL of Function Block with formal argument list 2 CAL of Function Block with load store of arguments 4 Function invocation with formal argument list 5 Function invocation with non formal argument list Note In DFB only 35006144 07 2011 655 IEC Compliance ST language elements ST language elements IEC compliance table for ST language elements Table No Feature No Feature description 55 Parenthesization expression Function evaluation functionName listOfArguments Exponentiation Negation Complement NoT Multiply Divide Modulo MoD Add fo Subtract O l OINI OIA B amp R WO DM Comparison lt gt lt gt N Equality w Inequality lt gt A Boolean AND amp k oa Boolean AND AND n O Boolean Exclusive OR XOR N Boolean OR OR 56 Assignm
184. 14 MS_1_1_IN MS_1_2_IN i I l MS_1_1 16 MS_1_2 111 A a a aa S_1_3 S_1_7 _1_ MS_1_2_OUT I ii MS_1_1_OUT The name of the macro section is identical to the name of the macro step that it is called from If the name of the macro step is changed then the name of the respective macro section is changed automatically A macro section can only be used once Macro Step Processing Macro Step Processing Phase Description 1 A macro step is activated if the previous transition condition is TRUE At the same time the input step in the macro section is activated The sequence string of the macro section is processed The macro step remains active as long as at least one step in the macro section is active If the output step of the macro section is active then the transitions following the macro step are enabled The macro step becomes inactive when the output step is activated which causes the following transition conditions to be enabled and the transition condition to be TRUE At the same time the output step in the macro section is activated 402 35006144 07 2011 SFC Sequence Language Step Names When creating a step it is assigned with a suggested number Meanings of the Suggested Numbers Step Type Suggested Number Description Macro Step MS ij MS Macro Step i internal current sequential numbe
185. 144 07 2011 Use of DFBs DFB Call with no Argument When there is no argument the DFB call Cpt_1 is performed with the following syntax LD Clear ST Cpt_1 Reset LD MD10 ST Cpt_1 Presel LD 100 ST Cpt_1 Count CAL Cpt 1 LD Cpt_1 Done ST Q1 2 1 Elements of the DFB Call Program The following table lists the different elements of the DFB call program Element Meaning LD Clear Load instruction to load the Clear value into a register ST Cpt_1 Reset Assign instruction to assign the contents of the register to the input parameter Cpt_1 Reset CAL Cpt_1 Call instruction for the DFB cpt_1 35006144 07 2011 595 Use of DFBs Use of a DFB in a Program in Function Block Diagram Language Principle In FBD Function Block Diagram language the user function blocks are represented in the same way as in Ladder language and are called graphically The inputs of the user function blocks may be connected or assigned a value an immediate object or an expression In any case the type of external element must be identical to that of the input parameter Only one object can be assigned link to another block with the same variable to an input of the DFB However several objects may be connected to a single output A DFB block must have at least one connected Boolean input and an output if necessary For this you can use an EN input parameter and an ENO output parameter It is co
186. 15 If SSW 61 15 is set 1 the setting indicates that Ethernet Copro device is set up correctly and working YES NO SW62 HSBY_REVERSE0 SW63 HSBY_REVERSE1 SW64 HSBY REVERSE2 SW65 HSBY_REVERSE3 Premium Transfer word These four words are reverse registers reserved for the Reverse Transfer process These four reverse registers can be written to the application program first section of the Standby controller and are transferred at each scan to the Primary controller YES NO 35006144 07 2011 199 System Objects Description of System Words SW128 to SW143 Detailed Description Description of system words SW128 to SW143 Word Function Description Initial Symbol state SW128 143 Faulty Fipio Each bit in this group of words indicates the state of a device connected 0 ERRORCNXi connection to the Fipio bus where i 0 to 15 point Normally set to 1 the presence of a 0 in one of these bits indicates the occurrence of a fault on this connection point For a non configured connection point the corresponding bit is always 1 Table showing correspondence between word bits and connection point address Bit O Bit 1 Bit 2 Bit3 Bit 4 Bit 5 Bit 6 Bit 7 Bit8 Bit9 Bit 10 Bit 11 Bit 12 Bit 13 Bit 14 Bit 15 SW128 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 SW129 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
187. 17 438 35006144 07 2011 SFC Sequence Language Terminating a Parallel Branch with an Alternative Merge a a S 51 9 252 so b c S_5_3 Terminating a parallel branch can also be done with an alternative merge instead of a parallel merge with Multi Token Terminating a Parallel String with an Alternative Branch variation 1 If Then If the transition condition a is true then a sequence runs toS 5 lands 5 2 IfstepsS_5 lands 5 2 are activated then the strings run independently of one another If transition condition b is true and c is false then a sequence runs toS_5_ 3 A second token is created by the sequence running on the alternative merge out of the parallel string The two tokens are running parallel to one another i e S_5 2andsS_5 3are active at the same time Token 1 S_5_3 Token 2 S_5_2 If Then If Then Step s_5_ 3 is active Step S_5 2 is active If the transition condition c is true thena sequence runs tos 5 3 If S_5 3 is still active token 1 then token 2 is ended and the string is further processed as Single Token If S_5 3 is no longer active token 1 then it is reactivated by token 2 and both tokens continue running parallel Multi Token 35006144 07 2011 439 SFC Sequence Language Terminating a Parallel String wi
188. 2 UTWPORTADDR Processor serial port address For Premium Uni Telway address of terminal port in slave mode as defined in the configuration and loaded into this word on cold start The modification of the value of this word is not taken into account by the system For Modicon M340 Gives the Modbus slave address of the CPU serial port Modification is not taken into account Is 0 if the CPU does not have a Serial Port link YES YES NO see SW12 below SW12 APMODE Mode of the application processor For Quantum safety PLC only this word indicates the operating mode of the application processor of the CPU module e 16 A501 maintenance mode e 16 5AFE safe mode Any other value is interpreted as an error Note In a HotStand By safety system this word is exchanged from the primary to the standby PLC to inform the standby PLC of the safe or maintenance mode 16 A501 NO NO YES Only on safety PLCs SW13 XWAYNETWADDR Main address of the station This word indicates the following for the main network Fipway or Ethway the station number least significant byte from 0 to 127 the network number most significant byte from 0 to 63 value of the micro switches on the PCMCIA card 254 16 00FE NO YES NO see SW13 below 35006144 07 2011 175 System Objects Word Function
189. 2 characters must be unique over the entire project i e no other transition variable or section etc may exist with the same name There are no case distinctions The action name must correspond with the standardized name conventions 406 35006144 07 2011 SFC Sequence Language Action Section Introduction An action section can be created for every action This is a section which contains the logic of the action and it is automatically linked with the action Name of the Action Section The name of the action section is always identical to the assigned action see Action Names page 406 Programming Languages FBD LD IL and ST are possible as programming languages for action sections Properties of Action Sections Action sections have the following properties Action sections can have any amount of outputs Subroutine calls are only possible in action sections when Multitoken operation is enabled Note The called subroutines are not affected by the controller of the sequence string i e e the qualifier assigned to the called action section does not affect the subroutine e the subroutine also remains active when the called step is deactivated No diagnosis functions diagnosis function blocks or diagnosis procedures may be used in action sections Action sections can have any amount of networks Action sections belong to the SFC section in which they were defined and can be assigned any number of actions wit
190. 2011 521 Structured Text ST Repeat Instruction EXIT Description The EXIT instruction is used to terminate repeat instructions FOR WHILE REPEAT before the end condition has been met If the EXIT instruction is within a nested repetition the innermost loop in which EXIT is situated is left Next the first instruction following the loop end END_ FOR END WHILE Or END REPEAT is executed Example EXIT If FLAG has the value 0 SUM will be 15 following the execution of the instructions If FLAG has the value 1 SUM will be 6 following the execution of the instructions SUM 0 FOR I 1 TO 3 DO FOR J 1 TO 2 DO IF FLAG 1 THEN EXIT END IF SUM SUM J END FOR SUM SUM I END_FOR See Also CASE see page 516 WHILE see page 520 REPEAT see page 521 522 35006144 07 2011 Structured Text ST Subroutine Call Subroutine Call A subroutine call consists of the name of the subroutine section followed by an empty parameter list Subroutine calls do not return a value The subroutine to be called must be located in the same task as the ST section called Subroutines can also be called from within subroutines For example SubroutineName Subroutine calls are a supplement to IEC 61131 3 and must be enabled explicitly In SFC action sections subroutine calls are only allowed when Multitoke
191. 248 or between the real number 7 985999584197998046875 and 7 98600006103515625 The weight of the less significant bit gap is in absolute precision 129 127 j aa 2 0 000000476837 158203125 523 35006144 07 2011 255 Data Types The gap becomes very important for big values as shown below Value en an M 8359248 Range lt 2 Values 2 2 27 F 100 000 000 Between 27 and 2 gi lt pee ket Ac gs z 2127 2127 pe lt 2 2 02x10 NOTE The gap corresponds to the weight of the less significant bit In order to get an expected resolution it is necessary to define the maximum range for the calculation according the following formula ex lno x 23 Ln 2 p being the accuracy and e the exponent e E 127 For instance if the accuracy needs to be 0 001 the fixed point part will be F 1 x 2 x 1 2 16384 with lino 00l x 2 gt igs LO In 2 Beyond of this limit F the accuracy will be lost Typical case Counters Floating must be used carefully especially when it needs to add a small number to itself In case of small increments the counter won t count properly giving wrong results and stopping to rise when the increment will be lower than the less significant bit of the counter To get correct values it is recommended to count on an double integer UDINT and multiply the result by the increment Example e Increment a value by 0 001 from
192. 33000 to 1000000 e Count from 33000000 to 1000000000 value times 1000 with 1 as increment e Get the result multiplying the value by 0 001 256 35006144 07 2011 Data Types The accuracy F minimum per range will be From to F minimum 3300 65536 0 004 65536 131072 0 008 524288 1000000 0 063 This counter can raise up to 4294967295 x 0 001 4294967 5 with a minimum accuracy of 0 5 NOTE The real value here are the binary value encoded It may differs from the display in an operator screen as rounding is done 4 294968e 006 35006144 07 2011 257 Data Types 8 4 Elementary Data Types EDT in Character String Format Overview of Data Types in Character String Format Introduction Data types in character string format belong to the EDT Elementary data type family which includes single rather than derived data types tables structures function blocks The Character String Type Syntax Rules The character string format is used to represent a string of ASCII characters with each character being coded in an 8 bit format The characteristics of character string types are as follows e 16 characters by default in a string excluding end of string characters e a string is composed of ASCII characters between 16 20 and 16 FF hexadecimal representation e in an empty string the end of string character code ASCII ZERO is the first character of the st
193. 35006144 07 2011 481 Instruction List IL or CAL MY COUNT CU varl R reset PV 100 QO gt out CV gt current Calling the same function block in FBD MY_COUNT cTU vari CU Q out reset R 100 PV cv current It is not necessary to assign a value to all formal parameters see also Parameter see page 478 CAL MY COUNT CU varl R reset Q gt out CV gt current Calling the same function block in FBD MY_COUNT CTU vari CU QF out reset 4R PV cv current The value of a function block output can be stored and then saved by loading the function block output function block instance name and separated by a full stop or entering the formal parameter Loading and saving function block outputs Instance Name Formal Parameter Output ee D parapet Actual Parameter Output MY_COUNT CV current ue o ks a wv 482 35006144 07 2011 Instruction List IL Informal Form of CAL with a List of Input Parameters With this type of call call without formal parameter names the function block is called using a CAL instruction that follows the instance name of the function block and a bracketed list of actual parameter for the inputs and outputs The order in which the actual parameters are listed in a function block call is significant The list of actual parameters cannot be wrapped EN and ENO cannot be used for this type
194. 35006144 10 Unity Pro Program Languages and Structure Reference Manual 07 2011 Schneider www schneider electric com Electric The information provided in this documentation contains general descriptions and or technical characteristics of the performance of the products contained herein This documentation is not intended as a substitute for and is not to be used for determining suitability or reliability of these products for specific user applications It is the duty of any such user or integrator to perform the appropriate and complete risk analysis evaluation and testing of the products with respect to the relevant specific application or use thereof Neither Schneider Electric nor any of its affiliates or subsidiaries shall be responsible or liable for misuse of the information contained herein If you have any suggestions for improvements or amendments or have found errors in this publication please notify us No part of this document may be reproduced in any form or by any means electronic or mechanical including photocopying without express written permission of Schneider Electric All pertinent state regional and local safety regulations must be observed when installing and using this product For reasons of safety and to help ensure compliance with documented system data only the manufacturer should perform repairs to components When devices are used for applications with technical safety requirements the relevant i
195. 40 CPU 671 60 and 140 CPU 672 61 PLCs The version is displayed in hexadecimal format SW151 Status of Ethernet This word codes the status of the Ethernet link 0 BOARD_STS link e Bit 0 0 if the Ethernet link is stopped e Bit 1 0 e Bit 2 0 half duplex mode 1 full duplex e Bit3 0 e Bits 4 to 11 7 for Quantum 6 for Hot Standby Quantum e Bit 12 0 10 Mbits link 1 100 Mbits link e Bit 13 0 10 100Base TX link twisted pair e Bit 14 0 e Bit 15 0 Ethernet link inactive 1 Ethernet link active SW152 to SW153 Detected ERIO Drop The bits of words SW152 to SW153 are 214 35006144 07 2011 System Objects Word Symbol Function Description Initial state SW160 to SW167 REFRESH IO Device operating status determined by IO scanning The bits of words SW160 to SW167 are associated with devices that have been IO scanned The bit is set to 0 if the device has a detected error It is set to 1 if the device is operating correctly SW 160 0 device No 1 SW160 1 device No 2 SW 167 15 device No 128 Note These system words are only available for Quantum coprocessors and are unavailable for NOE modules SW168 to SW171 VALID_GD Operating status of Global Data The bits of words SW168 to SW171 are associated with Global Data The bit is set to 0 if the device has a detected error It is set to 1 if the device is operating correctly SW 168 0 de
196. 40 Premium Quantum T_SIGN_CPT_BMX Yes No No T_UNSIGN_CPT_BMX Yes No No T_CNT_105 No No No Electronic cam application T_CCY_GROUPO No No No T_CCY_GROUP1_2_ 3 No No No Axis control application T_AXIS_AUTO No Yes No T_AXIS_STD No Yes No T_INTERPO_STD No Yes No T_STEPPER_STD No Yes No Sercos application T_CSY_CMD No Yes No T_CSY_TRF No Yes No T_CSY_RING No Yes No T_CSY_IND No Yes No T_CSY_FOLLOW No Yes No T_CSY_COORD No Yes No T_CSY_CAM No Yes No Communication application T_COM_STS_GEN Yes Yes No T_COM_UTW_M No Yes No T_COM_UTW_S No Yes No T_COM_MB No Yes No T_COM_CHAR No Yes No T_COM_FPW No Yes No T_COM_MBP No Yes No T_COM_JNET No Yes No T_COM_ASI No Yes No T_COM_ETY_1X0 No Yes No T_COM_ETY_210 No Yes No T_COM_IBS_128 No Yes No T_COM_IBS_ 242 No Yes No T_COM_PBY No Yes No 35006144 07 2011 585 Use of DFBs IODDT families Modicon M340 Premium Quantum T_COM_CPP100 No Yes No T_COM_ETYX103 No Yes No T_COM_ETHCOPRO No Yes No T_COM_MB_BMX Yes No No T_COM_CHAR_BMX Yes No No T_COM_CO_BMX Yes No No T_COM_ETH_BMX Yes No No Adjustment application T_PROC_PLOOP No Yes No T_PROC_3SING_LOOP No Yes No T_PROC_CASC_LOOP No Yes No T_PROC_SPP No Yes No T_PROC_CONST_LOOP No Yes No Weiging application T_WEIGHING_ISPY101 No Yes No Common to all applications T_GEN_MOD No No No 586 35006144 07 2011 Use of DFBs Use of a DFB in a
197. 44 07 2011 Ladder Diagram LD Parameters Inputs and outputs are required to transfer values to or from an FFB These are called formal parameters Objects are linked to formal parameters these objects contain the current process states They are called actual parameters Formal and actual parameters Actual Parameters FBI_1 1 CTU EN ENO Actual Parameters Clock CTU Q Output I1 1 3 R MUX 1 varl var2 py CV Current_Value Formal Parameters At program runtime the values from the process are transferred to the FFB via the actual parameters and then output again after processing Only one object actual parameter of the following types may be linked to FFB inputs e Contact Variable Address Literal ST Expression ST expressions on FFB inputs are a supplement to IEC 61131 3 and must be enabled explicitly e Link The following combinations of objects actual parameters can be linked to FFB outputs e one or more coils e one or more contacts e one variable e avariable and one or more connections but not for VAR_IN_OUT see page 363 outputs an address e an address and one or more connections but not for VAR_IN_OUT see page 363 outputs e one or more connections but not for VAR_IN_OUT see page 363 outputs 35006144 07 2011 357 Ladder Diagram LD The data type of the object to be linked must be the same as that of the FFB input output If all actu
198. 47 Ladder Diagram LD General Information about the LD Ladder Diagram Language Introduction This section describes the Ladder Diagram LD according to IEC 61131 3 The structure of an LD section corresponds to a rung for relay switching The left power rail is located on the left hand side of the LD editor This left power rail corresponds to the phase L ladder of a rung With LD programming in the same way as in a rung only the LD objects which are linked to a power supply that is to say connected to the left power rail are processed The right power rail corresponds to the neutral wire However all coils and FFB outputs are linked with it directly or indirectly and this creates a power flow A group of objects which are linked together one below the other and have no links to other objects excluding the power rail is called a network or a rung 348 35006144 07 2011 Ladder Diagram LD Representation of an LD Section Representation Normally Horizontal Boolean Link Coil IX20 MX50 QX 100 a wo o Io Rod MX60 MS vertical Boolean Link Ths Normally QX100 NEXT Jum x p P gt is Contact for detecting positive transitions Label Jump target ve Jump target NEXT EN Input ENO Output Inversion ST Expression FFB Link Variable AND OR AND Errort EN ENO EN ENO EN ENO IN1 gt p gt A lt BP m gt Resultl TRUE gt
199. 5006144 07 2011 241 Compatibility between BOOL and EBOOL The operations authorized between these two types of variables are e value copying e address copying Copies between types BOOL destination EBOOL destination BOOL source Yes Yes EBOOL source Yes Yes Compatibility between the parameters of elementary functions EF Effective parameter external to EF Formal BOOL parameter internal to EF Formal EBOOL parameter internal to EF BOOL Yes No EBOOL In gt Yes Yes In Out gt No Out gt Yes Compatibility between the parameters of block functions EFB DFB Effective parameter external to FB Formal BOOL parameter internal to FB Formal EBOOL parameter internal to FB BOOL Yes In gt Yes In Out gt No Out gt Yes EBOOL In gt Yes Yes In Out gt No Out gt Yes Compatibility between array variables ARRAY i j OF BOOL ARRAY i j OF EBOOL destination destination ARRAY i j OF BOOL Yes No source ARRAYVii j OF No Yes EBOOL source 35006144 07 2011 Data Types Compatibility Compatibility between static variables BOOL MW xi direct EBOOL Mi direct addressing addressing BOOL Var BOOL Yes No declared variable EBOOL Var EBOOL No Yes declared variable EBOOL data types follow the rules below e A EBOOL type variable cannot
200. 5006144 07 2011 Presentation Data Usage Data types and instances created using the data editor can be inserted context dependent in the programming editors The following functions are available e Access to all programming language editors e Only compatible data is displayed e View of the functions function blocks procedures and derived data types arranged according to their library affiliation e Instance declaration during programming is possible Data selection dialog box GEOFBDEDITOR Instance selection IN1 IN2 Variables Function blocks OUT Fl Nme C Name Type In structure Comment Address Emptying SFCSTEP_STATE motor mixer Motor JAE motor emptying Motor b1_a_presel Int Set point AMW100 b1_b_presel Set point AMW101 fbi_c_presel Set point AMW102 adjust tempo_0 logon OK Cancel 35006144 07 2011 37 Presentation Online Modifications Restrictions About It is possible to modify the type of a variable or a Function Block FB instance declared in application or in a Derived Function Block DFB directly in online mode see Unity Pro Operating Modes That means it is not required to stop the application to perform such a type modification These operations
201. 6 209 Description of Quantum System Words SW98 to SW109 212 Description of Quantum System Words SW110 to SW177 213 Description of Quantum System Words SW180 to SW702 216 6 5 Modicon M340 Specific System Words 00000 eee ee eee 222 Description of System Words SW142 to SW145 SW146 and SW147 SW150 to SW154 SW160 to SW167 222 Part Ill Data Description 00000 cee eee 225 Chapter 7 General Overview of Data 00e eee eeuee 227 General te eerror eee each feat e eh he Lae ke ae 228 General Overview of the Data Type Families 00 229 Overview of Data Instances asuun unae eee 231 Overview of the Data References 00 00 e eee eee eee 233 Syntax Rules for Type Instance Names 0 000 e ee eee eee 234 Chapter 8 Data Types 0c cece eee ee eee eee eee 235 8 1 Elementary Data Types EDT in Binary Format 236 Overview of Data Types in Binary Format 0 000 eee 237 Boolean Types Tiri steaks oasis ale ae ae ae ac 239 Integer TyP S gt a ribinei og wih ed Read ge ind penis Gee ee anA 244 The Time Type Ss sanasa Lek pak rts Ar aa EE carly Sade aaa ea C ai a deck 246 35006144 07 2011 5 8 2 Elementary Data Types EDT in BCD Format 247 Overview of Data Types in BCD Format 0 eee eee 248 The Datel ype esicyi0 Shit ke eee tel ds e
202. 631 EFB Error Codes and Values EFB name Error code ENO Error Error Error description statein valuein value in case of Dec Hex error LAG2 FP_ERROR F See table Common Floating Point Errors page 637 LEAD_LAG E_ERR_DEN 30152 16 8A38 Not a valid floating point number LEAD_LAG FP_ERROR F See table Common Floating Point Errors page 637 PCON2 E_ERR_DEN F 30152 16 8A38 Nota valid floating point number PCON2 W_WARN_ZDR_XRR T 30105 16 7599 DR XRR lt 100 or XRR gt 100 PCON2 W_WARN_ZDR_T1T2 T 30104 16 7598 T2 gt T1 PCON2 FP_ERROR F See table Common Floating Point Errors page 637 PCON2 E_ERR_ZDR_HYS F 30106 16 8A66 2 IUZI lt IHYSI PCON3 E_ERR_DEN F 30152 16 8A38 Nota valid floating point number PCONS3 W_WARN_ZDR_XRR T 30105 16 7599 DR XRR lt 100 or XRR gt 100 PCON3 W_WARN_ZDR_T1T2 T 30104 16 7598 T2 gt T1 PCON3 FP_ERROR F See table Common Floating Point Errors page 637 PCONS3 E_ ERR_ZDR_HYS F 30106 16 8A66 2 IUZI lt IHYSI PD_OR_PI E_ERR_DEN F 30152 16 8A38 Not a valid floating point number PD_OR_PI WAF_PDPI_OG_UG F 30103 16 8A69 YMAX lt YMIN PD_OR_PI FP_ERROR F See table Common Floating Point Errors page 637 PDM PDM_TMAX_TMIN F 30115 16 8A5D t_max lt t_min PDM PDM_OG_UG 30114 16 8A69 Ipos_up_x gt Ipos_lo_xl or Ineg_up_xl gt Ineg_lo_xl PDM
203. 71 to SW534 are associated with the NOM2DIOHEALTHi of the distributed distributed stations DIO 64 words associated with the 64 DIO i 1 64 station modules stations of the third network of the third DIO SW471 operating status of the station 1 modules network SW472 operating status of the station 2 modules SW534 operating status of the station 64 modules Bits 0 to 15 of each of these words are associated with the modules located in positions 16 to 1 of these stations The bit is set to 0 if the module is faulty and set to 1 if the module is operating correctly Example SW520 5 0 The module located in station 86 slot 11 of the third DIO network is faulty Note For modules 140 CRA 2 eee the value of this bit is not significant and is always set to 0 These words are not available on safety PLCs and DIO network 218 35006144 07 2011 System Objects Word Symbol Function Description Initial state SW535 RIOERRSTAT RIO error on start up This word stores the start up error code This word is always set to 0 when the system is running in the event of error the PLC does not start up but generates a stop status code 01 02 03 04 10 11 12 21 I O assignment length Remote I O link number Number of stations in the I O assignment I O assignment checksum Length of the station descriptor I O station number Station autonomy time 13 14
204. 89 Glossary Section SFC SFC objects Single token ST STRING Structure Program module belonging to a task which can be written in the language chosen by the programmer FBD LD ST IL or SFC A task can be composed of several sections the order of execution of the sections corresponding to the order in which they are created and being modifiable SFC is the abbreviation of Sequential Function Chart SFC enables the operation of a sequential automation device to be represented graphically and in a structured manner This graphic description of the sequential behavior of an automation device and the various situations which result from it is performed using simple graphic symbols An SFC object is a data structure representing the status properties of an action or transition of a sequential chart Operating mode of an SFC chart for which only a single step can be active at any one time ST is the abbreviation of Structured Text language Structured Text language is an elaborated language close to computer programming languages It enables you to structure series of instructions A variable of the type STRING is an ASCII standard character string A character string has a maximum length of 65534 characters View in the project navigator with represents the project structure 690 35006144 07 2011 Glossary Subroutine Task TIME Time literals Time Out TIME_OF_DAY Program module
205. ADR LG L ADR LG L ADR No L ADR LG No L ADR LG Inputs out _ ADR L ADR LG L ADR LG L ADR IOCHS L ADR LG No L ADR LG puts see page 584 Outputs VAL VAL L ADR LG VAL No L ADR LG No L ADR LG Public VAL VAL VAL VAL No No No No variables Private VAL VAL VAL VAL No No RTE No variables Key 1 Derived data family except input output derived data types IODDT 2 Except for EBOOL type static variables with Quantum PLCs CAUTION UNEXPECTED APPLICATION BEHAVIOR ARRAY INDEX Take into account the shift of the index for ARRAY variables that have a not null start index on ANY_ARRAY_x entry the shift equals the start index value Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 561 Description of DFBs DFB Parameters Illustration This illustration shows some examples of DFB parameters Inputs Control Deviation Speed Enable Actions Outputs Accel Error Inputs Outputs Description of the Parameters This table shows the role of each parameter Parameter Maximum number Role Inputs 32 1 These parameters can be used to transfer the values of the application program to the internal program of the DFB They are accessible in read only by the DFB but are not accessible by the application program Outputs 32 2 These parameters can be used t
206. ANGE T 30110 Parameter out of range 16 759E MFLOW FP_ERROR F See table Common Floating Point Errors page 637 MFLOW Status word values T F For details about the MF LOW status word refer to the MFLOW desription see Unity Pro Control Block Library QDTIME E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 SCALING E ERR_NULL_INPUT_SCALE F 30121 Null input scale max and min limit 16 8A57 must be different SCALING FP_ERROR F See table Common Floating Point Errors page 637 SCALING Status word values T F For details about the SCALING status word refer to the SCALING description see Unity Pro Control Block Library TOTALIZER W_WARN_OUT_OF_RANGE T 30110 Parameter out of range 16 759E TOTALIZER FP_ERROR F See table Common Floating Point Errors page 637 TOTALIZER W_WARN_TOTALIZER_CTER_ T 30113 Maximum value of cter has been MAX 16 75A1 reached TOTALIZER Status word values T F For details about the TOTALIZER status word refer to the TOTALIZER description see Unity Pro Control Block Library VEL_LIM E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 VEL_LIM E ERR_AB1_MAX_MIN F 30101 YMAX lt YMIN 16 8A6B VEL_LIM FP_ERROR F See table Common Floating Point Errors page 637 35006144 07 2011 621 EFB Error Codes and Values Controller Table of error codes and errors values created for EFBs of the Controller famil
207. B in a Program in Function Block Diagram Language 596 35006144 07 2011 579 Use of DFBs Rules for Using DFBs in a Program General DFB instances can be used in all languages Instruction List IL Structured Text ST Ladder LD and Function Block Diagram FBD and in all the tasks of the application program sections subroutine etc except for event tasks and SFC program transitions General Rules of Use When using a DFB you must comply with the following rules for whatever language is being used e Itis not necessary to connect all the input input output or output parameters except the following parameters which it is compulsory for you to assign e generic data type input parameters ANY_INT ANY_ARRAY etc e input output parameters e generic data type output parameters other than tables ANY_INT ANY_REAL etc e STRING type input parameters e unconnected input parameters keep the value of the previous call or the initialization value defined for these parameters if the block has never been called e all of the objects assigned to the input input output and output parameters must be of the same type as those defined when the DFB type was created for example if the type INT is defined for the input parameter speed then you cannot assign it the type DINT or REAL The only exceptions are BOOL and EBOOL types for input and output parameters not for input output parameters which can be mixed Exam
208. CONT_CTL Library Conditioning Table of error codes and errors values created for EFBs of the Conditioning family EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error DTIME W_WARN_OUT_OF_RANGE T 30110 Parameter out of range 16 759E DTIME FP_ERROR F See table Common Floating Point Errors page 637 DTIME Status word values T F For details about the DTIME status word refer to the DTIME desription see Unity Pro Control Block Library INTEGRATOR E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 INTEGRATOR E_ERR_IB_MAX_MIN F 30102 YMAX lt YMIN 16 8A6A INTEGRATOR FP_ERROR F See table Common Floating Point Errors page 637 LAG_FILTER E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 LAG_FILTER FP_ERROR F See table Common Floating Point Errors page 637 LDLG E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 LDLG FP_ERROR F See table Common Floating Point Errors page 637 LEAD E_ERR_DEN F 30152 Not a valid floating point number 16 8A38 LEAD FP_ERROR F See table Common Floating Point Errors page 637 620 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error MFLOW W_WARN_OUT_OF_R
209. D FBD IL SFC NOTE Only LD and FBD languages are available on Quantum Safety PLCs Tasks and Processes The following table describes the available tasks and processes Platforms Modicon M340 Premium TSX Atrium Quantum 140 CPU TSX Processors P34 1000 P34 20 P57 0244 P57 2ee P57 5ee PCI 57 Steere 651e 651 60S P57 1 e P57 See P57 6634 204 354 AZeeee 652 60 671 60S P57 4ee 53eeee 671 60 H57 24M 672 61 H57 44M Master task X X x x X X X X X cyclic or periodic Fast task X X x x X X X X periodic Auxiliary tasks 4 4 periodic Maximum size 64Kb 16Mb of a section 35006144 07 2011 67 PLC Functions Platforms Modicon M340 Premium TSX Atrium TSX Quantum 140 CPU I O type event processing 32 64 32 64 128 64 64 128 Timer type event processing 16 32 32 16 32 Total of I O type and Timer type event processing 32 64 32 64 128 64 64 128 X or Value available tasks or processes the value is the maximum number unavailable tasks or processes 68 35006144 07 2011 Application Program Structure Subject of this Chapter This chapter describes the structure and execution of the programs created using the Unity Pro software What s in this Chapter This chapter contains the following sections
210. D SFC 408 data instances 293 data types 235 DATE 250 DDT 265 derived data types DDT 265 269 derived function block DFB 551 representation 278 556 DFB representation 556 diagnostics DFB 599 DINT 244 DIV IL 463 DS SFC 408 DT 252 DWORD 263 35006144 07 2011 695 Index E EBOOL 239 EDT 235 EFB 277 elementary data types EDT 235 elementary function block EFB 277 278 ELSE 514 ELSIF THEN 515 EN ENO FBD 331 IL 477 486 494 LD 367 ST 533 542 548 EQ IL 464 error codes 603 event processing 89 EXIT 522 F FBD language 321 324 structure 322 floating point 253 FOR TO BY DO END_FOR ST 517 forced bits 239 G GE IL 464 GT IL 464 H HALT 145 IEC Compliance 639 IF THEN END_IF ST 513 IN_OUT FBD 333 IL 487 494 LD 363 ST 542 548 input output addressing 300 instruction list IL language 449 473 478 489 operators 459 structure 457 INT 244 J JMP FBD 335 IL 467 469 LD 364 SFC 415 ST 526 L L SFC 408 labels FBD 335 IL 469 LD 364 ST 526 LD language 347 354 structure 348 LD operators IL 347 LE IL 465 LT 465 696 35006144 07 2011 Index M memory structures 107 109 MOD IL 463 ST 505 MUL IL 463 N NE IL 465 NOT IL 462 O operate 365 OR IL 461 ST 507 P P SFC 408 PO SFC 408 P1 SFC 408 private variables DFB 566
211. DENT Surname STRING 15 t name STRING 15 UINT f Birth DATE ADDRESS Person_1 IDENT Instance structure of IDENT type Person_1 Age to the age of Ac Person_1 Location Town Access to the location where Pe 35006144 07 2011 311 Data References References to Instances of the DFB EFB Families The user chooses a name symbol which can be used to access the data instance Giving the DFB type Parts_Counter l0 4 1 5 Part OK MW 100 Preset Num_parts_attained M2 Num_Parts_Prog counter Parts Screw_Counter Parts Instance name of block o f Counter type Screw_Counter Num_Parts_ Prog to public variable Num_Parts_Prog Screw _Counter Num_ parts attained to the output interface Num_parts_attained 312 35006144 07 2011 Data References References to Data Instances by Address Introduction What is a data instance reference see page 233 At a Glance It is only possible to reference a data instance by address for certain data instances that belong to the EDT family These instances are e internal variables M lt i gt MW lt i gt MD lt i gt MF lt i gt e constants KW lt i gt KD lt i gt KF lt i gt e inputs outputs l lt address gt Q lt address gt NOTE Instances MD lt i gt MF lt i gt KD lt i gt and KF lt i gt are not available for Modicon M340 Reference by Direct A
212. DFB 1 7 Subject of this Chapter This chapter provides an overview of the different elements that make up the user function blocks What s in this Chapter This chapter contains the following topics Topic Page Definition of DFB Function Block Internal Data 560 DFB Parameters 562 DFB Variables 566 DFB Code Section 568 35006144 07 2011 559 Description of DFBs Definition of DFB Function Block Internal Data At a Glance There are two types of DFB internal data The parameters Input Output or Input Output Public or Private variables The internal data of the DFB must be defined using symbols this data cannot be addressed as an address Elements to Define for Each Parameter When the function block is created the following must be defined for each parameter Types of Objects Name Name of DFB type max 32 characters This name must be unique in the libraries the authorized characters used depend on the choice made in the Identifiers area of the Language extensions tab in Project Settings see Unity Pro Operating Modes A type of object BOOL INT REAL etc A comment of a maximum of 1024 characters optional Formatting characters carriage return tab etc are not allowed An initial value The read write attribute that defines whether the variable may or may not be written in runtime R read only or R W read write This attribute must only be defined for p
213. DFB means that temporary results do not have to be saved for further processing in another part of the program EN and ENO One EN input and one If the value of 1 If the value of 1 ENO output can be used in all FFBs ENO is set to 0 EN is equal to 0 when the FFB is invoked the algorithms defined by the FFB are not executed and EN is equal to 1 when the FFB is invoked the algorithms defined by the FFB will be executed After the algorithms have been executed successfully the value o is set to 0 f ENO is set to 1 If an error occurs when executing these algorithms ENO If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if links on disabled EF see Unity Pro Operating Modes If ENO is set to 0 caused by 1 e Function blocks e EN ENO handling with function blocks that only have one link as an output parameter EN INI1 IN2 FUNCBLOCK 1 ENO OUT EN 0 or an error during execution If EN INI IN2 FUNCBLOCK_ 2 ENO OUT EN equals to 1 Please refer to Maintain output EN of FUNCBLOCK_1 is set to 0 the link on output OUT of FUNCBLOCK_1 maintains the old status it had during the last correctly executed cycle 35006144 07 2011 331 Function Block Language FBD e EN ENO handling with function blocks that have one varia
214. D_CASE See Also ELSE see page 514 516 35006144 07 2011 Structured Text ST Repeat Instruction FOR TO BY DO END_FOR Description The FOR instruction is used when the number of occurrences can be determined in advance Otherwise WHILE see page 520 OfREPEAT see page 521 are used The FOR instruction repeats an instruction sequence until the END_ FOR instruction The number of occurrences is determined by start value end value and control variable The control variable initial value and end value must be of the same data type DINT or INT The control variable initial value and end value can be changed by a repeated instruction This is a supplement to IEC 61131 3 The FOR instruction increments the control variable value of one start value to an end value The increment value has the default value 1 If a different value is to be used it is possible to specify an explicit increment value variable or constant The control variable value is checked before each new loop If it is outside the start value and end value range the loop will be left Before running the loop for the first time a check is made to determine whether incrementation of the control variables starting from the initial value is moving toward the end value If this is not the case e g initial value lt end value and negative increment the loop will not be processed The control variable value is not
215. E Unlike informal calls without a CAL instruction when making informal calls with a CAL instruction the value to be processed first actual parameter is not explicitly loaded in the battery Instead it is part of the list of actual parameters For this reason when making informal calls with a CAL instruction the list of actual parameters must be put in brackets 35006144 07 2011 493 Instruction List IL EN and ENO With all procedures an EN input and an ENO output can be configured If the value of EN is equal to 0 when the procedure is called the algorithms defined by the procedure are not executed and ENO is set to 0 If the value of EN is 1 when the procedure is called the algorithms defined by the function are executed After the algorithms have been executed successfully the value of ENO is set to 1 If an error occurs when executing these algorithms ENO is set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If ENO is set to 0 caused when EN 0 or an error occurred during executing the outputs of the procedure are set to 0 If EN ENO are used the procedure call must be formal The assignment of variables to ENO must be made using the gt operator PROC EN 1 IN1 varl IN2 var2 ENO gt error OUT1 gt resultl OUT2 gt result2 Calling the
216. EALTHij PLC modules 1 for Standalone and Hot Standby local PLC s main 1 and i 1 32 j 1 5 Including Hot extension 2 racks Standby CPUs SW180 module health bits of the station 1 rack 1 SW181 module health bits of the station 1 rack 2 Words SW182 and SW183 are associated with PLC stations 1 for only the Hot Standby peer PLC s main 1 and extension 2 racks SW182 module health bits of the station 1 rack 1 SW183 module health bits of the station1 rack 2 NOTE SW182 SW183 are not used in a Standalone PLC SW184 is reserved Words SW185 and SW339 are associated with PLC stations 2 to 32 Each station has 5 words available but only the first 2 are used SW185 module health bits of the S908 station 2 rack 1 SW186 module health bits of the S908 station 2 rack 2 SW187 is reserved SW188 is reserved SW189 is reserved SW335 module health bits of the S908 station 32 rack 1 SW336 module health bits of the S908 station 32 rack 2 SW337 is reserved SW338 is reserved SW3339 is reserved Bits 0 to 15 of each of these words are associated with the modules located in positions 16 to 1 of these racks The bit equals 0 if the module is inoperative and equals 1 if the module is operating correctly Example SW185 5 0 the module located in station 2 rack 1 slot 11 is inoperative Note Modules 140 XBE 100 00 see Quantum with Unity Pro Hardware Reference Manual require special ma
217. ES YES LOCIOERR rack I O system when a fault occurs on an I O fault module placed in one of the racks This bit is reset to 1 by the system when the fault disappears 4 CAUTION S119 for Quantum PLCs On Quantum network communication errors with remote devices detected by communication modules NOM NOE NWM CRA CRP and motion modules MMS are not reported on bits S10 S16 and S119 Failure to follow these instructions can result in injury or equipment damage 168 35006144 07 2011 System Objects Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S120 DIOERRPLC DIO bus fault CPU Normally set to 1 this bit is set to 0 by the system when a fault occurs on a device connected to the DIO bus managed by the Modbus Plus link built into the CPU This bit is not available on Quantum safety PLCs In the Diagnostic viewer some information are available if the entry is selected to clarify error type on the bus This information can identify the correct remote bus with the bus number RIO DIO NO NO YES except for safety PLCs S121 DIOERRNOM1 DIO bus fault NAME No 1 Normally set to 1 this bit is set to 0 by the system when a fault occurs on a device connected to the DIO bus managed by the first 140 NAME 2ee module This bit is not available on Quantum safety PLCs In the Diagnostic
218. F lt i gt SKF lt i gt are not available According to the IEC standard Kw indicates a constant word type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt sKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type MW lt i gt SKW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD 1D SMF lt i gt SKF lt i gt SOF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are not available According to the IEC standard M indicates a memory bit type language object 668 35006144 07 2011 Glossary MD MF MW Q According to the IEC standard smw indicates a memory double word type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt sKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type SMW lt i gt SKW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SQF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are
219. FBD 330 360 480 537 public variables DFB 566 FBD 329 IL 479 LD 359 ST 537 R R IL 461 LD 352 SFC 408 REAL 253 REPEAT UNTIL END_REPEAT 521 RETURN FBD 335 IL 467 LD 364 ST 524 S S IL 460 LD 352 SFC 408 sections 76 77 SFC language 389 405 structure 391 SFCCHART_STATE 393 SFCSTEP_STATE 399 SFCSTEP_TIMES 398 STRING 258 structure 265 structured text ST instructions 508 language 497 529 535 544 operators 504 structure 499 SUB IL 463 subroutines 76 80 system bits 148 system words 170 Modicon M340 222 Premium 196 200 Quantum 208 213 35006144 07 2011 697 Index T tasks 69 73 cyclic 84 periodic 85 TIME 246 TOD 251 U UDINT 244 UINT 244 W warm start 127 watchdogs mono task 86 multi task 94 WHILE DO END_WHILE ST 520 WORD 263 X XOR IL 462 ST 507 698 35006144 07 2011
220. FP_ERROR F See table Common Floating Point Errors page 637 PI E_ERR_DEN 30152 16 8A38 Not a valid floating point number PI E_ERR_PI_MAX_MIN 30103 16 8A69 YMAX lt YMIN PI FP_ERROR See table Common Floating Point Errors page 637 PID E_ERR_DEN 30152 16 8A38 Not a valid floating point number PID E_ERR_PID_MAX_MIN 30104 16 8A68 YMAX lt YMIN PID FP_ERROR See table Common Floating Point Errors page 637 PID_P E_ERR_DEN F 30152 16 8A38 Not a valid floating point number 632 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO Error Error Error description statein valuein value in case of Dec Hex error PID_P E_ERR_PID_MAX_MIN F 30104 16 8A68 YMAX lt YMIN PID_P FP_ERROR F See table Common Floating Point Errors page 637 PIP E_ERR_DEN 30152 16 8A38 Not a valid floating point number PIP E_ERR_PI_MAX_MIN 30103 16 8A69 YMAX lt YMIN PIP FP_ERROR See table Common Floating Point Errors page 637 PPI E_ERR_DEN 30152 16 8A38 Not a valid floating point number PPI E_ERR_PI_MAX_MIN 30103 16 8A69 YMAX lt YMIN PPI FP_ERROR See table Common Floating Point Errors page 637 PWM WAF_PBM_TMINMAX 30113 16 8A5F t_min lt t_max PWM FP_ERROR See table Common Floating Point Errors page 637 QPWM WAF_PBM_TMINMAX 30113 16 8A5F t_min lt t_max QPWM FP_ERROR F
221. Failure to follow these instructions can result in equipment damage 35006144 07 2011 567 Description of DFBs DFB Code Section General The code section s define s the process the DFB is to carry out as a function of the declared parameters If the IEC option is set a single section may be attached to the DFB Otherwise a DFB may contain several code sections the number of sections being unlimited Programming Languages To program DFB sections you can use the following languages e Instruction List IL e Structured Text ST e Ladder language LD e Functional Block Diagram FBD Defining a Section A section is defined by a symbolic name that identifies the section maximum of 32 characters a validation condition that defines the execution of the section a comment maximum of 256 characters a protection attribute no protection write protected section read write protected section Programming Rules When executed a DFB section can only use the parameters you have defined for the function block input output and input output parameters and internal variables Consequently a DFB function block cannot use either the global variables of the application or the input output objects except the system words and bits Si SWi and SDi A DFB section has maximum access rights read and write for its parameters 568 35006144 07 2011 Description of DFBs Example of Code The follo
222. GSAVEREST Com mandand Diagnos tic of Save and Restore Sw96 8 to 15 are error codes when SW96 2 is set to 1 SW96 9 1 indicates that the saved MW number is less than the configured number sSsw96 8 land SW96 9 1 mean that the saved MW number is greater than the configured number sSw96 8 1 SW96 9 1 and Sw96 10 1 indicate a write error in internal flash memory YES NO 190 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW97 CARDSTS Card sta tus Can be read by the user program or by the terminal Indicates the status of the card SSW97 0000 no error 0001 application backup or file write sent to a write protected card 0002 card not recognized or application backup damaged 0003 backup of the application requested but no card available 0004 card access error for example after a card has been removed not properly 0005 no file system present in the card or file system not compatible Use SW93 0 to format the card YES NO NO SWwo99 INPUTADR SWAP Commu nication redun dancy manage ment 1 NOTE This word is used for Premium and Quantum module but has a different function Word used to manage the redundancy of network modules When a problem is detected on a communicatio
223. G_OVER_RANGE 30187 16 8A15 Negative overflow O_PHYS E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_PHYS_WARN E_EFB_NO_MEASURING_RANGE 30185 16 8A17 Internal error O_PHYS_WARN E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_PHYS_WARN E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow O_PHYS_WARN E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_RAW E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow 35006144 07 2011 615 EFB Error Codes and Values EFB name Error code ENO state case of error Error value in Dec Error value in Hex Error de scription O_RAW E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_SCALE E_INPUT_VALUE_OUT_OF_RANGE 30183 16 8A19 Input value is out of range O_SCALE E_EFB_POS_OVER_RANGE 30186 16 8A16 Positive over flow O_SCALE E_EFB_NEG_OVER_RANGE 30187 16 8A15 Negative overflow O_SCALE E_EFB_NOT_CONFIGURED 30188 16 8A14 EFB configu ration does not match hardware configuration O_SCALE_WARN E_INPUT_VALUE_OUT_OF_RANGE 30183 16 8A19 Input value is out of range
224. Hour 00 23 The left 0 is always displayed but can be omitted during entry Minute 00 59 The left 0 is always displayed but can be omitted during entry Second 00 59 The left 0 is always displayed but can be omitted during entry Example Entry Comment DT 2000 1 10 0 40 0 The left 0 of the month hour second can be omitted dt 1999 12 31 23 59 59 The prefix can be written in lower case Dt 1990 10 2 12 02 30 The prefix can be mixed lower upper case 252 35006144 07 2011 Data Types 8 3 Elementary Data Types EDT in Real Format Presentation of the Real Data Type Introduction The data types in Binary format belong to the EDT Elementary data type family which includes single rather than derived data types tables structures function blocks Reminder Concerning Real Format The Real format floating point in ANSI IEEE 754 standard is coded in 32 bit format which corresponds to the single decimal point floating numbers The 32 bits representing the floating point value are organized in three distinct fields These are e S the sign bit which can have the value e 0 for a positive floating point number e 1 for a negative floating point number e e the exponential coded in an 8 bit field integer in binary format e f the fixed point part coded in a 23 bit field integer in binary format Representation 30 23 22 0 s Exponential e Fixed point part f The value of the fixe
225. ISION F 30200 16 8A08 defined as E_ EFB_USER_ERROR_1 MMF_SUB MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error MMF_USUB BAD_REVISION F 30200 16 8A08 defined as E_EFB_USER_ERROR_1 MMF_USUB MMF_ABORT_SUB T 7004 16 1B5C SubNum SubNumEcho handshake error NOTE For details about MMF error codes and error values please refer to the Faults and Error Reporting see Unity Pro Drive control Block Library description in the Motion Library 628 35006144 07 2011 EFB Error Codes and Values Tables of Error Codes for the Obsolete Library Introduction The following tables show the error codes and error values created for the EFBs of the Obsolete Library CLC Table of error codes and errors values created for EFBs of the CLC family EFB name Error code ENO Error Error Error description statein valuein value in case of Dec Hex error DELAY E_ERR_DEN F 30152 16 8A38 Not a valid floating point number INTEGRATOR1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number INTEGRATOR1 E_ERR_IB_MAX_MIN 30102 16 8A6A YMAX lt YMIN INTEGRATOR1 FP_ERROR See table Common Floating Point Errors page 637 LAG1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number LAG1 FP_ERROR F See table Common Floating Point Errors page 637 LEAD_LAG1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number LEAD_LAG1 FP_ERROR F See ta
226. ITE_IO_OBJECT etc Note The number of explicit exchanges is always less than 24 SW160 to Operating status of The words SW160 to SW167 are respectively associated with O SW167 the PLC modules racks 0 to 7 PREMRACKO to Bits 0 to 15 of each of these words are associated with the modules PREMRACK7 located in positions 0 to 15 of these racks The bit is set to 0 if the module is faulty and set to 1 if the module is operating correctly Example SW163 5 0 The module located in slot 5 of rack 3 is faulty 35006144 07 2011 207 System Objects 6 4 Quantum specific System Words Subject of this Section This section describes the system words SW60 to SW640 for Quantum PLCs A WARNING UNEXPECTED APPLICATION BEHAVIOR documented equipment damage Do not use system objects Si SWi as variable when they are not Failure to follow these instructions can result in death serious injury or What s in this Section This section contains the following topics Topic Page Description of Quantum System Words SWE0 to SW66 209 Description of Quantum System Words SW98 to SW109 212 Description of Quantum System Words SW110 to SW177 213 Description of Quantum System Words SW180 to SW702 216 208 35006144 07 2011 System Objects Description of Quantum System Words SW60 to SW66 Detailed Description System words description SWE60 to SW66
227. Instruction List IL Structured Text ST The calls to subroutines are carried out in the sections or from another subroutine The number of nestings is limited to 8 A subroutine cannot call itself non recursive Subroutines are also linked to a task The same subroutine cannot be called from several different tasks Example The following diagram shows a task structured into sections and subroutines _ MAST 4 Sections ca Ee SR Sections Ly Control_1 L Detection Characteristics of a Subroutine The following table describes the characteristics of a subroutine Characteristic Description Name 32 characters maximum accents are possible but spaces are not allowed Language LD FBD IL or ST Task Master fast or auxiliary Comment 512 characters maximum 80 35006144 07 2011 Program Structure 3 3 Mono Task Execution Subject of this Section This section describes how a mono task application operates What s in this Section This section contains the following topics Topic Page Description of the Master Task Cycle 82 Mono Task Cyclic Execution 84 Periodic Execution 85 Control of Cycle Time 86 Execution of Quantum Sections with Remote Inputs Outputs 87 35006144 07 2011 81 Program Structure Description of the Master Task Cycle General Illustration The prog
228. It is not possible to use EN and ENO parameters e The instruction CAL DFB_Name is not followed by a list of arguments In this case this instruction must be preceded by the assignment of the input parameters via a register loading of the value Load then assignment to the input parameter Store The order of assignment of the parameters LD ST is not important however you must assign all the required input parameters before executing the CAL command It is not possible to use EN and ENO parameters CAL DFB Name argument 1 argument 2 argument n or LD Value 1 ST Parameter 1 LD Value n ST Parameter n CAL DFB Name NOTE The ANY_ARRAY type inputs generic data type outputs ANY_ and input outputs of a DFB must be assigned Use of EN ENO Parameters See EN and ENO Parameters page 563 592 35006144 07 2011 Use of DFBs Example of a DFB The following example explains the different calls of a DFB in Instruction List This is the instance Cpt_1 of the Cpt_parts type DFB Cpt_1 Cpt_parts Clear Reset Done Q1 2 1 P_Select Presel 100 Count DFB Call when the Arguments Are Assignments When the arguments are assignments the DFB call Cpt_1 is performed with the following syntax CAL Cpt_1 Reset Clear Presel MD10 Count 100 Done gt Q1 2 1 Where the input parameters assigned by a value expression object or immediate value are entered in the list of argumen
229. M area for M SW111 number of This system word gives information on the size of 0 unrestricted memory the unrestricted memory area for MW area for MW SW128 Number of The Most Significant Byte of this word indicates O NB_P502_ CNX connections open the number of TCP connections open on the Ethernet link TCP IP port 502 SW129 Number of This word indicates the number of TCP 0 NB_DENIED_CNX connections refused connections refused on the Ethernet link TCP IP port 502 SW130 Number of This word indicates the number of TCP messages 0 NB_P502_ REF messages refused _ refused on the Ethernet link TCP IP port 502 SW132 and SW133 Number of This double word SDW 132 indicates the number 0 NB_SENT_MSG messages sent of messages sent on the Ethernet link TCP IP port 502 SW134 and SW135 Number of This double word SDW 134 indicates the number 0 NB_RCV_MSG messages received of messages received on the Ethernet link TCP IP port 502 SW136 Number of devices This word indicates the number of devices 0 NB_IOS_CNX scanned scanned on the Ethernet link TCP IP port 502 SW137 Number of IO This word indicates the number of messages 0 NB_IOS_ MSG Scanning messages received per second from the IO Scanning service received on the Ethernet link TCP IP port 502 SW138 Global Data Global Data coherence error 0 GLBD_ERROR coherence error SW139 Global Data and IO The Least Significant Byte of this word measures 0 BW_GLBD_ IOS Scanning service
230. Modes The OUT1 variable on the same pin either retains its previous status or can be changed externally without influencing the link The variable and the link are saved independently of each other The output beha vior of the FFBs does not depend on whether the FFBs are invoked without EN ENO or with EN 1 NOTE For disabled function blocks EN 0 with an internal time function e g function block DELAY time seems to keep running since it is calculated with the help of a system clock and is therefore independent of the program cycle and the release of the bl ock 362 35006144 07 2011 Ladder Diagram LD VAR_IN_OUT Variable FFBs are often used to read a variable at an input input variables to process it and to output the altered values of the same variable output variables This special type of input output variable is also called a VAR_IN_OUT variable The link between input and output variables is represented by a line in the FFB VAR_IN_OUT variable l 1 EXAMP1 EN ENO Input IN1 OUT1 Outputl Input2 IN2 OUT2 Output2 Comb_IN_OUT IOl IOl Comb_IN_OUT The following special features are to be noted when using FFBs with VAR_IN OUT variables e All VAR_IN_OUT inputs must be assigned a variable e Via graphical links only VAR_IN_OUT outputs with VAR_IN_OUT inputs can be connected e Only one graphical link can be connected
231. Modicon M340 PLCs Memory Structure of Modicon M340 PLCs 200000 Memory Structure of Premium and Atrium PLCs Detailed Description of the Memory Zones 200000 Memory Structure of Quantum PLCs 20000 eee eeees Memory Structure of Quantum PLCs 00 000 e ee eeeee Detailed Description of the Memory Zones 20 000 Operating Modes cece eee eee eee eee Modicon M340 PLCs Operating Modes 2000 eee eaee Processing of Power Outage and Restoral of Modicon M340 PLCs Processing on Cold Start for Modicon M340 PLCs Processing on Warm Restart for Modicon M340 PLCs Automatic Start in RUN for Modicon M340 PLCs Premium Quantum PLCs Operating Modes 0 005 Processing of Power Outage and Restoral for Premium Quantum PLCs Processing on Cold Start for Premium Quantum PLCs Processing on Warm Restart for Premium Quantum PLCs Automatic Start in RUN for Premium Quantum 004 PLOVHALT Mode iicic i e botched et teat aon ana Dados Adee PLC HALT Mod n pce eae Ap yee a Pee Ae ape ee System Objects 000 c eee eee System BitS iea av dct dence ete Gay ea ee System Bit Introduction 00 0c cece eee Description of System Bits SO to S7 2 ee Description of System Bits S9 to S13 nanana eee 35006144 07 2011 Description
232. N type Cistern Level ANA_IN GEN ANA IN GEN type instance which corresponds for example to a tank level sensor Cistern Level Value Reading of the channel input value Cistern_Level Err Reading of channel error bit Access by direct addressing For channel 0 of module 2 of rack 0 we obtain Cistern Level corresponds to CH0 2 0 Cistern Level Value corresponds to IW0 2 0 0 Cistern Level Err corresponds to I0 2 0 ERR 276 35006144 07 2011 Data Types 8 7 Function Block Data Types DFB EFB Subject of this Section This section describes function block data types These are e user function blocks DFB e elementary function blocks EFB What s in this Section This section contains the following topics Topic Page Overview of Function Block Data Type Families 278 Characteristics of Function Block Data Types EFB DFB 280 Characteristics of Elements Belonging to Function Blocks 282 35006144 07 2011 277 Data Types Overview of Function Block Data Type Families Introduction Illustration Function block data type families are e the Elementary Function Block EFB see page 229 type family e the User function block DFB see page 229 type family Function blocks Function blocks are entities containing Illustration e input and output variables acting as an interface with the application e a processing algorithm that operates input variables and complet
233. O Output Inversion ST Expression Inspection window Link A 1 2 3 Variable N AND OR AND N No cond EN ENO EN ENO EN ENO Frrorl N IN1 l po A lt B Result1 TRUE IX1 5 4 c D i IX1 5 5 DA F J Execution number i A Crossin Literal Topological Link g Addresses 4 XOR 5 EN ENO Error2 AND Result2 Tooltip DS condi EN ENO N IN2 M Varx IN3 OLY E1061 Undefined Symbol Varx Objects The objects of the FBD Function Block Diagram programming language help to divide a section into a number of e Elementary Functions EFs Elementary Function Blocks EFBs Derived Function Blocks DFBs Procedures Subroutine calls Jumps Links Actual Parameters Text objects to comment on the logic 35006144 07 2011 43 Presentation Properties FBD sections have a grid behind them A grid unit consists of 10 coordinates A grid unit is the smallest possible space between 2 objects in an FBD section The FBD programming language is not cell oriented but the objects are still aligned with the grid coordinates An FBD section can be configured in number of cells horizontal grid coordinates and vertical grid coordinates The program can be entered using the mouse or the keyboard Input Aids The FBD editor offers the following input aids Toolbars for quick and easy access to the desired objects Syntax and semantics are checked as the pro
234. O is set to 0 caused when EN 0 or an error occurred during execution the output of the function is set to 0 The output behavior of the function does not depend on whether the function was called up without EN ENO or with EN 1 If EN ENO are used the function call must be formal LIMIT EN 1 MN 0 IN varl MX 5 ENO gt var2 ST out Calling the same function in FBD LIMIT 1 EN ENO var2 0 MN OUT out varl IN 5 MxX 35006144 07 2011 477 Instruction List IL Calling Elementary Function Blocks and Derived Function Blocks Elementary Function Block Elementary function blocks have internal states If the inputs have the same values the value on the output can have another value during the individual operations For example with a counter the value on the output is incremented Function blocks can have several output values outputs Derived Function Block Derived function blocks DFBs have the same properties as elementary function blocks The user can create them in the programming languages FBD LD IL and or ST Parameter Inputs and outputs are required to transfer values to or from function blocks These are called formal parameters The current process states are transferred to the formal parameters They are called actual parameters The following can be used as actual parameters for function block inputs e Variable e Ad
235. OF APPLICATION If there is no Memory Card in the PLC during a warm restart the application is lost Failure to follow these instructions can result in injury or equipment damage The diagram below describes how a warm restart operates Acquisition of inputs Vv TOP program execution If S1 1 processing of warm restart Outage detected No Yes Processor stopped Application context saved Power restoral Configuration self test Setting of bit S1 to 1 We Setting of bit S1 to 0 Updating of outputs 35006144 07 2011 129 Operating Modes Operation The table below describes the program execution restart phases on warm restart Phase Description 1 Program execution doesn t resume from the element where the power outage occurred The remaining program is discarded during the warm start Each task will restart from the beginning 2 At the end of the restart cycle the system carries out the following e restore the application s variable value set bit S1 to 1 e the initialization of message and event queues e the sending of configuration parameters to all discrete input output and application specific modules e the deactivation of the fast task and event processing until the end of the master task cycle 3 The system performs a restart cycl
236. Parameter Output or LIMIT MN 0 IN varl MX var2 ST out Calling the same function in FBD LIMIT 0 MN OUT out vari IN var2 MX With formal calls values do not have to be assigned to all formal parameters see also Parameter see page 473 LIMIT MN 0 IN varl ST out Calling the same function in FBD LIMIT 0 MN OUT out vari IN 35006144 07 2011 475 Instruction List IL Informal Call With this type of call call without formal parameter names the function is called using an instruction sequence made up by loading the first actual parameter into the accumulator followed by the function name and an optional list of actual parameters The order in which the actual parameters are listed is significant The list of actual parameters cannot be wrapped After executing the function the result is loaded into the accumulator and can be stored using ST EN and ENO cannot be used for this type of call Calling a function with formal parameter names Actual Parameters Function Name LD A LIMIT B C ST result Actual Parameters Result of the function Calling the same function in FBD LIMIT A MN OUT result B IN cC MX NOTE Note that when making an informal call the list of actual parameters cannot be put in brackets IEC 61133 3 requires that the brackets be left out in this case to illustrat
237. Q 10 ST D 464 35006144 07 2011 Instruction List IL Operator Modifier Meaning Operands Description NE Comparison lt gt Literal variable The NE operator compares the contents of the direct address of accumulator with the contents of the operand If data type BOOL the contents of the accumulator are not equal to BYTE WORD DWORD the contents of the operands the result is a STRING INT DINT Boolean 1 If the contents of the accumulator are UINT UDINT REAL equal to the contents of the operands the result is TIME DATE DT or a Boolean 0 TOD Example In the example the value of D is 1 if Ais not equal to 10 otherwise the value of D is 0 LDA NE 10 ST D LE Comparison lt Literal variable The LE operator compares the contents of the direct address of accumulator with the contents of the operand If data type BOOL the contents of the accumulator are less BYTE WORD DWORD than equal to the contents of the operands the STRING INT DINT result is a Boolean 1 If the contents of the UINT UDINT REAL accumulator are greater than the contents of the TIME DATE DT or operands the result is a Boolean 0 TOD Example In the example the value of D is 1 if Ais smaller than or equal to 10 otherwise the value of Dis 0 LDA LE 10 ST D LT Comparison lt Literal variable The LT operator compares the contents of the direct address of accumulat
238. ROR F See table Common Floating Point Errors page 637 MULTIME E_ERR_ARITHMETIC F 30003 16 8ACD Arithmetic overflow S18 set MULTIME E_ARITHMETIC_ERROR_MUL_OV F 30172 16 8A24 Arithmetic error Muliplication overflow MULTIME E_ARITHMETIC_ERROR_ADD_OV F 30173 16 8A23 Arithmetic error Addition overflow MULTIME E_ARITHMETIC_ERROR_BIG_PAR F 30171 16 8A25 Arithmetic error Parameter exceeds range MULTIME E_NEGATIVE_INPUT_FOR_TIME_OPERATION F 30177 16 8A1F A negative value cannot be converted to data type TIME MULTIME FP_LERROR F See table Common Floating Point Errors page 637 604 35006144 07 2011 EFB Error Codes and Values Statistical Table of error codes and errors values created for EFBs of the Statistical family EFB Error code ENO Error Error Error description name state valuein value in in Dec Hex case of error AVE E_INPUT_VALUE_OUT_OF_RANGE F 30183 16 8A19 Input value is out of range AVE E_DIVIDE_BY_ZERO F 30176 16 8A20 Divide by zero AVE FP_ERROR F See table Common Floating Point Errors page 637 AVE E_ARITHMETIC_ ERROR 30170 16 8A26 Arithmetic error AVE E_FP_STATUS_FAILED 30150 Illegal floating point operation 16 8A3A AVE E_ARITHMETIC_ ERROR_MUL_OV F 30172 16 8A24 Arithmetic error Muliplication overflow AVE E_ARITHMETIC_ ERROR_ADD_OV F 30173 16 8A23 Arithmetic error
239. SW130 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 SW131 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 SW132 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 SW133 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 SW134 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 SW135 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 SW136 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 SW137 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 SW138 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 SW139 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 SW140 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 SW141 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 SW142 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 SW143 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 200 35006144 07 2011 System Objects Description of System Words SW144 to SW146 Detailed Description Description of system words SW144 to SW146 Word Symbol
240. SX 57 5 N 16 minimum 2 maximum 16 4 20 For Quantum range 140 CPU 31 43 e 53ee N 10 minimum 5 maximum 10 4 14 140 CPU 6ee N 20 minimum 5 maximum 20 4 24 NOTE Requests may come from various modules or embedded communication ports The communication exchange capacity of each port is limited therefore the maximum request value set in Sw90 might not be reached N YES YES YES 35006144 07 2011 187 System Objects Word Function Description Initial Modicon Premium Quan Symbol state M340 Atrium tum Continued Maxi The Word is initialized by the system N YES YES YES SW90 mum with N default value If the value 0 is MAXREQNB number entered it is the value N that is taken of re into account If a value between 1 and quests minimum is entered it is the minimum pro value that is taken into account If a cessed value greater than maximum is entered per mas it is maximum value that is taken into ter task account cycle The number of requests to be processed per cycle should take into account requests from all communication ports having access to the server This means that requests from other clients than communication EFs like IO Scanner connected HMI and so on should also be taken into account SW91 92 Function Sw91 Number of function blocks O YES YES NO blocks messages sent per second message sw92 Numbe
241. S_295MS value in hours minutes seconds milliseconds T 49D_17H_2M_47S_295MS value in days hours minutes seconds milliseconds 246 35006144 07 2011 Data Types 8 2 Elementary Data Types EDT in BCD Format Subject of this section This section describes BCD format Binary Coded Decimal data types These are e Date type e Time of Day type TOD e Date and Time DT type What s in this Section This section contains the following topics Topic Page Overview of Data Types in BCD Format 248 The Date Type 250 The Time of Day TOD Type 251 The Date and Time DT Type 252 35006144 07 2011 247 Data Types Overview of Data Types in BCD Format Introduction Reminder Concerning BCD Format The data types in BCD format belong to the EDT Elementary data type family which includes single rather than derived data types tables structures function blocks The Binary Coded Decimal BCD format is used to represent decimal numbers between 0 and 9 using a group of four bits half byte In this format the four bits used to code the decimal numbers have a range of unused combinations Correspondence table Decimal Binary 0000 er 0001 0010 0011 0100 0101 0110 0111 1000 oloo lN I oIa AI OIN 1001 1010 unused 1011 unused 1100 unused 1101 unused 1110 unused
242. T IN2 gt gt 30UT IN2 e For function blocks Instance name formal parameter for the source of the connection 3 4 1 2 TON AND N OUT F _20OUT gt gt N1 OUT FT ET gt gt FH_20UT IN2 e For contacts OUT1_sequential number OUT1_3 gt gt aN OUT gt gt OUI1_3 IN2 Vertical Links The Vertical Link is special The vertical link serves as a logical OR With this form of the OR link 32 inputs contacts and 64 outputs coils links are possible 35006144 07 2011 369 Ladder Diagram LD Text Object Introduction Text can be positioned as text objects in the Ladder Diagram LD The size of these text objects depends on the length of the text The size of the object depending on the size of the text can be extended vertically and horizontally to fill further grid units Text objects may overlap with other objects 370 35006144 07 2011 Ladder Diagram LD Edge Recognition Introduction During the edge recognition a bit is monitored during a transition from 0 gt 1 positive edge or from 1 gt 0 negative edge For this the value of the bit in the previous cycle is compared to the value of the bit in the current cycle In this case not only the current value but also the old value are needed Instead of a bit 2 bits are therefore needed for edge recognition current value and old value B
243. T IN1 gt 10 lt Less than or 7 Expression Literal The value of the first operand is compared with the equal to Variable Address of value of the second operand using lt If the value comparison Data Type BOOL of the first operand is less than or equal to the BYTE INT DINT value of the second the result is a Boolean 1 If the UINT UDINT value of the first operand is greater than the value REAL TIME WORD of the second the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is less DT DATE or TOD than or equal to 10 and otherwise is 0 OUT IN1 lt 10 gt Greater than or 7 Expression Literal The value of the first operand is compared with the equal to Variable Address of value of the second operand using gt If the value comparison Data Type BOOL of the first operand is greater than or equal to the BYTE INT DINT value of the second the result is a Boolean 1 If the UINT UDINT value of the first operand is less than the value of REAL TIME WORD the second the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is greater DT DATE or TOD than or equal to 10 and otherwise is 0 OUT IN1 gt 10 Equality 8 Expression Literal The value of the first operand is compared with the Variable Address of value of the second operand using If the value Data Type BOOL of the first operand is equal to the value of the BYTE INT DINT secon
244. TIME_TO_DINT TIME TO INT TIME TO REAL TIME TO UDINT TIME TO UINT TIME TO WORD TIME TO DWORD TIME TO STRING zo ti 650 35006144 07 2011 IEC Compliance e UDINT_TO BOOL UDINT_TO BYTE UDINT TO DINT UDINT_TO_INT UDINT_TO_REAL UDINT_TO_TIME UDINT_TO_UINT UDINT_ TO WORD UDINT_TO_DWORD e UINT TO BOOL UINT TO BYT UINT TO REAL UINT_TO TIM UINT_TO_DWORD e WORD TO BOOL WORD TO BYTE WORD_TO DINT WORD_TO INT WORD TO REAL WORD TO TIME WORD TO UDINT WORD TO UINT WORD TO BIT WORD TO DWORD e DWORD TO BOOL DWORD TO BYTE DWORD TO DINT DWORD TO_ INT DWORD TO REAL DWORD TO TIME DWORD TO UDINT DWORD TO UINT DWORD TO BIT UINT_TO_DINT UINT TO_INT UINT_TO_UDINT UINT_TO WORD The effects of each conversion are described in the help text supplied with the Base Library Note 2 List of types for truncate function e REAL TRUNC_DINT REAL TRUNC_INT REAL TRUNC_UDINT REAL TRUNC_UINT The effects of each conversion are described in the help text supplied with the Base Library Note 3 List of types for BCD conversion function e BCD TO INT DBCD TO INT DBCD TO DINT List of types for BCD conversion function e INT TO BCD INT TO DBCD DINT TO DBCD
245. TRING INT DINT Boolean 1 If the contents of the accumulator are UINT UDINT REAL less than equal to contents of the operands the TIME DATE DT or result is a Boolean 0 TOD Example In the example the value of Dis 1 if Ais greater than 10 otherwise the value of D is 0 LDA GT 10 ST D GE Comparison gt Literal variable The GE operator compares the contents of the direct address of accumulator with the contents of the operand If data type BOOL the contents of the accumulator are greater BYTE WORD DWORD than equal to the contents of the operands the STRING INT DINT result is a Boolean 1 If the contents of the UINT UDINT REAL accumulator are less than the contents of the TIME DATE DT or operands the result is a Boolean 0 TOD Example In the example the value of Dis 1 if Ais greater than or equal to 10 otherwise the value of Dis 0 LDA GE 10 ST D EQ Comparison Literal variable The EQ operator compares the contents of the direct address of accumulator with the contents of the operand If data type BOOL the contents of the accumulator is equal to the BYTE WORD DWORD contents of the operands the result is a Boolean STRING INT DINT 1 If the contents of the accumulator are not equal UINT UDINT REAL to the contents of the operands the result is a TIME DATE DT or Boolean 0 TOD Example In the example the value of Dis 1 if Ais equal to 10 otherwise the value of D is 0 LD A E
246. The data type of an address can not be declared directly in an ST section e g declaration AT SMW1 UINT not permitted The following variables are declared in the variable editor UnlocVl ARRAY 1 10 OF INT LocV1 ARRAY 1 10 OF INT AT MW100 LocV2 TIME AT MW100 The following calls then have the correct syntax SMW200 5 D LocV1 SMW200 ST Unlocv1 2 LD t 3s ST Locv2 35006144 07 2011 455 Instruction List IL Accessing Field Variables When accessing field variables ARRAY only literals and variables of INT DINT UINT and UDINT types are permitted in the index entry The index of an ARRAY element can be negative if the lower threshold of the range is negative Example Saving a field variable LD vari i ST var2 otto 4 456 35006144 07 2011 Instruction List IL Modifier Introduction Modifiers influence the execution of the operators see Operators page 459 Table of Modifiers Table of Modifiers Modifier Use of Description Operators of data type N BOOL BYTE The modifier N is used to invert the value of the operands bit by WORD DWORD bit Example In the example C is 1 if Ais 1 and B is 0 LDA ANDN B ST c C BOOL The modifier c is used to carry out the associated instruction should the value of the accumulator be 1 TRUE Example In the example the jump after START is only performed when 4 is 1 TRUE an
247. The diagram below describes how a warm restart operates Acquisition of inputs Processor stopped TOP program execution Application context saved If S1 1 processing Power restoral of warm restart Vv Configuration self test Y Outage detected Setting of bit S1 to 1 Setting of bit S1 to 0 Updating of outputs 35006144 07 2011 141 Operating Modes Operation The table below describes the program execution restart phases on warm restart Phase Description 1 Program execution resumes starting from the element where the power outage occurred without updating the outputs 2 At the end of the restart cycle the system carries out the following e the initialization of message and event queues e the sending of configuration parameters to all discrete input output and application specific modules e the deactivation of the fast task and event processing until the end of the master task cycle 3 The system performs a restart cycle during which it e re acknowledges all the input modules e relaunches the master task with the bits S1 warm restart set to 1 e resets bit S1 to 0 at the end of this first master task cycle e reactivates the fast task the auxiliary tasks and event processing at the end of this first cycle of the master task Processing a Warm Restart by Program In the event of warm restart if you want the application to be processed in a particular way you must write
248. Therefore S 7 3 S_ 7 4ands 7 5 can never be active at the same time either The string The same problem occurs if transition condition b is false and c is true when entering the 428 35006144 07 2011 SFC Sequence Language Asymmetric Parallel String Selection Introduction According to IEC 61131 3 a parallel branch must always be terminated with a parallel merge The number of parallel branches must not coincide with the number of parallel merges however Greater Amount of Merges String with 1 Parallel Branch and 2 Parallel Merges a S_19_2 S_19_3 S_19_4 b _19_5 c If Then If transition condition a is true then a sequence runs to S_19_2 S_19_3 ands 19 4 IfstepsS 19 2 S 19 3ands 19 4are activated then the strings run independently of one another If transition condition b is true then a sequence runs to S_19_5 If steps S_19_2 ands 19 5 are active and transition condition c is true then the parallel string is departed 35006144 07 2011 429 SFC Sequence Language Greater Amount of Branches String with 2 Parallel Branches and 1 Parallel Merge a S_19_2 S_19_3 a b S_19_4 S_19_5 c If Then If transition condition a is true then a sequence runs to s_19_2 and 19 3 If steps S_19 2
249. Variable to Another Variable Assignments are used to assign the value of a variable to another variable The instruction A B is used for example to replace the value of the variable A with the current value of variable B If A and B are elementary data types the individual value of B is passed to A If A and B are derived data types the values of all B elements are passed to A Assigning the Value of a Literal to a Variable Assignments are used to assign a literal to variables The instruction C 25 is used for example to assign the value 25 to the variable c Assigning the Value of an Operation to a Variable Assignments are used to assign to a variable a value which is the result of an operation The instruction X A B C D is used for example to assign the result of the operation A B C D to the variable X 510 35006144 07 2011 Structured Text ST Assigning the Value of an FFB to a Variable Assignments are used to assign a value returned by a function or a function block to a variable The instruction B MOD C A is used for example to call the MoD Modulo function and assign the result of the calculation to the variable B The instruction A MY TON O is used for example to assign the value of the Q output of the My_TON function block instance of the TON function block to the variable A This is not a function block call Multiple Assignments Multiple
250. X 30531 16 88BD Variable not mapped to MW 4x area READ_REG E_EFB_MSTR_ERROR 30191 16 8A11 MSTR communication error READ_REG 8195 16 2003 Value displayed in status word Comes together with W_WARN_OUT_OF_RANGE READ_REG MBPUNLOC 8206 16 200E Value displayed in status word Comes together with E_EFB_NOT_STATE_RAM_4X READ_REG See tables of e Modbus Plus and SY MAX EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e SY MAX specific Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e TCP IP EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual WRITE_REG W_WARN_OUT_OF_RANGE 30110 16 759E Parameter out of range 35006144 07 2011 609 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state value value in in in Dec Hex case of error WRITE_REG_ E_EFB_NOT_STATE_RAM_4X F 30531 16 88BD Variable not mapped to MW 4x area WRITE_REG_ E_EFB_MSTR_ERROR F 30191 16 8A11 MSTR communication error WRITE_REG 8195 16 2003 Value displayed in status word Comes together with W_WARN_OUT_OF_RANGE WRITE_REG F 8206 16 200E Value displayed in status word Comes together with E_EFB_NOT_STATE_RAM_4X WRITE_REG F Se
251. _ANY_MAGNITUDE NY_ARRAY_ANY_NUM ANY_ARRAY_ANY_REAL ANY_ARRAY_REAL ANY_ARRAY_ANY_INT ANY_ARRAY_DINT ANY_ARRAY_INT ANY_ARRAY_UDINT ANNY_ARRAY_UINT NY_ARRAY_TIME JANY_ARRAY_ANY_BIT NY_ARRAY_DWORD NY_ARRAY_WORD NY_ARRAY_BYTE NY_ARRAY_BOOL JANY_ARRAY_ANY_STRING ANY_ARRAY_STRING JANY_ARRAY_ANY_DATE NY_ARRAY_DATE_AND_TIME NY_ARRAY_DATE Y_ARRAY_TIME_OF_DAY ANY_ARRAY_EBOOL ANY_ARRAY_ANY_DDT ANY_STRUCTURE ANY_DDT ANY_IODDT ANY_FFB ANY_EFB ANY_DFB 35006144 07 2011 671 Glossary ARRAY ASCII Auxiliary tasks Base 10 literals Base 16 literals An ARRAY is a table of elements of the same type The syntax is as follows ARRAY lt terminals gt OF lt Type gt Example ARRAY 1 2 OF BOOL is a one dimensional table made up of two BOOL type elements ARRAY 1 10 1 20 OF INT is a two dimensional table made up of 10x20 INT type elements ASCII is the abbreviation of American Standard Code for Information Interchange This is an American code but which has become an international standard that uses 7 bits to define every alphanumerical character used in English punctuation symbols certain graphic characters and other miscellaneous commands Optional periodic tasks used to process procedures that do not require fast processing measurement adjustment diagnostic aid etc A literal value in base 10 is used to represent a decimal integer value This value can be preceded by the signs and
252. _DSR_KP T 30103 16 7597 KP lt 0 THREE_STEP_CON1 E_ERR_DSR_HYS F 30105 16 8A67 2 IUZI lt IHYSI THREE_STEP_CON1 FP_ERROR F See table Common Floating Point Errors page 637 THREEPOINT_CON1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number THREEPOINT_CON1 W_WARN_ZDR_XRR 30105 16 7599 DR XRR lt 100 or XRR gt 100 THREEPOINT_CON1 W_WARN_ZDR_T1T2 30104 16 7598 T2 gt T1 THREEPOINT_CON1 FP_ERROR See table Common Floating Point Errors page 637 THREEPOINT_CON1 E_ERR_ZDR_HYS 30106 16 8A66 2 IUZI lt IHYSI TWOPOINT_CON1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number TWOPOINT_CON1 W_WARN_ZDR_XRR 30105 16 7599 DR XRR lt 100 or XRR gt 100 TWOPOINT_CON1 W_WARN_ZDR_T1T2 30104 16 7598 T2 gt T1 TWOPOINT_CON1 FP_ERROR See table Common Floating Point Errors page 637 TWOPOINT_CON1 E_ERR_ZDR_HYS F 30106 16 8A66 2 IUZI lt IHYSI 630 35006144 07 2011 EFB Error Codes and Values CLC_PRO Table of error codes and errors values created for EFBs of the CLC_PRO family EFB name Error code ENO Error Error Error description statein valuein value in case of Dec Hex error ALIM E_ERR_DEN F 30152 16 8A38 Nota valid floating point number ALIM WAF_AB2_VMAX F 30111 16 8A61 vmax lt 0 ALIM WAF_AB2_BMAX F 30112 16 8A60 bmax lt 0 ALIM FP_ERROR F See table Common Flo
253. a structure to contain program and data Formatting with another tool destroys this structure Failure to follow these instructions can result in injury or equipment damage The values of the MWi can be saved in the internal Flash memory using SW96 see page 183 These values will be restored at cold start including application download if the option Initialize of MW on cold start is unchecked in the processor Configuration screen see Unity Pro Operating Modes For sMw words the values can be saved and restored on cold restart or download if the option Reset of Mw on cold restart is not checked in the processor Configuration screen With the sSw96 word management of memory action sMw internal words save delete and information on the actions states Mw internal words is possible Memory Card Specifics Two types of memory card are available e application these cards contain the application program and Web pages e application file storage these cards contain the application program data files from Memory Card File Management EFBs and Web pages 35006144 07 2011 111 Memory Structure Memory Structure of Premium and Atrium PLCs General The PLC memory supports e located application data e unlocated application data e the program task descriptors and executable code constant words initial values and configuration of inputs outputs Structure without Memory Extension Card The data and
254. ables These variables are contained in the application specific modules Access syntax Syntax Example Program access rights Input Output structure IODDT CH lt mod gt lt c gt CH4 3 2 R l inputs BOOL type module error bit l lt mod gt MOD ERR l4 2 MOD ERR R BOOL type channel error bit lt mod gt lt c gt ERR 14 2 3 ERR R BOOL or EBOOL type bit l lt mod gt lt c gt 14 2 3 R l lt mod gt lt c gt lt d gt 14 2 3 1 R INT type word IW lt mod gt lt c gt IW4 2 3 R IW lt mod gt lt c gt lt d gt IW4 2 3 1 R DINT type double word ID lt mod gt lt c gt ID4 2 3 R ID lt mod gt lt c gt lt d gt ID4 2 3 2 R Read type REAL floating point IF lt mod gt lt c gt IF 4 2 3 R IF lt mod gt lt c gt lt d gt IF4 2 3 2 R Q outputs EBOOL type bit Q lt mod gt lt c gt Q4 20 3 R W Q lt mod gt lt c gt lt d gt Q4 20 30 1 R W INT type word QW lt mod gt lt c gt QW4 2 3 R W QW lt mod gt lt c gt lt d gt QW4 2 3 1 R W DINT type double word QD lt mod gt lt c gt QD4 2 3 R W QD lt mod gt lt c gt lt d gt QD4 2 3 2 R W Read type REAL floating point QF lt mod gt lt c gt QF4 2 3 R W QF lt mod gt lt c gt lt d gt QF4 2 3 2 R W M variables Premium INT type word MW lt mod gt lt c gt MW4 2 3 R W MW lt mod gt lt c gt lt d gt
255. ade using Unity CPU 652 60 CPU 651 50 OS CPU 651 60 CPU 651 60 CPU 671 60 CPU 652 60 CPU 671 60 CPU 651 60 S CPU 671 60S CPU 672 61 Atrium PCI 57 204 All CPUs All CPUs All CPUs Simulator Openess Hyperlinks Unity Pro Server for OFS UDE UAG Software components contained in the software package Documentation as context help and PDF OS Loader tool HW Firmware Unity loader available 1 Availability of the blocks depends of the hardware platforms see Unity Pro Standard Block Library 2 Available on all PLC except platforms CPU 651 60 S CPU 671 60 S not available Naming Convention In the following documentation Unity Pro is used as general term for Unity Pro S Unity Pro M Unity Pro L Unity Pro XL and Unity Pro XLS 35006144 07 2011 21 Presentation User Interface Overview The user interface consists of several configurable windows and toolbars User interface File Edit Vie
256. affected by the word ssws This word is not available on Quantum safety PLCs 172 35006144 07 2011 System Objects task outputs relating to this task are no longer managed e SW9 1 1 assigned to the FAST task outputs relating to this task are no longer managed SwWw9 2 to 5 1 assigned to the AUX 0 3 tasks outputs relating to these tasks are no longer managed 3 Note On Modicon M340 inputs outputs distributed via CANopen bus are not affected by the word sw9 On Modicon M340 after an operating mode outputs are in security mode state equal to O while the bit is set 4 Note On Quantum inputs outputs distributed via DIO bus are not affected by the word 2Sw9 This word is not available on Quantum safety PLCs Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW9 Monitor Normally set to 0 this bit can be set to 1 or 0 YES 3 YES YES 4 TSKINHIBOUT ing of 0 by the program or the terminal except task out Inhibits the output updating phase of each for safety put up task PLCs date SW9 0 1 assigned to the MAST CAUTION On Premium Atrium On Quantum UNEXPECTED APPLICATION BEHAVIOR Before setting the SW9 value to 1 ensure that the output behavior will remain appropriate Module outputs located on the X Bus automatically switch to the configured mode fal
257. al e Use of the data structure SFCSTEP TIMES SFCSTEP_TIMES Variable Every step can be implicitly allocated a variable of data type SFCSTEP_ TIMES The elements for this data structure can be read from and written to read write The data structure is handled the same as any other data structure i e they can be used in variable declarations and therefore accessing the entire data structure e g as FFB parameter is possible 398 35006144 07 2011 SFC Sequence Language Structure of the Data Structure Element Name Data type Description VarName delay TIME Delay Time VarName min TIME Minimum Supervision Time VarName max TIME Maximum Supervision Time SFCSTEP_STATE Variable Every step is implicitly allocated a variable of data type SFCST EP STAT E This step variable has the name of the allocated step The elements for this data structure can only be read read only You can see the SFCSTEP_ STATE variables in the Data Editor The Comment for aSFCSTEP STATE variable is the comment entered as a property of the step itself Please refer to Defining the properties of steps see Unity Pro Operating Modes in the Unity Pro Operating Modes Manual The data structure cannot be used in variable declarations Therefore accessing the entire data structure e g as FFB parameter is not possible Structure of the Data Structure
258. al parameters consist of literals a suitable data type is selected for the function block Exception For generic FFB inputs outputs with data type ANY BIT itis possible to link objects of data type INT or DINT not UINT and UDINT This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND IntVarl IN1 OUT F IntVar3 IntVar2 IN2 Not allowed 1 AND_WORD IntVarl IN1 OUT IntVar3 IntVar2 IN2 In this case AND_ INT must be used Not all formal parameters have to be assigned an actual parameter However this does not apply in the case of negated pins These must always be assigned an actual parameter This is also the case with some formal parameter types These types are shown in the following table Table of formal parameter types Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY EFB Input 4 ri is DFB Output z EFB VAR_IN_OUT DFB Input F 7 DFB VAR_IN_OUT i EFB Output EF Input EF VAR_IN OUT G EF Output s T 2 R Procedure Input 358 35006144 07 2011 Ladder Diagram LD Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Procedure VAR_IN_OUT Procedure O
259. ands 19 3 are activated then the strings run independently of one another If transition condition b is true then a sequence runs to S_19 4 and Si S If steps S_19 4 ands 19 5 are activated then the strings run independently of one another IfstepsS_19 2 S 19 4ands 19 5are_ then the parallel string is departed active and transition condition c is true 430 35006144 07 2011 SFC Sequence Language Nested Parallel Strings Nested Parallel Strings pa eae a a I S_8_10 S_8_11 a at b c S_8_12 S_8 13 S_8_14 S_8 15 S_8_16 a d S_8 17 T a el e f S_8_18 S_8 19 ae g If Then If transition condition a is true then a sequence runs toS_8 10 and s 8 11 If transition condition b is true then a sequence runs toS_8 12 and Sk 81B If transition condition c is true then a sequence runs toS 8 14 S 8 15 ands 8 16 IfstepsS_8 13 ands _ 8 14 are active and then a sequence runstos 8 17 transition condition a is true IfstepsS_8 12 ands 8 17 are active and then a sequence runstos 8 18 transition condition e is true 35006144 07 2011 431 SFC Sequence Language 13 10 Multi Token Overview This section describes the Multi Token operating mode for sequence controls What s in this Section This section co
260. anr PEEN STB interface module ATV31 XPSMC 16 LEXIUM 05 YlW 3 1 0 0 0 17 IW 3 10 0 0 0 1 bus 3 adresse device 1 bus 3 adresse device 10 channel 0 data 17 channel 0 data 1 35006144 07 2011 305 Data Instances Examples local station and station on bus for Quantum and Premium PLCs Quantum example Premium example z z P C NAJRI I JV V fi fo IW1 4 1 5 IW0 4 1 5 rack 1 module 4 channel 1 data 5 rack 0 module 4 channel 1 data 5 P C NAIRI V JV V V V V Local rack Be RIO No 3 i B ZZ P RIJ V fi fo i Bus No 2 IW 2 7 0 5 1 5 bus module 5 channel 1 data 5 E m a SIW 3 2 1 4 1 5 bus 3 drop device 2 rack 1 module 4 T mma
261. assignment and initialization Initialization of symbolic variables Array initialization Note 11 page 653 Retentive array declaration and initialization Note 11 page 653 Initialization of structured variables olo NIIA A w Initialization of constants 10 Initialization of function block instances 19 Negated input Negated output 19a formal function function block call non formal function function block call 20 Use of EN and ENO shown in LD Usage without EN and ENO shown in FBD 20a In out variable declaration textual In out variable declaration graphical Graphical connection of in out variable to different variables graphical 35006144 07 2011 645 IEC Compliance Table No Feature No Description of Feature 21 1 Overloaded functions N Typed functions 22 TO_ Note 1 page 650 TRUNC Note 2 page 651 BCD TO Note 3 page 651 TO BCD Note 3 page 651 23 ABS function SQRT function LN function LOG function EXP function SIN function cos function TAN function ASIN function oO ACOS function Ol oOINI ODO oO BR OINI AI WO DM ATAN function 24 N ADD function w MUL function A SUB function oa DIV function O
262. ate command refused indicates that the queue for non urgent aperiodic variable exchange requests is saturated for the time being the bus arbiter is in no position to latch onto nor to comply with a request bit 4 pause fault the bus arbiter has not detected any bus activity during a time period larger than the standardized WorldFip time period bit 5 a network collision has occurred on identifier transmission indicates activity on the network during theoretical pause periods Between a transmission and awaiting a reply from the bus arbiter there should be nothing circulating on the bus If the bus arbiter detects activity it will generate a collision fault for example when several arbiters are active at the same time on the bus bit 6 bus arbiter overrun fault indicates a conflict on accessing the bus arbiter station memory bit 7 unused non significant value bit 8 to bit 15 reserved on 0 206 35006144 07 2011 System Objects Description of Premium Atrium System Words SW155 to SW167 Detailed Description Description of system words SW155 to SW167 Word Function Description Initial Symbol state SW155 Number of explicit Number of explicit exchanges currently being processed on Fipio O NBEXPLFIP exchanges on Fipio carried out by instructions READ_STS REA_PARAM etc Also takes into account the explicit exchanges carried out by requests READ_IO_OBJECT WR
263. ating Point Errors page 637 COMP_PID E_ERR_DEN F 30152 16 8A38 Not a valid floating point number COMP_PID WAF_KPID_KUZ F 30110 16 8A62 gain_red lt 0 or gain_red gt 1 COMP_PID WAF_KPID_OGUG F 30104 16 8A68 YMAX lt YMIN COMP_PID WAF_KPID_UZ F 30109 16 8A63 db lt 0 COMP_PID FP_ERROR F See table Common Floating Point Errors page 637 DEADTIME E_ERR_DEN F 30152 16 8A38 Not a valid floating point number DERIV E_ERR_DEN 30152 16 8A38 Not a valid floating point number DERIV FP_ERROR F See table Common Floating Point Errors page 637 FGEN E_ERR_DEN F 30152 16 8A38 Not a valid floating point number FGEN WAF_SIG_TV_MAX F 30116 16 8A5C t_acc gt t_rise 2 FGEN WAF_SIG_TH_MAX F 30117 16 8A5B t_rise too big FGEN WAF_SIG_TA_MAX T 30106 16 759A t_off gt halfperiod FGEN WAF_SIG_T1_MIN T 30107 16 759B t_max lt t_min FGEN WAF_SIG_FKT F 30118 16 8A5A func_no lt 0 or func_no gt 8 FGEN FP_ERROR F See table Common Floating Point Errors page 637 INTEG E_ERR_DEN F 30152 16 8A38 Not a valid floating point number INTEG E_ERR_IB_MAX_MIN 30102 16 8A6A YMAX lt YMIN INTEG FP_ERROR See table Common Floating Point Errors page 637 LAG E_ERR_DEN 30152 16 8A38 Not a valid floating point number LAG FP_ERROR See table Common Floating Point Errors page 637 LAG2 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number 35006144 07 2011
264. ation Before calling a function block it must be declared in the variables editor Formal Call With formal calls call with formal parameter names the function block is called using an instruction sequence made from the function blocks instance names that follows a bracketed list of actual parameter assignments to the formal parameters Assign input formal parameters via Assignment and the assignment of the input formal parameter using the assignment The sequence in which the input formal parameters and output formal parameters are enumerated is not significant EN and ENO can be used for this type of call 538 35006144 07 2011 Structured Text ST Calling a function block with formal parameter names Instance Names Formal Parameters Inputs Formal Parameters Outputs MY_COUNT CU varl R reset PV 100 value Q gt out CV gt current Actual Parameters Inputs Actual Parameters Outputs Calling the same function block in FBD MY_COUNT cTU vari CU QF out reset 7R 100 value PV cv current Assigning the value of a function block output is made by entering the actual parameter name followed by the assignment instruction followed by the instance name of the function block and loading the formal parameter of the function block output Separated by a full stop E g MY COUNT CU varl R reset PV 100 value Q MY COUNT out CV MY COUNT current
265. aused the event e the inputs and outputs used during event processing NOTE These exchanges may relate e to a channel e g counting module or e toa group of channels discrete module In this case if the processing modifies for example outputs 2 and 3 of a discrete module the image of outputs 0 to 7 is then transferred to the module The inputs acquired and the outputs updated are selected in the configuration Only local inputs outputs can be selected The inputs and the associated group of channels exchanged during the execution of event processing are updated loss of historical values and thus edges You should therefore avoid testing fronts on these inputs in the master MAST fast FAST or auxiliary AUXi tasks 104 35006144 07 2011 Program Structure How to Program Event Processing Procedure The table below summarizes the essential steps for programming event processing Step Action 1 Configuration phase for events triggered by input output modules In offline mode from the configuration editor select Event Processing EVT and the event processing number for the channel of the input output module concerned 2 Unmasking phase The task which can be interrupted must in particular e Enable processing of events at system level set bit S38 to 1 default value e Unmask events with the instruction UNMASKEVT active by default e Unmask the events concerned at channel level for
266. automatically saved in the internal Flash memory at power off They are restored at warm start The SAVE PARAM function does both current and initial parameter adjustment in internal RAM as in other PLCs In this case the internal RAM and the memory card content are different S96 0 and the CARDERR LED is on On cold start after application restore the current parameter are replaced by the last adjusted initial values only if a save to memory card function Backup Save or S66 rising edge was done 110 35006144 07 2011 Memory Structure Save Current Value Delete Files MW Backup On a S94 rising edge the current values replace the initial values in internal memory The internal RAM and the memory card content are different S96 0 and the CARDERR LED is on On cold start the current values are replaced by the most recent initial values only if a save to memory card function Backup Save or S66 rising edge was done There are two ways to delete all the files on the memory card e Formatting the memory card delete all files of the file system partition e Deleting the content of directory DataStorage delete only files added by user Both actions are performed using SW93 see page 183 The system word SwW93 can only be used after download of a default application in the PLC 4 CAUTION INOPERABLE MEMORY CARD Do not format the memory card with a non Schneider tool The memory card needs
267. be assigned Use of EN ENO Parameters Example of a DFB See EN and ENO Parameters page 563 The following simple example explains the different DFB calls in Structured Text language This is the instance Cpt_1 of the Cpt_parts type DFB Cpt_1 Cpt_parts Clear Reset Done Q1 2 1 P_Select Presel 100 Count 35006144 07 2011 589 Use of DFBs Formal DFB Call The formal DFB call Cpt_1 is performed with the following syntax Cpt_1 Reset Clear Presel P_ Select Count 100 Done gt Q1 2 1 Where the input parameters assigned by a value expression object or immediate value are entered in the list of arguments the syntax is Cpt_1 Reset Clear Presel P_ Select Count 100 Q1 2 1 Cpt_1 Done Elements of the Sequence Informal DFB Call The following table lists the different elements of the program sequence when a formal DFB call is made Element Meaning Cpt_1 Name of the DFB instance Reset Presel Count Input parameters Assignment symbol of an input Clear Assignment object of an input symbol 100 Assignment value of an input Done Output parameter gt Assignment symbol of an output Q1 2 1 Assignment object of an output address End of sequence symbol Argument separation symbol The informal DFB call Cpt_1 is performed with the following syntax Cpt_1 Clear MD10 100
268. be found in the table Additional input operators are not available Input Operator FB type S1 R SR S R1 RS CLK R_TRIG CLK F_TRIG CU R PV CTU_INT CTU_DINT CTU_UINT CTU_UDINT CD LD PV CTD_INT CTD_DINT CTD_UINT CTD_UDINT CU CD R LD PV CTUD_INT CTUD _DINT CTUD_UINT CTUD_UDINT IN PT TP IN PT TON IN PT TOF Use of the input operators LD reset ___actual Parameter Input ST MY_COUNT R LD value Formal Parameter Input Input Operator ST wy_COUNT PV LD varl Instancename CU MY_COUNT LD MY_COUNT Q Formal Parameter Output ST out e LD MY_COUNT CV Actual Parameter Output ST current Calling a Function Block without Inputs Even if the function block has no inputs or the inputs are not to be parameterized the function block should be called before its outputs can be used Otherwise the initial values of the outputs will be transferred i e 0 E g Calling the function block in the IL programming language CAL MY_CLOCK CAL MY COUNT CU MY_CLOCK CLK1 R reset PV 100 LD MY _COUNT Q ST out LD MY _COUNT CV ST current 35006144 07 2011 485 Instruction List IL Calling the same function block in FBD MY_CLOCK MY_COUNT SYSCLOCK CTU CLK eUu Q out CLK2 reset jR CLK3 100 PV cv current CLK4 CLK5 TIMER Multiple Function Block Instance Call
269. be passed as a BOOL type input output parameter e EBOOL arrays cannot be passed as ANY type parameters of an FFB e BOOL and EBOOL arrays are not compatible for instructing assignment same rule as for FFB parameters e On Quantum e EBOOL type located variables cannot be passed as EBOOL type input output parameters e EBOOL arrays cannot be passed as parameters of a DFB 35006144 07 2011 243 Data Types Integer Types At a Glance Integer Type INT Integer types are used to represent a value in different bases These are e base 10 decimal by default Here the value is signed or unsigned depending on the integer type e base 2 binary Here the value is unsigned and the prefix is 2 e base 8 octal Here the value is unsigned and the prefix is 8 e base 16 hexadecimal Here the value is unsigned and the prefix is 16 NOTE In decimal representation if the chosen type is signed the value can be preceded by the sign or sign the sign is optional Signed type with a 16 bit format This table shows the range in each base Base from to Decimal 32768 32767 Binary 2 1000000000000000 2 0111111111111111 Octal 8 100000 8 077777 Hexadecimal 16 8000 16 7FFF Double Integer Type DINT Signed type with a 32 bit format This table shows the range in each base Base from to Decimal 2147483648 2147483647 Binary 2 1 00000000000000000000000000000
270. ble Common Floating Point Errors page 637 LIMV E_ERR_DEN F 30152 16 8A38 Not a valid floating point number LIMV E_ERR_AB1_MAX_MIN 30101 16 8A6B YMAX lt YMIN LIMV FP_ERROR See table Common Floating Point Errors page 637 Pit E_ERR_DEN F 30152 16 8A38 Not a valid floating point number Pi E_ERR_PI_MAX_MIN 30103 16 8A69 YMAX lt YMIN Pit FP_ERROR See table Common Floating Point Errors page 637 PID1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number 35006144 07 2011 629 EFB Error Codes and Values EFB name Error code ENO Error Error Error description statein value in value in case of Dec Hex error PID1 E ERR_PID_MAX_MIN F 30104 16 8A68 YMAX lt YMIN PID1 FP_ERROR F See table Common Floating Point Errors page 637 PIDP1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number PIDP1 E _ERR_PID_MAX_MIN 30104 16 8A68 YMAX lt YMIN PIDP1 FP_ERROR See table Common Floating Point Errors page 637 SMOOTH_RATE E_ERR_DEN F 30152 16 8A38 Not a valid floating point number SMOOTH_RATE FP_ERROR F See table Common Floating Point Errors page 637 THREE_STEP_CON1 E_ERR_DEN F 30152 16 8A38 Not a valid floating point number THREE_STEP_CON1 W_WARN_DSR_TN T 30101 16 7595 TN 0 THREE_STEP_CON1 W_WARN_DSR_TSN T 30102 16 7596 TSN 0 THREE_STEP_CON1 W_WARN
271. ble and one link as output parameters FUNCBLOCK 1 FUNCBLOCK 2 EN ENO EN ENO INI1 OUT OUTI INI OUT IN2 IN2 gt EN of FUNCBLOCK_1 is set to 0 the link on output OUT of FUNCBLOCK_1 maintains the old status it had during the last correctly executed cycle The OUT1 variable on the same pin either retains its previous status or can be changed externally without influencing the link The variable and the link are saved independently of each other e Functions Procedures As defined in IEC61 131 3 the outputs from deactivated functions 1 0 are undefined The same applies to procedures Here nevertheless an explanation of the output statuses in this case e EN ENO handling with function procedure blocks that only have one link as an output parameter FUNC PROC 1 FUNC PROC 2 EN ENO lEN ENO INI OUT INI OUT m IN2 EN input set to If EN of FUNC_PROC_1 is set to 0 the value of the link on output OUT of FUNC_PROC_1 depends on the project setting Maintain output links on disabled EF available since Unity Pro 4 1 If this project setting is set to 0 the value of the link is set to 0 If this project setting is set to 1 the link maintains the old value it had during the last correctly executed cycle Please refer to Maintain output links on disabled EF see Unity Pro Operating Modes e EN ENO handling wit
272. bled explicitly Label properties Properties of Jumps Example Labels must always be the first element in a line Labels may only come before instructions of the first order not in loops The name must be clear throughout the directory and it is not upper lower case sensitive Labels can be 32 characters long max Labels must conform to the general naming conventions Labels are separated by a colon from the following instruction Properties of jumps Jumps can be made within program and DFB sections Jumps are only possible in the current section IF varl THEN JMP START START 526 35006144 07 2011 Structured Text ST Comment Description In the ST editor comments always start with the string and end in the string Any comments can be entered between these character strings Comments can be entered in any position in the ST editor except in keywords literals identifiers and variables Nesting comments is not permitted according to IEC 61131 3 If comments are nested nevertheless then they must be enabled explicitly 35006144 07 2011 527 Structured Text ST 15 3 Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures Overview Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures in the ST programming language What s in this Section This section contains the following top
273. by Processing on a network is ended completely before the Network processing begins on another network 3 Output sequence Outputs of the same function block or outputs to vertical links are processed from top to bottom 4 Rung by Rung Lowest priority The execution sequence of networks which are only linked by the left power rail is determined by the graphical sequence from top to bottom in which these are connected to the left power rail Only applies if none of the other rules apply Example Example of the execution sequence of objects in an LD section 22 10 a INT_TO_BOOL 5 4 7 5 EN ENO ADD INT_TO_BOOL a mt H EN ENO EN ENO Vara gt z G X VarB gt r 21 9 ADD EN ENO Varc gt Varb gt NOTE The execution numbers for contacts and coils is not shown They are only shown in the graphic to provide a better overview 35006144 07 2011 381 Ladder Diagram LD Loop Planning Non Permitted Loops Creating loops using links alone is not permitted because it is not possible to clearly define the signal flow the output of one FFB is the input of the next FFB and the output of this one is the input of the first again Non permitted loops via links 5 6 1 2 AND AND EN ENO EN ENO Va m a E Generating Via an Actual Parameter This type of logic must be generated using feedbac
274. cal memory card Normal program Wam restart Cold start execution 134 35006144 07 2011 Operating Modes Operation The table below describes the power outage processing phases Phase Description 1 On power outage the system stores the application context and the time of outage It sets all the outputs in the fallback state state defined in configuration 3 On power restoral the saved context is compared to the current one which defines the type of startup to be performed ifthe application context has changed i e loss of system context or new application the PLC initializes the application cold start e if the application context is the same the PLC carries out a restart without initialization of data warm restart Power Outage on a Rack Other than Rack 0 All the channels on this rack are seen as in error by the processor but the other racks are not affected The values of the inputs in error are no longer updated in the application memory and are reset to zero in a discrete input module unless they have been forced in which case they are maintained at the forcing value If the duration of the outage is less than the filtering time it has no effect on the program which continues to run normally 35006144 07 2011 135 Operating Modes Processing on Cold Start for Premium Quantum PLCs Cause of a Cold Start The following table describes the different possible causes of a co
275. can only be used once in written form The transition variable can be read in any position within the project Only functions can be used function blocks or procedures cannot Only one coil may be used in LD There is only one network i e all functions used are linked with each other either directly or indirectly Transition sections can only be used once Transition sections belong to the SFC section in which they were defined If the respective SFC section is deleted then all transition sections of this SFC section are also deleted automatically Transition sections can be called exclusively from transitions 414 35006144 07 2011 SFC Sequence Language 13 5 Jump Jump General Jumps are used to indicate directional links that are not represented in their full length Representation of a jump 2 y Properties of Jumps Jumps have the following properties e More than one jump may have the same target step e In accordance with IEC 61131 3 jumps into a parallel sequence see page 419 or out of a parallel sequence are not possible If it should also be used again then it must be enabled explicitly e With jumps there is a difference between a Sequence Jump see page 424 and a Sequence Loop see page 425 e The jump target is indicated by the jump target symbol gt Jump Name Jumps do not actually have their own names Instead the name of the target step jump target is shown inside o
276. can result in death serious injury or equipment damage 284 35006144 07 2011 Data Types 8 8 Generic Data Types GDT Overview of Generic Data Types At a Glance Generic Data Types are conventional groups of data types EDT DDT specifically intended to determine compatibility among these conventional groups of data types These groups are identified by the prefix ANY_ARRAY but these prefixes can under no circumstances be used to instance the data Their field of use concerns function block EFB DFB and elementary function EF data type families in order to define which data types are compatible with their interfaces for the following e inputs e input outputs e outputs Available Generic Data Types The generic data types available in Unity Pro are the following types ANY_ARRAY_WORD ANY_ARRAY_UINT ANY_ARRAY_UDINT ANY_ARRAY_TOD ANY_ARRAY_TIME ANY_ARRAY_STRING ANY_ARRAY_REAL ANY_ARRAY_INT ANY_ARRAY_EBOOL ANY_ARRAY_DWORD ANY_ARRAY_DT ANY_ARRAY_DINT ANY_ARRAY_DATE ANY_ARRAY_BYTE ANY_ARRAY_BOOL 35006144 07 2011 285 Data Types Example This gives us the following DFB FBL1 Parts_Counter l10 4 1 Part_OK Pre_Val Preset Nb_parts_attained M2 The Preset input parameter may be defined of GDT type NOTE The authorized objects for the various parameters are defined in this table see page 561 286 35006144 07 2011 Data Types
277. cell The following are permitted as actual parameters e Boolean variables e Boolean addresses topological addresses or symbolic addresses Coil Types The following coils are available Designation Representation Description Coil XXX With coils the status of the left link is transferred to the relevant Boolean actual parameter indicated by xxx and the right link negated coil SXi With negated coils the status of the left link is copied onto the right link The inverted status of the left link is copied to the relevant Boolean actual parameter indicated by xxx If the left link is OFF then the right link will also be OFF and the relevant Boolean actual parameter will be ON Coil for a With coils that detect positive transitions the status of detecting the left link is copied onto the right link The relevant positive P actual parameter of data type EBOOL indicated by transitions xxx is 1 for a program cycle if a transition of the left link from 0 to 1 is made Also see Edge Recognition page 371 Coil for XxX With coils that detect negative transitions the status of detecting the left link is copied onto the right link The relevant negative N actual Boolean parameter indicated by xxx is 1 for a transitions program cycle if a transition of the left link from 1 to 0 is made Also see Edge Recognition page 371 352 35006144 07 2011 Ladder Diagram LD Designation
278. condition 3 error is reported during analyzing loading linking Action control contention error 3 error is reported during analyzing loading linking Simultaneously true non prioritized transitions ina selection divergence Not applicable Unsafe or unreachable SFC 3 error is reported during analyzing loading linking Data type conflict in VAR_ACCESS Not applicable A task fails to be scheduled or to meet its execution deadline 4 error is reported during execution Numerical result exceeds range for data type 4 error is reported during execution Current result and operand not of same data type 2 error is reported during programming Division by zero 4 error is reported during execution 662 35006144 07 2011 IEC Compliance Note Error conditions Treatment see Note page 663 Numerical result exceeds range for data type 4 error is reported during execution Invalid data type for operation 4 error is reported during execution Return from function without value assigned Not applicable Iteration fails to terminate 4 error is reported during execution Same identifier used as connector label and element name Not applicable Uninitialized feedback variable 1 error is not reported Identifications for the treatment of error conditions according to IEC 61131 3 subclause 1 5 1 d 1 error is no
279. create change and manage operator screens Operator screens are created and accessed via the project browser Project Browser Te Structural View J Station J Configuration El Se 0 X Bus Derived Data Types j Derived FB Types 9 Variables amp FB instances Elementary Variables Derived Variables 0 Derived Variables Elementary FB instances Derived FB Instances ommunication letwork Routing Table gram Tasks Events imation Tables erator Screen Farnily_1 IIB BB i Boy s PEE Li p D 3 P gt PE o 2 fe Screen_1 Screen _2 Screen_3 Family_2 Farnily_3 Fea e A HA o o El Documentation Title Page General Information gt Fo 35006144 07 2011 63 Presentation Operator Screen Editor An operator window contains much information dynamic variables overviews written text etc and makes it easy to monitor and change automation variables Operator Screen FBD1 MAST Thread cutting Drilling Drilling speed Insert value Latch and block THREAD CUTTING os en The operator screen editor offers the following features Extensive visualization functions e Geometric elements Line rectangle ellipse curve polygon bitmap text e Control elements Buttons control box shifter sc
280. cs Topic Page Transition 411 Transition Section 413 410 35006144 07 2011 SFC Sequence Language Transition Introduction A transition provides the condition through which the checks of one or more pre transition steps pass on one or more consecutive steps along the corresponding link Transition Condition Transition Name Every transition is allocated with a transition condition of data type BOOL The following are authorized as transaction conditions e an address input or output e a variable input or output e a Literal or e a Transition Section see page 413 The type of transition condition determines the position of the name Transition Condition Position of the Name Address e Variable Trans_Yariable e Literal e Transition Section eee eer Trans ection If an address or a variable is used as a transition condition then the transition name is defined with that name e g 3110 4 Variablel If a transition section is used as a transition condition then the section name is used as the transition name Transition names maximum 32 characters must be unique over the entire project i e no other transition variable or section with the exception of the assigned transition section etc may exist with the same name There are no case distinctions The transition name must correspond with the standardized name conventions 35006144 07 201
281. ction This section contains the following topics Topic Page Execution Sequence Single Token 422 Alternative String 423 Sequence Jumps and Sequence Loops 424 Parallel Strings 427 Asymmetric Parallel String Selection 429 35006144 07 2011 421 SFC Sequence Language Execution Sequence Single Token Description The following rules apply for single token e The original situation is defined by the initial step The sequence string contains 1 initial step only e Only one step is ever active in the sequence string The only exceptions are parallel branches in which one step is active per branch e The active signal status processes take place along the directional links triggered by switching one or more transitions The direction of the string process follows the directional links and runs from the under side of the predecessor step to the top side of the successive step e Atransition is enabled if the steps immediately preceding it are active Transitions whose immediately preceding steps are not active are not normally analyzed e A transition is triggered when the transition is enabled and the associated transition conditions are satisfied e Triggering a transition leads to the disabling resetting of all immediately preceding steps that are linked to the transition followed by the activation of all immediately following steps e f more than one transition condition in a row of sequential st
282. ction of the project multiple assignment Actions that are assigned an qualifier with duration can only be activated one time Only Boolean variables addresses or Boolean elements of multi element variables are allowed as action variables Actions have unique names The name of the action is either the name of the action variable or the name of the action section The following are authorized as action variables Address of data type BOOL An action can be assigned to a hardware output using an address In this case the action can be used as enable signal for a transition as input signal in another section and as output signal for the hardware Simple variable or element of a multi element variable of data type BOOL The action can be used as an input signal with assistance from a variable in another section e Unlocated Variable With unlocated variables the action can be used as enable signal for a transition and as input signal in another section e Located Variable With located variables the action can be used as an enabling signal for a transition as an input signal in another section and as an output signal for the hardware 35006144 07 2011 405 SFC Sequence Language Action Names If an address or a variable is used as an action then that name e g Q10 4 Variable1 is used as the action name If an action section is used as an action then the section name is used as the action name Action names maximum 3
283. cts Description of System Words SW123 to SW127 Detailed Description Description of system words SW123 to SW127 Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW123 System This system word is used by the system YES YES NO ADJBUSX allowance and cannot be used by the user application to BUS X SW124 Type of The last type of system fault encountered YES YES YES CPUERR processor is written into this word by the system or system these codes are unchanged on a cold error restart e 16 30 system code fault e 16 53 time out fault during I O exchanges 16 60 to 64 stack overrun e 16 65 Fast task period of execution is too low e 16 81 detection of backplane see Premium and Atrium using Unity Pro Processors racks and power supply modules Implementation manual error NOTE 16 81 system code is not managed by Quantum PLCs NOTE If this error is detected all racks have to be re initialized 16 90 system switch fault Unforeseen IT 194 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum SW125 BLKERRTYPE Last fault detected The code of the last fault detected is given in this word The following error codes cause the PLC to stop if S78 is set to 1 S15 S18 and S20 are always activated independently
284. ctural view Creation of sections View the element properties Launching the different editors The section symbol shows the section programming language and other attributes 24 35006144 07 2011 Presentation User Application and Project File Formats Introduction STU File STA File Unity Pro manages three types of files for storing user applications and projects Each type of file can be used according to specific requirements File types can be identified by their extension e STU Unity Pro File e STA Unity Pro Archived Application File e XEF Unity Pro Application Exchange File This file type is used for daily working tasks This format is used by default when opening or saving a user project The following table presents the STU file advantages and drawbacks Advantages Drawbacks e The project can be saved at any stage e Not convenient when transferring project consistent or inconsistent through the due to the very large size of the file default command Project saving and opening is fast as the e Not compatible when updating Unity Pro entire internal database is present in the from one version to another file e Automatic creation of BAK files 1 Each time a STU file is saved a backup copy is also created with the same name as the STU file and the extension BAK files By changing the file extension from BAK to STU it is possible to revert to the state th
285. cture Memory Backup The internal RAM is backed up by a Ni Cad battery supported by the processor module The RAM memory cards are backed up by a Ni Cad battery Start up with Application Saved in Backup Memory The following table describes the different results according to the PLC state according to the PLC mem switch see Quantum with Unity Pro Hardware Reference Manual and also indicates if the box Auto RUN is checked or not checked PLC State PLC Mem Auto RUN in Results Switch Appi NONCONF Start or Off Off Cold Start application is loaded from Backup memory to RAM of the PLC The PLC remains in STOP NONCONF Start or Off On Cold Start application is loaded from Backup memory to RAM of the PLC The PLC remains in RUN NONCONF Mem Prt or Stop Not Applicable No application loaded PLC power up in NONCONF state Configured Start or Off Off Cold Start application is loaded from Backup memory to RAM of the PLC The PLC remains in STOP Configured Start or Off On Cold Start application is loaded from Backup memory to RAM of the PLC The PLC remains in RUN Configured Mem Prt or Stop Do not Care Warm Start no application loaded PLC powers up in previous state 1 Start and Stop are valid for the 434 and 534 models only and Off is valid for the 311 only Mem Prt is valid on all models 2 The Automatic RUN in the application refers to the application that is loaded Spec
286. cuted 130 35006144 07 2011 Operating Modes Output Changes On power restoral e Clears chart deregisters diagnostics keeps set actions e sets steps from saved area e sets step times from SFCSTEP_STATE e restores elapsed time for timed actions NOTE SFC interpreter is independent if the transition is valid the SFC chart evolves while S1 is true As soon as a power outage is detected the outputs are set in the fallback position e either they are assigned the fallback value e or the current value is maintained depending on the choice made in the configuration After power restoral the outputs stay in security mode equal to 0 until they are updated by a running task 35006144 07 2011 131 Operating Modes Automatic Start in RUN for Modicon M340 PLCs Description Automatic start in RUN is a processor configuration option This option forces the PLC to start in RUN after a cold restart see page 125 except after an application has been loaded onto the PLC For Modicon M340 this option is not taken into account when the power supply RESET button is pressed after a processor error except in the case of a watchdog error A WARNING UNEXPECTED SYSTEM BEHAVIOR UNEXPECTED PROCESS START The following actions will trigger automatic start in RUN e Restoring the application from memory card e Unintentional or careless use of the reset button To avoid an unwanted restart when in RUN mod
287. d If a formal parameter is not assigned with a value and the function block DFB is instanced more than once then the following instances are run with the old value 536 35006144 07 2011 Structured Text ST Public Variables Private Variables In addition to inputs and outputs some function blocks also provide public variables These variables transfer statistical values values that are not influenced by the process to the function block They are used for setting parameters for the function block Public variables are a supplement to IEC 61131 3 The assignment of values to public variables is made via their initial values or assignments Example Instance Name Public Variable D_ACT1 is an instance of the function wee block D_AcT and has the public variables AREA_NR and OP_CTRL D_ACT1 OP_CTRL 1 Public variables are read via the instance name of the function block and the names of the public variables Example Instance Name Public Variable Varl D_ACT1 OP_CTRL In addition to inputs outputs and public variables some function blocks also provide private variables Like public variables private variables are used to transfer statistical values values that are not influenced by the process to the function block Private variables can not be accessed by user program These type of variables can only be accessed by the animation table NOTE Nested DFBs are declared as private variab
288. d 0 The CPU sync link is operating properly The contents of bit 5 are significant e 1 the CPU sync link is not valid In this case the contents of the bit 5 is not significant because the comparison of the two MAC addresses cannot be performed SW61 7 0 Same PLC OS version e 1 Different PLC version SW6E1 8 0 Same Copro OS version e 1 Different Copro version SW61 12 e 0 Information given by bit 13 is not relevant e 1 Information given by bit 13 is valid e SW61 13 e 0 NOE address set to IP e 1 NOE address set to IP 1 SW61 15 e 0 Hot Standby not activated e 1 Hot Standby activated 210 35006144 07 2011 System Objects Word Function Description Initial Symbol state SW62 Hot These 4 words may be modified is the Hot Standby MAST task first section 0 HSBY_REVERSEO Standby of the user application program SW63 reverse They are then transferred automatically from the Standby processor to HSBY_REVERSE1 transfer update the Primary PLC SW64 word They may be read on the Primary PLC and used in the Hot Standby HSBY_ REVERSE2 application SWES HSBY_REVERSE3 SWEE6 Status of Meaning of the bytes of the word SW66 XXYY 0 CCOTF_STATUS an Ether XX The higher byte of the word is associated with the CCOTF status net I O code its values are in hex configura e 00 Idle tion e 1D Process succeed change e 1E System is busy processing the most rece
289. d the result is a Boolean 1 If the value of the UINT UDINT first operand is not equal to the value of the REAL TIME WORD second the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is equal DT DATE or TOD to 10 and is otherwise 0 OUT IN1 10 506 35006144 07 2011 Structured Text ST Operator Meaning Order of possible operands Description rank lt gt Inequality 8 Expression Literal The value of the first operand is compared with the Variable Address of value of the second using lt gt If the value of the Data Type BOOL first operand is not equal to the value of the BYTE INT DINT second the result is a Boolean 1 If the value of the UINT UDINT first operand is equal to the value of the second REAL TIME WORD the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is not DT DATE or TOD equal to 10 and is otherwise 0 OUT IN1 lt gt 10 amp Logical AND 9 Expression Literal With amp there is a logical AND link between the Variable Address of operands In the case of BYTE WORD and DWORD Data Type BOOL data types the link is made bit by bit BYTE WORD or Example In the examples OUT is 1 if IN1 IN2 DWORD and IN3 are 1 OUT IN1 amp IN2 amp IN3 AND Logical AND 9 Expression Literal With AND there is a logical AND link between the Variable Address of operands In the case of BYTE
290. d B is 1 TRUE LD A AND B JMPC START CN BOOL If the modifiers c and N are combined the associated instruction is only performed if the value of the accumulator be a Boolean 0 FALSE Example In the example the jump after START is only performed when A is 0 FALSE and B is 0 FALSE LD A AND B JMPCN START 35006144 07 2011 457 Instruction List IL Modifier Use of Description Operators of data type all The left bracket modifier is used to move back the evaluation of the operand until the right bracket operator appears The number of right parenthesis operations must be equal to the number of left bracket modifiers Brackets can be nested Example In the example E is 1 if C and or Dis 1 and A and B are 1 LD A AND B AND C OR D STE The example can also be programmed in the following manner LD A AND B AND LD C OR D STE 458 35006144 07 2011 Instruction List IL Operators Introduction An operator is a symbol for e an arithmetic operation to be executed e a logical operation to be executed or e calling an elementary function block DFBs or subroutines Operators are generic i e they adapt automatically to the data type of the operands Load and Save Operators IL programming language load and save operators Operator Modifier Meaning Operands Description LD N Loads the Literal variable The value of a
291. d point part Mantissa is between 0 1 and is calculated using the following formula F 2 M Number Types that Can Be Represented These are the numbers which are e normalized e denormalized e of infinite values e with values 0 and 0 35006144 07 2011 253 Data Types This table gives the values in the different fields according to number type e f S Number type 0 255 0 1 Oor1 normalized 0 0 1 near 1 4 amp 45 denormalized DEN 255 0 0 infinity INF 255 0 1 infinity INF 255 jO 1 and bit22 0 Oor1 SNAN 255 0 1 and bit 22 1 Oori QNAN 0 0 0 0 0 0 1 0 NOTE Standard IEC 559 defines two classes of NAN not a number QNAN and SNAN e ONAN is a NAN whose bit 22 is set to 1 SNAN is a NAN whose bit 22 is set to 0 They behave as follows e ONAN do not trigger errors when they appear in operands of a function or an expression e SNAN trigger an error when they appear in operands of a function or an arithmetic expression See SW17 see page 175 and S18 see page 154 This table gives the calculation formula of the value of the floating point number Floating point number Value Normalized ae Gly x207 x 1A Denormalized DEN l6 4 1 x2 xf NOTE A real number between 1 1754944e 38 and 1 1754944e 38 is a denormalized DEN When an operand is a DEN the result is not guaranteed The bits SW17
292. d start in ms for safety AUX1MAXTIME execution PLCs SW43 time 1 only on 140 CPU 6 and TSX AUX2MAXTIME P57 5ee PLCs SW46 These words are not available on AUX3MAXTIME Quantum safety PLCs SW38 Minimum Those words indicate the shortest NO YES 1 YES 1 AUXOMINTIME auxiliary task execution time of AUX 0 3 except SWA41 task tasks since the last cold start in ms for safety AUX1MINTIME execution PLCs SW44 time 1 only on 140 CPU 6 and TSX AUX2MINTIME P57 5ee PLCs SW47 These words are not available on AUX3MINTIME Quantum safety PLCs 180 35006144 07 2011 System Objects Description of System Words SW48 to SW59 Detailed Description Description of system words 3SwW48 to 3SW59 Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW48 Number of This word indicates the IO events and 0 YES YES YES IOEVTNB events telegram processed since the last cold except start This word can be written by the for safety program or the terminal PLCs This word is not available on Quantum safety PLCs NOTE TELEGRAM is available only for PREMIUM not on Quantum or M340 SW49 Real time System words containing date and YES YES YES DAYOFWEEK clock current time in BCD SW50 function e SWw49 day of the week SEC e 1 Monday SW51 2 Tuesday HOURMIN 3 Wednesday SW52 e 4 Thursday MONTHDAY e 5
293. ddressing Addressing is considered direct when the address of the instance is fixed or in other words when it is written into the program Examples M1 Access to first bit of the memory SMW12 Access to twelfth word of the memory MD4 Access to fourth double word of the memory KF100 Access to hundredth floating pointing word of the memory Q0 4 0 5 Access to fifth bit of the output module in position 4 of rack 0 35006144 07 2011 313 Data References References by Indexed Address Addressing is considered indexed when the address of the instance is completed with an index The index is defined either by e avalue belonging to an Integer type e an arithmetical expression made up of Integer types An indexed variable always has a non indexed equivalent MW lt i gt lt index gt lt gt MW lt j gt The rules for calculating lt j gt are as follows Object lt i gt index Object lt j gt M lt i gt index lt j gt lt i gt lt index gt MW lt i gt index lt j gt lt i gt lt index gt KW lt i gt index lt j gt lt i gt lt index gt MD lt i gt index lt j gt lt i gt lt index gt x 2 KD lt i gt index lt j gt lt i gt lt index gt x 2 MF lt i gt index lt j gt lt i gt lt index gt x 2 KF lt i gt index lt j gt lt i gt lt index gt x 2 Examples MD6 10 lt gt MD26 MW10 My_Var 8 lt gt MW20 w
294. defined In addition to inputs and outputs some function blocks also provide public variables These variables transfer statistical values values that are not influenced by the process to the function block They are used for setting parameters for the function block Public variables are a supplement to IEC 61131 3 The assignment of values to public variables is made using their initial values Public variables are read via the instance name of the function block and the names of the public variables 35006144 07 2011 329 Function Block Language FBD Example FBI 1 1 The function block has the publ ED ERR DTIMEL ACT DTIMEA TRIGR UNLOCK REACT Instance Name Public Variable Al 4 AND ic variables AREA_NR D_ACT and OP_CTRL FBI_1 0P CTRL INI OUT var3 Var2 jIN2 Private Variables In addition to inputs outputs and public variables some function blocks also provide private variables Like public variables private variables are used to transfer statistical values values that are not influenced by the process to the function block Private variables can not be accessed by user program These type of variables can only be accessed by the animation table NOTE Nested DFBs are declared as private variables of the parent DFB So their variables are also not accessible through programming but trough the animation table Pr
295. defined outside of the loop The Do instruction identifies the end of the repeat definition and the beginning of the instruction s The occurrence may be terminated early using the EXIT The END_FOR instruction marks the end of the instruction s Example FOR with Increment 1 FOR with increment 1 Control variable Start value End value FOR i 1 TO Cra C C END_FOR ou RO DO S B i 35006144 07 2011 517 Structured Text ST FOR with Increment not Equal to 1 If an increment other than 1 is to be used it can be defined by By The increment the initial value the end value and the control variable must be of the same data type DINT or INT The criterion for the processing direction forwards backwards is the sign of the By expression If this expression is positive the loop will run forward if it is negative the loop will run backward Example Counting forward in Two Steps Counting forward in two steps Control variable Start value End value Increment wee FOR i 1 TO 10 BY 2 DO BY gt 0 Forwards loop Cc COS B Loop is 5 x executed END_FOR Q Example Counting Backwards Counting backwards FOR i 10 TO 1 BY 1 DO BY lt 0 Backwards loop C 0 COS B Instruction is executed 10 x END_FOR Example Unique Loops The loops in the example are run exactly once as the initial value end value In this context it does not matter whet
296. dently from the application Furthermore LD and FBD languages provide a graphic view of the DFBs facilitating the design and debugging of your program DFB Created with Previous Software Versions DFBs created using PL7 and Concept must first be converted using the converters that come with the product before being used in the application 554 35006144 07 2011 Overview of DFBs Domain of Use The following table shows the domain of use for the DFBs Function Domain PLCs for which DFBs can be used Premium Atrium and Quantum DFB creation software Unity Pro Software with which DFBs can be used Unity Pro or Unity Pro Medium Programming language for creating the DFB code IL ST LD or FBD 1 Programming language with which DFBs can be used IL ST LD or FBD 1 1 IL Instruction List ST Structured Text LD LaDder FBD Functional Block Diagram language 35006144 07 2011 555 Overview of DFBs Implementing a DFB Function Block Implementation Procedure There are 3 steps in the DFB function block implementation procedure Step Action 1 Create your DFB model called DFB type 2 Create a copy of this function block called an instance every time the DFB is used in the application 3 Use the DFB instances in your application program Creation of the DFB Type This operation consists in designing a model of the DFB you want to use in your applica
297. ding to counter 1 CASE OF 1 outl TRUE 2 out2 TRUE ELSE All lights are on switch then off again and start from outl FALSE oul FALSE FBD1 MAST 56 35006144 07 2011 Presentation e Tooltips A tooltip with the value of a variable is displayed when the mouse pointer passes over that variable ST1 MAST F m TIMER IN NOT pulse t ls Blink timer pikem ERIA Count every pulse IF pulse 1 THEN END IF i Animate lights according to counter CASE OF 1 outl TRUE 2 out2 TRUE ELSE Al lights are on switch then off again and start from outl FALSE out FALSE e Inspection window An inspection window can be created for any variable This window displays the value of the variable the address and any comments if available This function is available in all programming languages ST1 MAST 1 1 TIMER IN NOT pulse tls Blink timer pikem Ae es Count every pulse IF pulse 1 THEN nE Ratatat END_IF Animate lights according to counter GASE eG OF 1 outl TRUE 2 out2 TRUE ELSE All lights are on switch then off again and start from outl FALSE out FALSE 35006144 07 2011 57 Presentation e Variables window This window displays all variables used in the current section Variables window Name
298. displays the variables that cannot be animated in the language editors Only those variables that are visible at a given time in the editor are displayed WwW Watch point Used in the debug mode of the application It enables the display of animated variables to be synchronized with the execution of a program element containing the watch point in order to ascertain their values at this precise point of the program WORD The WORD type is coded in 16 bit format and is used to carry out processing on bit strings This table shows the lower upper limits of the bases which can be used Base Lower limit Upper limit Hexadecimal 16 0 16 FFFF Octal 8 0 8 177777 Binary 2 0 2 1111111111111111 35006144 07 2011 693 Glossary Representation examples Data content Representation in one of the bases 000000001 1010011 16 D3 1010101010101010 8 125252 000000001 1010011 2 11010011 694 35006144 07 2011 Index Symbols S 148 SSW generic 170 Modicon M340 222 Premium 196 Quantum 208 A ADD IL 462 addressing data instances 300 input output 300 Alignment constraint 272 AND IL 467 ST 507 ANY_ARRAY 285 ARRAY 266 automatic start in RUN 127 BOOL 239 BYTE 263 C CAL 466 CASE OF END_CASE ST 516 channel data structure 275 cold start 121 132 comparison IL 459 LD 365 ST 504 compatibility data types 289 D
299. ditions Error Conditions IEC standards table for error conditions Error conditions Treatment see Note page 663 Nested comments 2 error is reported during programming Value of a variable exceeds the specified subrange 4 error is reported during execution Missing configuration of an incomplete address specification notation Not applicable Attempt by a program organization unit to modify a variable which has been declared CONSTANT 2 error is reported during programming Improper use of directly represented or external variables in functions Not applicable A VAR_IN_OUT variable is not properly mapped 2 error is reported during programming Type conversion errors 4 error is reported during execution Numerical result exceeds range for data type Division by zero 4 error is reported during execution Mixed input data types to a selection function 4 error is reported during execution 2 error is reported during programming Result exceeds range for data type 4 error is reported during execution No value specified for an in out variable 2 error is reported during programming Zero or more than one initial steps in SFC network 3 error is reported during analyzing loading linking User program attempts to modify step state or time 2 error is reported during programming Side effects in evaluation of transition
300. dress e Literal The following can be used as actual parameters for function block outputs e Variable e Address The data type of the actual parameters must match the data type of the formal parameters The only exceptions are generic formal parameters whose data type is determined by the actual parameter Exception When dealing with generic ANY BIT formal parameters actual INT or DINT not UINT and UDINT parameters can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND AnyBitParam IntVarl AnyBitParam2 IntVar2 478 35006144 07 2011 Instruction List IL Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 In this case AND_ INT must be used AND ARRAY WORD ArrayInt In this case an explicit type conversion must be carried out using INT ARR TO WORD ARR Not all formal parameters need be assigned a value You can see which formal parameter types must be assigned a value in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY EFB Input S EFB VAR_IN_OUT EFB Output 2 DFB Input DFB VAR_IN_OUT DFB Output E Actual parameter required Actual parameter not required not applicable Public Variables If no value is allocated
301. e Address settings Memory Offset Historical Trend Diagram The trend diagram below shows the main statuses of the value and history bits associated with the EBOOL type The rising edges of the value bit 1 4 are copied to the history bit in the next PLC cycle 2 5 The falling edges of the value bit 2 7 are copied to the history bit of the next PLC cycle 3 8 0 8 48 8 2 8 A Value a a S S a S T History bit i i i i i i pan 240 35006144 07 2011 Data Types Trend Diagram and Forcing The trend diagram below shows the main statuses of the value history and forcing bits associated with the EBOOL type The rising edges of the value bit 1 4 are copied to the history bit in the next PLC cycle 2 5 The falling edges of the value bit 2 7 are copied to the history bit in the next PLC cycle 3 8 Between 4 and 5 the forcing bit equals 1 while the value and history bits remain at 1 Status change action 4 686 7 B Value bit Forcing bit SEE History bit EEE PLC Variables Belonging to Boolean Types List of variables Variable Type Internal bit EBOOL System bit BOOL Word extracted bit BOOL l inputs Module error bit BOOL Channel error bit BOOL Input bit EBOOL Q outputs Output bit EBOOL 3
302. e Automatic start in RUN parameter defined in the configuration or if this is in use depending on the state of the RUN STOP input Program execution is resumed at the start of the cycle The system carries out the following Deactivating tasks other than the master task until the end of the first master task cycle Initializing data bits I O image words etc with the initial values defined in the data editor value set to 0 if no other initial value has been defined For MW words the values can be retrieved on cold restart if the two conditions are valid the Initialize of MW on cold restart option see Unity Pro Operating Modes is unchecked in the processor s configuration screen e the internal flash memory has a valid backup see SW96 see page 183 Note If the number of MW words exceeds the backup size see the memory structure of M340 PLCs see page 109 during the save operation the remaining words are set to 0 Initializing elementary function blocks on the basis of initial data Initializing data declared in the DFBs either to 0 or to the initial value declared in the DFB type Initializing system bits and words Positioning charts to initial steps Cancelling any forcing Initializing message and event queues Sending configuration parameters to all discrete input output modules and application specific modules For this first restart cycle the system does the following Relau
303. e variable name inSR_Name is called The output ENO is not used to display the error status for this type of block The output ENO is always 1 for this type of block and is used to call multiple subroutines simultaneously The following construction makes it possible to call multiple subroutines simultaneously SR_CALL Condition EN MySR1 SR_NAME ENO MySR2 SR_CALL EN SR_NAME ENO The subroutine to be called must be located in the same task as the FBD section called Subroutines can also be called from within subroutines Subroutine calls are a supplement to IEC 61131 3 and must be enabled explicitly In SFC action sections subroutine calls are only allowed when Multitoken Operation is enabled 334 35006144 07 2011 Function Block Language FBD Control Elements Introduction Control elements are used for executing jumps within an FBD section and for returning from a subroutine SRx or derived function block DFB to the main program Control Elements The following control elements are available Designation Representation Description Jump NEXT When the status of the left link is 1 a jump is made to a label in the current gt section gt To generate a conditional jump a jump object is linked to a Boolean FFB output To generate an unconditional jump the jump object is assigned the value 1 for example usin
304. e actual parameter within the procedure call 35006144 07 2011 549 Structured Text ST 550 35006144 07 2011 User Function Blocks DFB In This Part What s in this Part This part presents The user function blocks DFB The internal structure of DFBs Diagnostics DFBs The types and instances of DFBs The instance calls using different languages This part contains the following chapters Chapter Chapter Name Page 16 Overview of User Function Blocks DFB 553 17 Description of User Function Blocks DFB 559 18 User Function Blocks DFB Instance 571 19 Use of the DFBs from the Different Programming Languages 579 20 User Diagnostics DFB 599 35006144 07 2011 551 DFB 552 35006144 07 2011 Overview of User Function Blocks DFB 16 Subject of this Chapter This chapter provides an overview of the user function blocks DFB and the different steps in their implementation What s in this Chapter This chapter contains the following topics Topic Page Introduction to User Function Blocks 554 Implementing a DFB Function Block 556 35006144 07 2011 553 Overview of DFBs Introduction to User Function Blocks Introduction Unity Pro software enables you to create DFB user function blocks using automation languages A DFB is a program block that you write to meet the specific requirements o
305. e configuration window called via the modules shortcut menu or a double click on the module is used to configure the module This also includes channel selection selection of functions for the channel selected assignment of State RAM addresses only Quantum etc Module configuration window for a Premium I O module Terminal Block Recognition Cold Connection Internal Telefast External PT100 E 0 2 TSX AEY 414 Job 4 ANA MULTIRANGE E TSsx AEY 414 E Configuration Echando Symbol R Scale Fit ymbol ange e er r E Channel 1 0 OV fos o F 174g Channel 2 1 ThermoK 700 0 DEM 2 40v vi o i 3 PECON jino 0 fe Task MAST v The module properties window called via the modules shortcut menu shows the modules properties such as the power consumption number of I O points only Premium and more The module properties window for the power supply shows the total current of the rack TSX PSY 2600M 1 Power Supply EA 120 E Overloaded Available 5000 mA 625 mA 500 mA 100 a 0 1904 mA GmA 30 mA 40 20 5V 24V 24 R W Used YR For relay V For VDC inputs OK Cancel 30 35006144 07 2011 Presentation Network Configuration The network configuration is called via the communications folder Network config
306. e during which it e relaunches the master task from beginning of cycle resets bit S1 to 0 at the end of this first master task cycle e reactivates the fast task event processing at the end of this first cycle of the master task Processing a Warm Restart by Program In the event of a warm restart if you want the application to be processed ina particular way you must write the corresponding program to test that S1 is set to 1 at the start of the master task program SFC Warm start specific features The Warm start on M340 PLCs is not considered as a real warm start by the CPU SFC interpreter does not depend on tasks SFC publishes a memory area ws_data to the OS that contains SFC section specific data to be saved at a power fail At the beginning of chart processing the currently active steps are saved to ws_data and processing is marked to be in critical section At the end of chart processing the critical section is unmarked If a power failure hits into critical section this could be detected if this state is active at the beginning as the scan is aborted and MAST task is restarted from the beginning In this case the workspace might be inconsistent and is restored from the saved data Additional information from SFCSTEP_STATE in located data area is used to reconstruct the state machine When a power failure occurs e during first scan S1 1 Mast is executed but Fast and Event tasks are not exe
307. e elements of the Cpt_parts DFB type are as follows Elements Description Name of the DFB type Cpt_parts Input parameters e Reset counter reset EBOOL type e Presel Preset value of the counter DINT type e Count upcounter input EBOOL type Output parameters Done preset value reached output BOOL type Public internal variable V_cour current value of the counter DINT type Operation of the Counter The operation of the counter must be as follows Phase Description 1 The DFB counts the rising edges on the Count input 2 The number of edges it counts is then stored by the variable V_cour This variable is reset by a rising edge on the Reset input 3 When the number of edges counted is equal to the preset value the Done output is set to 1 This variable is reset by a rising edge on the Reset input 35006144 07 2011 575 DFB instance Internal Program of the DFB Example of Use The internal program of the DFB type Cpt_parts is defined in Structured Text as follows Programming of the Cpt_parts DFB IF RE Reset THEN V_cour 0 END_IF IF RE Count THEN V_cour V_cour 1 END_IF IF V_cour gt Presel THEN SET Done ELSE RESET Done END_IF Let us Suppose your application needs to count 3 part types for example bolts nuts and screws The DFB type Cpt_parts can be used three times 3 instances to perform these different coun
308. e enabled explicitly 35006144 07 2011 471 Instruction List IL 14 2 Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures Overview Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures in the IL programming language What s in this Section This section contains the following topics Topic Page Calling Elementary Functions 473 Calling Elementary Function Blocks and Derived Function Blocks 478 Calling Procedures 489 472 35006144 07 2011 Instruction List IL Calling Elementary Functions Using Functions Parameters Elementary functions are provided in the form of libraries The logic of the functions is created in the programming language C and may not be modified in the IL editor Functions have no internal states If the input values are the same the value on the output is the same every time the function is called For example the addition of two values always gives the same result With some elementary functions the number of inputs can be increased Elementary functions only have one return value output Inputs and one output are required to transfer values to or from a function These are called formal parameters The current process states are transferred to the formal parameters These are called actual parameters The following can be used as actual parameters for funct
309. e enabled explicitly An empty parameter field is used to skip a parameter Call with empty parameter field MY COUNT varl 100 value out current Calling the same function block in FBD MY_COUNT CTU vari CU QF out R 100 value PV cv current An empty parameter field does not have to be used if formal parameters are omitted at the end MY COUNT varl reset 540 35006144 07 2011 Structured Text ST Calling the same function block in FBD MY_COUNT CTU varl 4CU Qr reset R PV CV F Calling a Function Block without Inputs Multiple Function Block Instance Call Even if the function block has no inputs or the inputs are not to be parameterized the function block should be called before its outputs can be used Otherwise the initial values of the outputs will be transferred i e 0 E g Calling the function block in ST MY_CLOCK MY_ COUNT CU MY_CLOCK CLK1 R reset PV 100 Q gt out CV gt current Calling the same function block in FBD MY_CLOCK SYSCLOCK CLK1 CLK2 CLK3 CLK4 CLK5 TIMER MY_COUNT CTU CU reset R 100 PV CV out current Function block DFB instances can be called multiple times other than instances of communication EFBs these can only be called once Calling the same function block DFB instance more than once makes sense for example in the following cases e f the
310. e g as a Waiting Loop with an externally defined end condition WHILE may not be used in an algorithm as the completion of the loop end condition or execution of an EXIT instruction can not be guaranteed Example WHILE DO END WHILE x 1 WHILE x lt 100 DO gt fa 224 As END WHILE See Also EXIT see page 522 520 35006144 07 2011 Structured Text ST Repeat Instruction REPEAT UNTIL END_REPEAT Description Example REPEAT See Also The RE PEAT instruction has the effect that a sequence of instructions is executed repeatedly at least once until its related Boolean condition is 1 true The U TIL instruction marks the end condition The occurrence may be terminated early using the EXIT The E In the which D_REPEAT instruction marks the end of the instruction s following cases REPEAT may not be used as it can create an endless loop causes the program to crash RE Dp Wa EAT may not be used for synchronization between processes e g as a iting Loop with an externally defined end condition RE Pp PEAT may not be used in an algorithm as the completion of the loop end condition or execution of an EXIT instruction can not be guaranteed UNTIL END_REPEAT xo I REPEAT X X 2 UNTIL x gt 101 END_REPEAT EXIT see page 522 35006144 07
311. e is coded 0010 0100 0101 0000 This is a binary unit for a quantity of information which can represent two distinct values or statuses O or 1 BOOL is the abbreviation of Boolean type This is the elementary data item in computing A BOOL type variable has a value of either O FALSE or 1 TRUE A BOOL type word extract bit for example sMW10 4 35006144 07 2011 673 Glossary Break point BYTE Constants CPU Cyclic execution Used in the debug mode of the application It is unique one at a time and when reached signals to the processor to stop the program run Used in connected mode it can be positioned in one of the following program elements e LD network e Structured Text Sequence or Instruction List e Structured Text Line Line mode When 8 bits are put together this is callad a BYTE A BYTE is either entered in binary or in base 8 The BYTE type is coded in an 8 bit format which in hexadecimal ranges from 16 00 to L6 FF C An INT DINT or REAL type variable located in the constant field sk or variables used in direct addressing SKW SKD or SKF The contents of these cannot be modified by the program during execution Is the abbreviation of Control Processing Unit This is the microprocessor It is made up of the control unit combined with the arithmetic unit The aim of the control unit is to extract the instruction to be executed and the data n
312. e left 0 is always displayed but can be omitted at the time of entry Minute 00 59 The left 0 is always displayed but can be omitted at the time of entry Second 00 59 The left 0 is always displayed but can be omitted at the time of entry 35006144 07 2011 677 Glossary DWORD DWORD is the abbreviation of Double Word The DWORD type is coded in 32 bit format This table shows the lower upper limits of the bases which can be used Base Lower limit Upper limit Hexadecimal 16 0 16 FFFFFFFF Octal 8 0 8 37777777777 Binary 2 0 2 11111111111111111111111111111111 Representation examples Data content Representation in one of the bases 00000000000010101101110011011110 16 ADCDE 000000000000000 10000000000000000 8 200000 00000000000010101011110011011110 2 10101011110011011110 EBOOL a value 0 FALSE or 1 TRUI capabilities EBOOL is the abbrevation of Extended Boolean type A EBOOL type variable brings E but also rising or falling edges and forcing An EBOOL type variable takes up one byte of memory The byte split up into e one bit for the value e one bit for the history bit each time the state s object changes the value is copied inside the history bit e one bit for the forcing bit equals to 0 if the object isn t forced equal to 1 if the bit is forced The default type value of each bit is O FALSE a 678 35006144 07 2011 Gl
313. e prefix can be written in lower case Tod 0 0 0 The prefix can be mixed lower upper case 35006144 07 2011 251 Data Types The Date and Time DT Type At a Glance The Date and Time type coded in 64 bit format contains the following information e The year coded in a 16 bit field 4 most significant half bytes e the month coded in an 8 bit field 2 half bytes e the day coded in an 8 bit field 2 half bytes e the hour coded in an 8 bit field 2 half bytes e the minutes coded in an 8 bit field 2 half bytes e the seconds coded in an 8 bit field 2 half bytes NOTE The 8 least significant bits are unused Example Representation in BCD format of the date and Time 2000 09 20 13 25 47 Year 2000 Month 09 Day 20 Hour 13 Minute 25 Seconds 47 Least significant byte 0010 0000 0000 0000 0000 1001 00100000 00010011 00100101 01000111 Unused Syntax Rules The Date and Time type is entered as follows DT lt Year gt lt Month gt lt Day gt lt Hour gt lt Minutes gt lt Seconds gt This table shows the lower upper limits in each field Field Limits Comment Year 1990 2099 Month 01 12 The left 0 is always displayed but can be omitted during entry Day 01 31 For the months 01 03 05 07 08 1 0 12 01 30 For the months 04 06 09 1 1 01 29 For the month 02 leap years 01 28 For the month 02 non leap years
314. e procedure is created in the programming language C and may not be modified in the ST editor Procedures like functions have no internal states If the input values are the same the value on the output is the same for all executions of the procedure For example the addition of two values gives the same result at every execution In contrast to functions procedures do not return a value and support VAR_IN_OUT variables Procedures are a supplement to IEC 61131 3 and must be enabled explicitly Inputs and outputs are required to transfer values to or from procedures These are called formal parameters The current process states are transferred to the formal parameters These are called actual parameters The following can be used as actual parameters for procedure inputs e Variable e Address e Literal e ST Expression The following can be used as actual parameters for procedure outputs e Variable e Address The data type of the actual parameters must match the data type of the formal parameters The only exceptions are generic formal parameters whose data type is determined by the actual parameter When dealing with generic ANY BIT formal parameters actual parameters of the INT or DINT not UINT and UDINT data types can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND AnyBitParam IntVarl AnyBitParam2 IntVar2 544 35006144 07 2011 Structured T
315. e project was the last time it was saved BAK files are stored in the same folder as the project STU file This file type is used for archiving projects and can be created only after the project has been generated This file type allows forward compatibility between the different versions of Unity Pro There is 2 ways to create a STA file e STA file can be created manually by accessing the File Save Archive menu in the Unity Pro main window e STA file is created automatically every time the project is saved as a STU file if itis in Built state NOTE The STA file created automatically is saved into the same directory and with the same filename as the STU project file exept that a Auto suffix is appended to the filename If an existing automatic STA file already exists it is overwritten without any confirmation 35006144 07 2011 25 Presentation NOTE If the project is in Built state saving a STU file through a Unity Pro Server creates a STA file as well Opening a STA file is done by accessing the File Open menu in the Unity Pro main window NOTE In the Open menu window the selected file type must be Unity Pro Archived Application File STA e For more information about creating an STA file see the Unity Pro Installation Manual see Unity Pro Installation manual Create Unity Pro Archived Application File see Unity Pro Installation manual e For more information about opening an STA file s
316. e same time base and preset values e The RESET and HOLD inputs must not be set to 1 Example 2 event processing tasks Timer1 and Timer2 to be executed at 70ms interval Timer1 can be defined with a phase equal to 0 and the second Timer2 with a phase of 70ms phase of 7 and time base of 10ms Any event triggered by the timer associated with the Timer1 processing task shall be followed after an interval of 70ms by an event from the timer associated with the Timer2 processing task 102 35006144 07 2011 Program Structure Timing Diagram STOP RUN Transition Timing diagram of the example provided above with the same preset value of 16 160ms for Timer1 and Timer2 STOP RUNftransition ENABLE se amp se i y n i HEBRE EER i i Ri i HERES Ri EREN ii E ae EERE l j Preset VALUE ie HT titi Timerl i 60 J 4 J v v Yy i i Event 0 Event cessessesseesseesees Event n 1 Preset _ Pe eae es we EB AAA LHA eee Timer2 ler 70 230 J J J J J Phase v Ev Event 1 zent 2 PEER S Event n v Event 0 Operation after PLC STOP RUN The following table describes the operation of the PLC after a transition from STOP into RUN see timing diagram above Phase Description 1 ON a STOP RUN transition of the PLC timing is triggered so that the preset value is reached at the end of a time period equal to Phase x time base when the first event is s
317. e tables of e Modbus Plus and SY MAX EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e SY MAX specific Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual e TCP IP EtherNet Error Codes see Modicon Quantum with Unity Ethernet Network Modules User Manual 610 35006144 07 2011 EFB Error Codes and Values Tables of Error Codes for the IO Management Library Introduction The following tables show the error codes and error values created for the EFBs of the IO Management Library Analog I O Configuration Table of error codes and errors values created for EFBs of the Analog 1 0 Configuration family EFB name Error code ENO Error Error Error description state in value value in case of in Dec Hex error _FILTER E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration _SET E_EFB_USER_ERROR_1 F 30200 16 8A08 The input IN_REG is not connected with the number of an input word IW I_SET E_EFB_USER_ERROR_2 F 30201 16 8A07 The input IN_REG is connected with an invalid number of an input word IW I_SET E_EFB_USER_ERROR_3 F 30202 16 8A06 MN_RAW MX_RAW _SET E_EFB_USER_ERROR_4 F 30203 16 8A05 Unknown value for MN_PHYS _SET E_EFB_USER_ERROR_5 F 30204 16 8A04 Unkno
318. e that the first actual parameter is not a part of the list Invalid informal call for a function LD A LIMIT B C If the value to be processed first actual parameter is already in the accumulator the load instruction can be omitted LIMIT B C ST result If the result is to be used immediately the store instruction can be omitted LD A IMIT REAL B C MUL E 476 35006144 07 2011 Instruction List IL If the function to be executed only has one input the name of the function is not followed by a list of actual parameters Calling a function with one actual parameter Actual Parameters m Function Name LD Pesan SIN ST result Result of the function Calling the same function in FBD SIN A IN OUT result EN and ENO With all functions an EN input and an ENO output can be configured If the value of EN is equal to 0 when the function is called the algorithms defined by the function are not executed and ENO is set to 0 If the value of EN is equal to 1 when the function is called the algorithms defined by the function are executed After the algorithms have been executed successfully the value of ENO is set to 1 If an error occurred while executing the algorithms ENO is set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If EN
319. e the inputs not accessible in read write mode from the application but read by the function block code e the inputs outputs not accessible in read write mode from the application but read and written by the function block code e the outputs accessible in read only from the application and read and written by the function block code the internal data e public internal data accessible in read write mode from the application and read and written by the function block code e private internal data not accessible from the application but read and written by the function block code the code e for DFBs this is written by the user in PLC language Structured Text Instruction List Ladder language function block language and is structured in a single section if the IEC option is active or may be structured in several sections if this option is inactive e for EFBs this is written in C language information such as e type version number e date of the last modification of the code or of the internal variables or of the interface variables e an optional descriptive file 32767 characters describing the block function and its different modifications This table gives the characteristics of the elements that make up a type Element EFB DFB Name 32 characters 32 characters Comment 1024 characters 1024 characters Input Data 32 maximum 32 maximum Input Output data 32 maximum 32 maximum Out
320. e use e The RUN STOP input on Modicon M340 Failure to follow these instructions can result in death serious injury or equipment damage 132 35006144 07 2011 Operating Modes 5 2 Premium Quantum PLCs Operating Modes Subject of this Section This section describes the operating modes of the Premium and Quantum PLCs What s in this Section This section contains the following topics Topic Page Processing of Power Outage and Restoral for Premium Quantum PLCs 134 Processing on Cold Start for Premium Quantum PLCs 136 Processing on Warm Restart for Premium Quantum PLCs 141 Automatic Start in RUN for Premium Quantum 144 35006144 07 2011 133 Operating Modes Processing of Power Outage and Restoral for Premium Quantum PLCs General If the duration of the outage is less than the power supply filtering time it has no effect on the program which continues to run normally If this is not the case the program is interrupted and power restoral processing is activated Filtering time PLC Alternating Current Direct Current Premium 10ms ims Atrium 30ms Quantum 10ms ims Illustration The illustration shows the different types of power restoral detected by the system RUN Application Power failure Awaiting power Power restoral Yes No Save Outage detected Context OK No Identi
321. ecause the data type BOOL only offers one single bit current value there is another data type for edge recognition EBOOL expanded BooL In addition to edge recognition the data type EBOOL provides an option for forcing It must also be saved whether forcing the bit is enabled or not The data type EBOOL saves the following data e the current value of the bit in Value bit e the old value of the bit in History bit the content of the value bit is copied to the History bit at the beginning of each cycle e Information whether forcing of the bit is enabled in Force Bit 0 Forcing disabled 1 Forcing enabled Restrictions for EBOOL CAUTION UNINTENDED EQUIPMENT OPERATION To perform a good edge detection the M must be updated at each task cycle When performing a unique writing the edge will be infinite Failure to follow these instructions can result in injury or equipment damage Using an EBOOL variable for contacts to recognize positive P or negative N edges or with an EF called RE or FE you have to adhere to the restrictions described below 35006144 07 2011 371 Ladder Diagram LD EBOOL with M not written inside program An EBOOL variable with a M address which is not written inside your program but directly for example by an animation table an operator screen or an HMI will not work in the expected way The edge is TRUE infinitely because the sM is only written one time
322. ected e least significant byte counts non responses The words SW551 to 553 are assigned to station 3 SW554 to 556 are assigned to station 4 SWE638 to 640 are assigned to station 32 SW641 to SW702 Ethernet RIO The words SW641 to SW702 are the module health bits 0 ERIO MOD HEALTH Module Health SW641 health bits of the modules on rack 1 drop 1 bit status SWE642 health bits of the modules on rack 2 drop 1 NOTE Rack 1 is the Main rack Rack 2 is the Extension rack SW701 health bits of the modules on rack 1 drop 31 SW702 health bits of the modules on rack 2 drop 31 Bits 0 to 15 of each of these words are associated with the modules located in positions 16 to 1 of the 140 CRA 312 00 Drop module The bit is set to 0 if the module has a detected error It is set to 1 if the module is operating correctly 35006144 07 2011 221 System Objects 6 5 Modicon M340 Specific System Words Description of System Words SW142 to SW145 SW146 and SW147 SW150 to SW154 SW160 to SW167 Detailed Description Description of system words SW142 to 3SW145 3SW146 and SW147 SSW150 to SW154 SW160 to SW167 Word Function Description Initial Symbol State SW142 to SW145 Modicon M340 Inhibit the I O error raised by the system when a configured device on the CANopen bus is not present This inhibition can be managed with 4 system words SW142 143 144 145 These System
323. ecuted If no initial value has been defined the default value 0 is used Programming Notes Attention should be paid to the following programming notes e Functions are only executed if the input EN 1 or the EN input is not used see also EN and ENO see page 477 e All generic functions are overloaded This means the functions can be called with or without entering the data type E g LD il ADD i2 ST i3 is identical to LD il ADD INT i2 ST i3 e Incontrast to ST functions in IL cannot be nested e There are two ways of invoking a function e Formal call calling a function with formal parameter names e Informal call calling a function without formal parameter names 474 35006144 07 2011 Instruction List IL Formal Call With this type of call call with formal parameter names the function is called using an instruction sequence consisting of the function name followed by the bracketed list of value assignments actual parameters to the formal parameters The order in which the formal parameters are listed is not significant The list of actual parameters may be wrapped immediately following a comma After executing the function the result is loaded into the accumulator and can be stored using ST EN and ENO can be used for this type of call Calling a function with formal parameter names Function Name Formal Parameters LIMIT MN 0 Sa ST out Actual Parameters Inputs Actual
324. ed Description Description of system bits 3S65 to S79 the card in order to ensure the information consistency In fact on rising edge detection the current accesses are finished reading and writing of files application saving then the card accessing LED is off CARDERR light is unchanged Then the card can be extracted CARDERR LED is on Inserting the card the accessing LED is on and CARDERR LED shows the status SS65 is unchanged The user has to reset S65 to 0 to allows edge detection later If a rising edge has been generated on the bit S65 and that the card hasn t been extracted the reset to 0 of the bit doesn t make the card accessible To make the card accessible again it has to be extracted and re inserted or the PLC has to be re initialited Reset button from the power supply Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S65 Card disable It is necessary to generate a rising 0 YES NO NO CARDIS edge on the bit 3S 65 before extracting 160 35006144 07 2011 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S66 Application This bit is set to 1 by the user to start 0 YES NO NO LEDBATT backup a backup operation transfer APPLIBCK application from RAM to card The system will detect the rising edge to start the backup The state of this bit is p
325. ed circle OR AND OR Crossed links are indicated by a broken link AND OR AND OR 336 35006144 07 2011 Function Block Language FBD Programming Notes Attention should be paid to the following programming notes Links can be used for any data type The data types of the inputs outputs to be linked must be the same Several links can be connected with one FFB output Only one may be linked with an FFB input however Inputs and outputs may be linked to one another Linking more than one output together is not possible That means that no OR connection is possible using links in FBD An OR function is to be used in this case Overlapping links with other objects is permitted Links may not be used to create loops since the sequence of execution in this case cannot be clearly determined in the section Loops must be created using actual parameters see Loop Planning page 346 To avoid links crossing each other links can also be represented in the form of connectors The source and target for the connection are labeled with a name that is unique within the section The connector name has the following structure depending on the type of source object for the connection e For functions Function counter formal parameter for the source of the connection 1 2 AND AND INL OUT 30UT gt gt INL OUT IN2 gt BOUT IN2
326. ed in any special way Notes on Programming FFB Links Notes on Programming FFB Links e Atleast one side of an FFB link must be connected with an FFB input or output e To differentiate them from Boolean links FFB links are shown with a doubly thick line e The signal flow power flow in FFB links is from the FFB output to the FFB input no matter which direction they are made in Therefore backwards links are allowed e Only FFB inputs and FFB outputs may be linked to one another Linking more than one FFB outputs together is not possible That means that no OR connection is possible in LD using FFB links e Overlapping FFB links with other objects is permitted e Crossing FFB links is also permitted Crossed links are indicated by a broken link AND OR AND OR 368 35006144 07 2011 Ladder Diagram LD e Connection points between more FFB links are shown with a filled circle OR AND OR e To avoid links crossing each other FFB links can also be represented in the form of connectors The source and target for the FFB connection are labeled with a name that is unique within the section The connector name has the following structure depending on the type of source object for the connection e For functions Function counter formal parameter for the source of the connection 3 4 1 2 AND AND IN1 OUT 30UT gt gt N1 OU
327. edge related to the construction and operation of electrical equipment and its installation and has received safety training to recognize and avoid the hazards involved 12 35006144 07 2011 About the Book A At a Glance Document Scope This manual describes the elements necessary for the programming of Premium Atrium and Quantum PLCs using the Unity Pro programming workshop Validity Note This documentation is valid from Unity Pro v6 0 Product Related Information A WARNING UNINTENDED EQUIPMENT OPERATION The application of this product requires expertise in the design and programming of control systems Only persons with such expertise should be allowed to program install alter and apply this product Follow all local and national safety codes and standards Failure to follow these instructions can result in death serious injury or equipment damage User Comments We welcome your comments about this document You can reach us by e mail at techcomm schneider electric com 35006144 07 2011 13 14 35006144 07 2011 General Presentation of Unity Pro 35006144 07 2011 General Presentation 16 35006144 07 2011 Presentation Overview This chapter describes the general design and behavior of a project created with Unity Pro What s in this Chapter This chapter contains the following topics
328. ee mil oe l VALUE x al ee er yy oY Event Event Event Event Normal operation The following table describes the triggering of TIMER type event processing operations see timing diagram above Phase Description 1 When a rising edge is received on the RESET input the timer is reset to 0 2 The current value VALUE of the timer increases from 0 towards the preset value at a rate of one unit for each pulse of the time base 3 An event is generated when the current value has reached the preset value the timer is reset to 0 and then reactivated The associated event processing is also triggered if the event is not masked It can be deferred if an event processing task with a higher or identical priority is already in progress 35006144 07 2011 101 Program Structure Phase Description 4 When the ENABLE input is at 0 the events are no longer sent out TIMER type event processing is no longer triggered 5 When the HOLD input is at 1 the timer is frozen and the current value stops incrementing until this input returns to 0 Event Processing Synchronization The Phase parameter is used to trigger different TIMER type event processing tasks at constant time intervals This parameter set a temporal offset value with an absolute time origin which is the last passage of the PLC from STOP to RUN Operating condition e The event processing tasks must have th
329. ee the Unity Pro Installation Manual see Unity Pro Installation manual Restoring Unity Pro Archived Application File see Unity Pro Installation manual The following table presents the STA file advantages and drawbacks Advantages Drawbacks e Fast project saving e Can be created only after the project has been generated e Projects can be shared vie e mail or low size memory supports Opening of the project is long as the project file is rebuilt before operation e Capability to connect in Equal Online Mode to the PLC after opening the project on a new version of Unity Pro For additional information see Connection Disconnection see Unity Pro Operating Modes in the Operating Modes see Unity Pro Operating Modes manual e Allow online modifications with the PLC without any prior download into the PLC e Generated STA file is compatible with all Unity Pro versions NOTE In order to load a STA file created with another version of Unity Pro all the features used in the application have to be supported by the current version 26 35006144 07 2011 Presentation XEF File This file type is used for exporting projects in an XML source format and can be created at any stage of a project Exporting an XEF file is done by accessing the File Export Project menu in the Unity Pro main window Importing an XEF file is done by accessing the File Open menu in the Unity
330. eeded to execute this instruction from the central memory to establish electrical connections in the arithmetic unit and logic and to run the processing of this data in this unit We can sometimes find ROM or RAM memories included in the same chip or even I O interfaces or buffers The master task is executed either cyclically or periodically Cyclical execution consists of stringing cycles together one after the other with no waiting time between the cycles 674 35006144 07 2011 Glossary DATE The DATE type coded in BCD in 32 bit format contains the following information e the year coded in a 16 bit field e the month coded in an 8 bit field e the day coded in an 8 bit field The DATE type is entered as follows D lt Year gt lt Month gt lt Day gt This table shows the lower upper limits in each field Field Limits Comment Year 1990 2099 Year Month 01 12 The left 0 is always displayed but can be omitted at the time of entry Day 01 31 For the months 01 03 05 07 08 10 12 01 30 For the months 04 06 09 11 01 29 For the month 02 leap years 01 28 For the month 02 non leap years DATE_AND_TIME see DT DBCD Representation of a Double BCD format double integer The Binary Coded Decimal BCD format is used to represent decimal numbers between 0 and 9 using a group of four bits In this format the four bits used to code the decimal numbers have a range of
331. eer creer eh Mir hl arianna ease Seen 508 INStrUCTIONS ieac Oa aa Fa eat ee aed oe Set See EA 509 ASSIGNMENT 2 203 oer astute aN Peal ase SiG aes ate PS na aN 510 Select Instruction IF THEN END_IF 0 0 0 0 0 00000 cee eee eee 513 Select Instruction ELSE 0 0 cee eee eee 514 Select Instruction ELSIF THEN 0 0000 e eee eee eeee 515 Select Instruction CASE OF END_CASE 0 516 Repeat Instruction FOR TO BY DO END_FOR 517 Repeat Instruction WHILE DO END_WHILE 520 Repeat Instruction REPEAT UNTIL END_ REPEAT 521 Repeat Instruction EXIT 2 0 0 0 eee eee 522 Subroutine Callasin ee vhs ag here aged Sha deh pals epee pee eed E 523 35006144 07 2011 15 3 Part V Chapter 16 Chapter 17 Chapter 18 Chapter 19 Chapter 20 Appendices Appendix A RETURN Empty Instruction Labels and Jumps Comment 05 Calling Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures 0 00 cece e eee eee Calling Elementary Functions Call Elementary Function Block and Derived Function Block Procedures User Function Blocks DFB 2 5 Overview of User Function Blocks DFB Introduction to User Function Blocks 0020000 ee eaee Implementing a DFB Function Bl
332. efault names supplied by the manufacturer which the user may modify Syntax of manufacturer supplied default names FB lt name ot tunction block type gt _ lt instance No gt NOTE Instance names do not include the name of the section in which the instance is used since it can be used in different sections of the application Access to an Element of a DDT Family Instance The access syntax is as follows For structure type data lt Instance name gt lt Element name gt For table type data lt Instance name gt Element index Rule The maximum size of the access syntax is 1024 characters and the possible limits of a derived data type are as follows e 10 nesting levels tables structures e 6 dimensions per table e 4 digits figures to define the index of a table element 35006144 07 2011 299 Data Instances Direct Addressing Data Instances At a Glance Access Syntax What is a direct addressing data instance see page 297 The syntax of a direct addressing data instance is defined by the symbol followed by a memory location prefix and in certain cases some additional information The memory location prefix can be M for internal variables K for constants Premium and Modicon M340 S for system variables N for network variables I for input variables Q for output variables M Internal Variables Access syntax Syntax Format Example Program acce
333. egister Meaning of the different bits of the word SW61 7 to SWE1 9 SWE61 7 this bit indicates if there is a Main Processor OS version mismatch between Primary and Standby e 0 no OS version firmware mismatch e 1 OS version mismatch If OS version mismatch is not allowed in the command register bit 4 0 the system will not work as redundant as soon as the fault is signaled SWE61 8 this bit indicates if there is a COPRO OS version mismatch between Primary and Standby e 0 no COPRO OS version mismatch e 1 COPRO OS version mismatch If OS version mismatch is not allowed in the command register bit 4 0 the system will not work as redundant as soon as the fault is signaled SW61 9 this bit indicates if at least one ETY module does not have the minimum version 0 all the ETY modules have the minimum version 1 atleast one ETY module doesn t have the minimum version In this case no Primary PLC could start 0 YES NO SW61 HSB STS Premium Hot Standby status register Meaning of the different bits of the word SW61 10 and SW61 15 SWE61 10 this bit indicates if there is a Monitored ETY OS version mismatch between Primary and Standby e 0 no Monitored ETY OS version mismatch e 1 Monitored ETY OS version mismatch If OS version mismatch is not allowed in the command register bit 4 0 the system will not work as redundant as soon as the fault is signaled SWE1
334. en the first load instruction for the actual parameters and the call of the function block All other instructions are not allowed in this position It is not necessary to assign a value to all formal parameters see also Parameter see page 478 CAL with Load Save the input parameters Actual Parameter Input varl MY_COUNT lt U reset MY_C HES Formal Parameter Input value MY_COUNT PV F CAL MY COUNT Calling the function block NENOME Joga K Q O G Z pal LD MY COUNT 0H A Formal Parameter Output ST out D MY_COUNT CV ST current Actual Parameter Output Nn E Use of the Input Operators Function blocks can be called using an instruction list that consists of loading the actual parameters followed by saving them in the formal parameters followed by an input operator The sequence of loading and saving the parameters is not significant Only load and save instructions for the function block currently being configured are allowed between the first load instruction for the actual parameters and the input operator of the function block All other instructions are not allowed in this position EN and ENO cannot be used for this type of call 484 35006144 07 2011 Instruction List IL It is not necessary to assign a value to all formal parameters see also Parameter see page 478 The possible input operators for the various function blocks can
335. ence Language IfS_5 10 is active and transition conditions a then a sequence is run from s_5_ 10 to and b are true S_5 llands 5 12 A second token is created by the parallel activation of the two alternative branches These two tokens are now running parallel to one another i e S_5 11 andS_5 12 are active at the same time Token 1 S_5_11 Token 2 S_5_ 12 If Then If Then If the transition condition then a sequence If transition condition then a sequence is c is true is run from dis true run froms 5 12 to s 5 11 to Sv 5 13 Seb 213 IfS_5 13 is still active token 1 because of the activation of transition condition c then token 2 is ended and the string will be further processed as Single Token If S_5 13 is no longer active token 1 then it is reactivated by token 2 and both tokens continue running parallel Multi Token If alternative branches should only be switched exclusively in this mode of operation then this must be defined explicitly with the transition logic Example S_5_10 Da a a NOT 8 5 11 S_5_12 a Ce c d 436 35006144 07 2011 SFC Sequence Language Terminating an Alternative Branch with a Parallel Merge If a parallel merge is used to terminate an alternative branch it may block the string Terminating an Alternative Branch with a Parallel Merge a a b S61 62
336. ent Function block invocation and function block output usage RETURN statement Note page 656 IF statement CASE statement FOR statement WHILE statement REPEAT statement EXIT statement Oo o NIOJ oO BR OINI 0 Empty statement Note In DFB only 656 35006144 07 2011 IEC Compliance Common graphical elements Common graphical elements IEC compliance table for common graphical elements Note Table No Feature No Feature description 57 2 Horizontal lines Graphic or semigraphic 4 Vertical lines Graphic or semigraphic 6 Horizontal vertical connection Graphic or semigraphic 8 Line crossings without connection Graphic or semigraphic 10 Connected and non connected corners Graphic or semigraphic 12 Blocks with connecting lines Graphic or semi graphic 58 1 Unconditional Jump FBD Language 2 Unconditional Jump LD Language 3 Conditional Jump FBD Language 4 Conditional Jump LD Language 5 Conditional Return LD Language Note page 657 6 Conditional Return FBD Language Note page 657 7 Unconditional Return from function or function block Note page 657 8 Unconditional Return LD Language Note page 657 In DFB only 35006144 07 2011 657 IEC Compliance LD language elements LD language elements IEC compliance table for LD language elements
337. ent out 2 The current value VALUE of the timer increases from 0 towards the preset value at a rate of one unit for each pulse of the time base 3 An event is generated when the current value has reached the preset value the timer is reset to 0 and then reactivated The associated event processing is also triggered if the event is not masked If can be deferred if there is an event processing task of higher or identical priority already in progress 35006144 07 2011 103 Program Structure Input Output Exchanges in Event Processing General Operation With each type of event processing it is possible to use other input output channels than those for the event As with tasks exchanges are then performed implicitly by the system before l and after Q application processing The following table describes the exchanges and processing performed Phase Description 1 The occurrence of an event reroutes the application program to perform the processing associated with the input output channel which caused the event All inputs associated with event processing are acquired automatically The event processing is executed It must be as short as possible All the outputs associated with the event processing are updated Premium Atrium PLCs Quantum PLCs Programming Rule The inputs acquired and the outputs updated are e the inputs associated with the channel which c
338. entation file i g X View Print 7 xD filling feeding box Q Mixing x FST 0 u loa 4 Em E SRSec Print x Events E Animation tables z Footer k Exclude heading Include headings Delas arse ara EEs p ape The following are just some of the services provided for documenting the project Print the entire project 2 or in sections 3 Selection between structural and functional view 1 Adjustment of the result footer general information etc Local printing for programming language editors configurator etc Special indication bold for keywords Paper format can be selected Print preview 4 Documentation save 54 35006144 07 2011 Presentation Debug Services Searching for Errors in the User Application The following are just some of the features provided to optimize debugging in the project Set breakpoints in the programming language editors e Step by step program execution including step into step out and step over e Call memory for recalling the entire program path e Control inputs and outputs Online Mode Online mode is when a connection is established between the PC and the PLC Online mode is used on the PLC for debugging for animation and for changing the program A comparison between the project of the PC and project of the PLC takes place automatically when the c
339. ents each time an I O configuration is done in RUN state in the Local rack NOTE Ona RUN to STOP mode transition SW100 is reset to 0 NOTE When a byte reaches its maximum value of 255 the counter is reset to 1 SW101 ERIO_ CCOTF COUNT ERIO CCOTF counting status register Meaning of the bytes of the word SW101 e XXYY e XX Reserved e YY increments each time an Ethernet I O configuration changes NOTE When the counter reaches its maximum value of 255 it is reset to 1 NOTE On a cold start warm start or application download SW101 is reset to 0 SW108 FORCED DISCRETE COUNT Forced bit counting status register Word SW108 e increments each time an discrete bit l Q or M is forced decrements each time an discrete bit is unforced SW109 FORCED ANALOG COUNT Forced analog channel counting status register Word SW109 e increment each time an analog channel is forced e decrement each time an analog channel is unforced 212 35006144 07 2011 System Objects Description of Quantum System Words SW110 to SW177 Detailed Description Description of system words SW110 to SW177 these words are active on Quantum 140 CPU Gee eee PLCs Word Function Description Initial Symbol state SW110 number of This system word gives information on the size of 0 unrestricted memory the unrestricted memory area for
340. epresented graphically as a frame with inputs and outputs The inputs are always represented on the left and the outputs always on the right of the frame Function blocks can have more than one output The name of the function block i e the function block type is displayed in the center of the frame The execution number see page 339 for the function block is shown to the right of the function block type The instance name is displayed above the frame The instance name serves as a unique identification for the function block in a project The instance name is created automatically and has the following structure FBI_n FBI Function Block Instance n sequential number of the function block in the project This automatically generated name can be modified for clarification The instance name max 32 characters must be unique throughout the project and is not case sensitive The instance name must conform to general naming conventions NOTE To conform to IEC61131 3 only letters are permitted as the first character of the name If you want to use a numeral as your first character however this must be enabled explicitly Elementary Function Block FBI 1 CTU i CTU Q R PV CVE 35006144 07 2011 325 Function Block Language FBD DFB Procedure Derived function blocks DFBs have the same properties as elementary function blocks The user can create them in the programming languages
341. eps has been satisfied then one step is processed per cycle e Steps cannot be activated or deactivated by other non SFC sections The use of macro steps is possible e Only one branch is ever active in alternative branches The branch to be run is determined by the result of the transition conditions of the transitions that follow the alternative branch If a transition condition is satisfied the remaining transitions are no longer processed The branch with the satisfied transition is activated This gives rise to a left to right priority for branches All alternative branches are combined at the end by an alternative joint or jumps e With parallel branches switching a single transition leads to the activation of more than one step branch After this common activation the individual branches are processed independent of one another All parallel branches are combined at the end by a parallel joint Jumps into a parallel branch or out of a parallel branch are not possible 422 35006144 07 2011 SFC Sequence Language Alternative String Alternative Strings According to IEC 61131 3 only one switch 1 off n select can be made from the transitions The branch to be run is determined by the result of the transition conditions of the transitions that follow the alternative branch Branch transitions are processed from left to right If a transition condition is satisfied the remaining transitions are no longer processed The branch w
342. er contains the following sections Section Topic Page 13 1 General Information about SFC Sequence Language 390 13 2 Steps and Macro Steps 396 13 3 Actions and Action Sections 404 13 4 Transitions and Transition Sections 410 13 5 Jump 415 13 6 Link 416 13 7 Branches and Merges 417 13 8 Text Objects 420 13 9 Single Token 421 13 10 Multi Token 432 35006144 07 2011 389 SFC Sequence Language 13 1 General Information about SFC Sequence Language Overview This section contains a general overview of the SFC sequence language What s in this Section This section contains the following topics Topic Page General Information about SFC Sequence Language 391 Link Rules 395 390 35006144 07 2011 SFC Sequence Language General Information about SFC Sequence Language Introduction The sequence language SFC Sequential Function Chart which conforms to IEC 61131 3 is described in this section Structure of a Sequence Controller IEC conforming sequential control is created in Unity Pro from SFC sections top level transition sections and action sections These SFC sections are only allowed in the Master Task of the project SFC sections cannot be used in other tasks or DFBs In Single Token each SFC section contains exactly one SFC network sequence In Multi Token an SFC section can contain one or more independent SFC networks Objec
343. eration is detected bit S18 is set to 1 and SW17 error status is updated according to the following coding SW17 0 Invalid operation result is not a number SW17 1 Denormalized operand result is acceptable flag not managed by Modicon M340 or Quantum Safety PLCs SW17 2 Division by 0 result is infinity SW17 3 Overflow result is infinity SW17 4 Underflow result is O SW17 5 to 15 not used This word is reset to 0 by the system on cold start and also by the program for re usage purposes YES YES YES Only on safety PLCs SD18 SW18 and SW19 100MSCOUNTER Absolute time counter SW18 represents the least significant bytes and sSw19 the most significant bytes of the double word SD18 which is incremented by the system every 1 1 ot of a second The application can read or write these words in order to perform duration calculations SD18 is incremented systematically even in STOP mode and equivalent states However times when the PLC is switched off are not taken into account since the function is not linked to the real time scheduler but only to the real time clock For Quantum safety PLC knowing that the 2 processors must process exactly the same data the value of SD18 is updated at the beginning of the mast task and then frozen during the application execution YES YES YES 35006144 07 2011 177 Sy
344. es Private Yes Yes Yes Yes No Variables 35006144 07 2011 573 DFB instance Execution of a DFB Instance Operation A DFB instance is executed as follows Step Action 1 Loading the values in the input and input output parameters On initialization or on cold restart all non assigned inputs take the initial value defined in the DFB type They then keep the last value assigned to them Execution of the internal program of the DFB 3 Writing the output parameters NOTE The internal variables of DFBs are not reinitialized when using Build project online command after an input modification To reinitialize all internal variables use Rebuild all project command Debugging of DFBs The Unity Pro software offers several DFB debugging tools e animation table all parameters and public and private variables are displayed and animated in real time Objects may be modified and forced e breakpoint step by step and program diagnostics e runtime screens for unitary debugging 574 35006144 07 2011 DFB instance Programming Example for a Derived Function Block DFB General This example of programming a counter using a DFB is provided for instruction purposes Characteristics of the DFB Type The DFB type used to create the counter is as follows Cpt_parts Reset Done EBOOL BOOL Presel DINT Count EBOOL V_cour DINT Th
345. es Parallel sequences Text objects to comment on the logic The SFC editor has a background grid that divides the section into 200 rows and 32 columns The program can be entered using the mouse or the keyboard Input Aids The SFC editor offers the following input aids Toolbars for quick and easy access to the desired objects Automatic step numbering Direct access to actions and transition conditions Syntax and semantics are checked as the program is being written e Incorrect objects are displayed in blue e Unknown words e g undeclared variables or unsuitable data types are marked with a red wavy line e Brief description of errors in the Quickinfo Tooltip Information for variables and for transitions can be displayed in a Quickinfo Tooltip e type name address and comment of a variable expression e type name and comment of transitions Different zoom factors Show hide the allocated actions Tracking of links Optimization of link routes 48 35006144 07 2011 Presentation Step Properties Step properties Step Properties General Actions I Comment Step name L initial Step Supervision times and delay time SFCSTEP_TIMES Literals Cc Maximum J minirwm Delay t is Step Properties ctions Comment Time Actio Qualifier Literal Variable Variable
346. es 192 to 223 except for code 215 e characters corresponding to ASCII codes 224 to 255 except for code 247 The rules are as follows e the first character of the name is an alphanumeric character or an Underscore e Underscore characters can be used consecutively 234 35006144 07 2011 Data Types Subject of this Chapter This chapter describes all the data types that can be used in an application What s in this Chapter This chapter contains the following sections Section Topic Page 8 1 Elementary Data Types EDT in Binary Format 236 8 2 Elementary Data Types EDT in BCD Format 247 8 3 Elementary Data Types EDT in Real Format 253 8 4 Elementary Data Types EDT in Character String Format 258 8 5 Elementary Data Types EDT in Bit String Format 261 8 6 Derived Data Types DDT IODDT 265 8 7 Function Block Data Types DFB EFB 277 8 8 Generic Data Types GDT 285 8 9 Data Types Belonging to Sequential Function Charts SFC 287 8 10 Compatibility Between Data Types 289 35006144 07 2011 235 Data Types 8 1 Elementary Data Types EDT in Binary Format Subject of this Section This section describes Binary format data types These are e Boolean types e Integer types e Time types What s in this Section This section contains the following topics Topic Page Overview of Data Types in Binary Format 237 Boolean Types 239 Inte
347. es are marked with a red wavy line e Brief description of errors in the Quickinfo Tooltip Tabular display of the functions and function blocks Input assistance for functions and function blocks Operands can be entered and displayed as symbols or topological addresses Display of inspection windows 35006144 07 2011 51 Presentation PLC Simulator Introduction Representation The PLC simulator enables error searches to be carried out in the project without being connected to a real PLC All project tasks Mast Fast AUX and Event that run on a real PLC are also available in the Simulator The difference from a real PLC is the lack of I O modules and communication networks such as e g ETHWAY Fipio and Modbus Plus non deterministic realtime behavior Naturally all debugging functions animation functions breakpoints forcing variables etc are available with the PLC simulator Representation of a dialog box PLC Simulator Control Simulation Premium Host PC name sg6157 aut schneider CH2 CHO RUN ERR Host IP address 139 158 106 116 CH3 CH1 TER I O Project name Station FIP Clients connected Name of the client IP address local host 127 000 000 001 sg avail aut schneider 139 158 107 005 Reset ie Power Cycle Structure of the Simulator The simulator controller offers the following views e Type of simulated PLC e Current status of the simula
348. es are not available on Quantum PLCs 35006144 07 2011 301 Data Instances l Constants Access syntax Syntax Format Program access rights Bit constant l lt i gt 3 bits EBOOL R Word constant IW lt i gt 16 bits INT R lt i gt represents the instance number NOTE These data are only available on Quantum and Momentum PLCs S System Variables Access syntax Syntax Format Program access rights Bit S lt i gt or SX lt i gt 1 bit BOOL R W or R Word SW lt i gt 32 bits INT R W or R lt i gt represents the instance number NOTE The memory organization is identical to that of internal variables The S lt i gt and SX lt i gt data are not used for detection of edges and do not manage forcing N Network Variables These variables contain information which has to be exchanged between several application programs across the communication network Access syntax Syntax Format Program access rights Common word NW lt n gt lt s gt lt d gt 16 bits INT R W or R Word extracted bit NW lt n gt lt s gt lt d gt lt j gt 1 bit BOOL R W or R lt n gt represents the network number lt s gt represents the station number lt d gt represents the data number lt j gt represents the position of the bit in the word 302 35006144 07 2011 Data Instances Case with Input Output Vari
349. es the output variables e private and public internal variables operated by the processing algorithm Function block Algorithm 3o erMO 00 gt Internal variables JIo voa 000 gt 278 35006144 07 2011 Data Types User Function Block DFB The user function block types Derived Function Blocks are developed by the user using one or more languages according to the number of sections These languages are e Ladder language e Structured Text language e Instruction List language e Functional block language FBD A DFB type can have one or more instances where each instance is referenced by a name symbol and possesses DFB data types Elementary Function Block EFB Elementary Function Blocks EFBs are provided by the manufacturer and are programmed in C language The user can create his own EFB for which he will need an optional software tool SDKC An EFB type can have one or more instances where each instance is referenced by a name symbol and possesses EFB type data 35006144 07 2011 279 Data Types Characteristics of Function Block Data Types EFB DFB Type Definition Characteristics The type of an EFB or DFB function block is defined by the type name see page 234 defined by the user for the DFBs an optional comment The authorized characters correspond to the ASCII codes 32 to 255 the application interface data
350. esentation of word tables Type Address Write access Internal words MWi L Yes MDi L MFi L Constant words KWi L No KDi L KFi L System words SW50 4 Yes Examples M2 65 Defines an EBOOL table from M2 to M66 MW125 30 Defines an INT table from MW125 to SMW 154 316 35006144 07 2011 Data References Data Naming Rules Introduction What is a Domain Rules In an application the user chooses a name to e define a type of data e instantiate a data item symbol e identify a section Some rules have been defined in order to avoid conflicts occurring This means that it is necessary to differentiate between the different domains of application of data It is an area of the application from which a variable can or cannot be accessed such as e the application domain which includes e the various application tasks e the sections of which it is composed e the domains for each data type such as e structures tables for the DDT family e EFB DFBs for the function block family This table defines whether or not it is possible to use a name that already exists in the application for newly created elements Application Content gt Section SR DDT AODDT FB type FB Instances EF Variable New elements below Section No No Yes Yes Yes Yes Yes SR No No Yes Yes No 1 No DDT ODDT No No No No 4 No No 4 No FB type Yes Yes No No 3 No 3
351. essors with 2 memory card slots the lower slot is reserved for the file storage function 35006144 07 2011 113 Memory Structure Detailed Description of the Memory Zones User Data This zone contains the located and unlocated application data e located data e M S Boolean and MW SW numerical data e data associated with modules l Q IW QW KW etc e unlocated data e Boolean and numerical data instances e EFB and DFB instances User Program and Constants This zone contains the executable codes and constants of the application e executable codes e program code e code associated with EFs EFBs and the management of I O modules e code associated with DFBs e constants e KW constant words e constants associated with inputs outputs e initial data values This zone also contains the necessary information for downloading the application graphic codes symbols etc Other Information Other information relating to the configuration and structure of the application are also stored in the memory in a data or program zone depending on the type of information e Configuration other data relating to the configuration hardware configuration software configuration e System data used by the operating system task stack etc e Diagnostics information relating to process or system diagnostics diagnostics buffer 114 35006144 07 2011 Memory Structure 4 2 Memory Structure of Quantum PLC
352. eters actual parameters of the INT or DINT not UINT and UDINT data types can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND AnyBitParam IntVarl AnyBitParam2 IntVar2 35006144 07 2011 529 Structured Text ST Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 In this case AND_ INT must be used AND ARRAY WORD ArrayInt In this case an explicit type conversion must be carried out using INT ARR TO WORD ARR Not all formal parameters must be assigned with a value You can see which formal parameter types must be assigned with a value in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Input VAR_IN_OUT 4 ue Output s 3 Actual parameter required Actual parameter not required not applicable If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is used Programming Notes Attention should be paid to the following programming notes e All generic functions are overloaded This means the functions can be called with or without entering the data type E g il ADD i2 3 is identical to il ADD INT 12 3 e Functions can be nested see also Ne
353. etween different tasks can lead to unforeseen behavior by the application We specifically recommend you associate each output or each input to one task only Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 91 Program Structure Sequencing of Tasks in a Multitasking Structure General The master task is active by default The fast and auxiliary tasks are active by default if they have been programmed Event processing is activated when the associated event occurs Operation The table below describes the execution of priority tasks this operation is also illustrated in the diagram below Phase Description Occurrence of an event or start of the fast task cycle Execution of lower priority tasks in progress stopped Execution of the priority task AJOJ N The interrupted task takes over again when processing of the priority task is complete Description of the Task Sequence The following diagram illustrates the task sequence of multitasking processing with a cyclic master task a fast task with a 20ms period and event processing Event Fast Master System Legend A IPI me IPO IPO HA IPO 20ms 20ms 20ms 20ms l acquisition of inputs P program processing O updating of outputs 92 35006144 07
354. ext ST Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 In this case AND_ INT must be used AND ARRAY WORD ArrayInt In this case an explicit type conversion must be carried out using INT ARR TO WORD ARR Not all formal parameters must be assigned with a value You can see which formal parameter types must be assigned with a value in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Input VAR_IN_OUT Output z z H Actual parameter required Actual parameter not required not applicable If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is used Programming Notes Attention should be paid to the following programming notes e Procedures are only executed if the input EN 1 or the EN input is not used see also EN and ENO page 548 e Special conditions apply when using VAR_IN_OUT variables see page 548 e There are two ways of calling a procedure e Formal call see page 546 calling a function with formal parameter names This way variables can be assigned to outputs using the gt operator e Informal call see page 547 call without formal parameter names 35006144 07 2011 545 Structured Text ST
355. f representation for variables of type TIME DATE TIME _OF_DAY and DATE AND TIME for TIME t 0ms t 4294967295ms t 49D_ 17H 2M 47S _295MS for DATE D 1990 01 01 D 2099 12 31 for TOD TOD 00 00 00 TOD 23 59 59 Precision of representation of seconds in types TIME TIME OF _DAY and DATE AND TIME TIME precision 1 ms TIME _OF_DAy precision 1 s Maximum number of enumerated values Not applicable Maximum number of array subscripts 6 Maximum array size 64 kbytes Maximum number of structure elements no limit Maximum structure size 64 kbytes Maximum range of subscript values DINT range Maximum number of levels of nested 10 structures Default maximum length of STRING and WSTRING variables 16 characters Maximum allowed length of STRING and WSTRING variables 64 kbytes Maximum number of hierarchical levels Logical or physical mapping Premium physical mapping 5 levels Quantum logical mapping 1 level 35006144 07 2011 659 IEC Compliance Parameters Limitations Behavior Maximum number of inputs of extensible functions The number of all input parameters including in out parameters is limited to 32 The number of all output parameters including in out parameters is also limited to 32 Thus the limit for extensible input parameters is 32 number of input parameters number of in out parameters The limit for extensible output para
356. f an address can not be declared directly in an ST section e g declaration AT MW1 UINT not permitted For example the following variables are declared in the variable editor UnlocV1 ARRAY 1 10 OF INT LOCVAs ARRAY 1 10 OF INT AT SMW100 Locv2 TIME AT MW100 The following calls then have the correct syntax SMW200 5 UnlocV1 2 LocV1 MW200 Locv2 t 3s Accessing Field Variables When accessing field variables ARRAY only literals and variables of the INT UINT DINT and UDINT data types are permitted in the index entry The index of an ARRAY element can be negative if the lower threshold of the range is negative Example Using field variables varl i 8 var2 otto 4 var3 var4 1 itj 5 4 35006144 07 2011 503 Structured Text ST Operators Introduction An operator is a symbol for e an arithmetic operation to be executed or e a logical operation to be executed or e a function edit call Operators are generic i e they adapt automatically to the data type of the operands Table of Operators Operators are executed in sequence according to priority see also Execution Sequence page 500 ST programming language operators Operator Meaning Order of possible operands Description rank Use of 1 highest Expression Brackets are used to alter the execution sequence Brackets of the operators Example If
357. f priority 1 processing types is determined e by the position of the input output module in the rack e by the position of the channel in the module The module with the lowest position number has the highest level of priority e Event processing triggered by timer is given priority level 2 The processing priority is determined by the lowest timer number Control The application program can globally validate or inhibit the various types of event processing by using the system bit S38 If one or more events occur while they are inhibited the associated processing is lost Two elementary functions of the language MASKEVT and UNMASKEVT used in the application program can also be used to mask or unmask event processing If one or more events occur while they are masked they are stored by the system and the associated processing is carried out after unmasking 35006144 07 2011 99 Program Structure Execution of TIMER type Event Processing Description Reference ITCNTRL Function TIMER type event processing is any process triggered by the ITCNTRL see Unity Pro System Block Library function This timer function periodically activates event processing every time the preset value is reached The following parameters are selected in the event processing properties Parameter Value Default value Role Time base 1 ms 10ms 100ms 1 sec 10ms Timer time base Note the time base of 1
358. f the jump symbol 35006144 07 2011 415 SFC Sequence Language 13 6 Link Link Introduction Links connect steps and transitions transitions and steps etc Properties of Links Links have the following properties e Links between objects of the same type step with step transition with transition etc are not possible e Links are possible between e unlinked object outputs and e unlinked or linked step inputs i e multiple step inputs can be linked e Overlapping links and other SFC objects step transition jump etc is not possible e Overlapping links and links is possible e Crossing links with links is possible and is indicated by a broken link e Links consist of vertical and horizontal segments e Standard signal flow in a sequence string is from top to bottom To create a loop however links can be made from below to a step above This applies to links from transitions parallel branches or alternative joints to a step In these cases the direction of the link is indicated with an arrow symbol e With links there is a difference between a String Jump see page 424 anda String Loop see page 425 416 35006144 07 2011 SFC Sequence Language 13 7 Branches and Merges Overview This section describes the branch and merge objects of the SFC sequence language What s in this Section This section contains the following topics
359. f variables can be accessed by the animation table These variables are generally necessary to the programming of the block but are of no interest to the user for example the result of an intermediate calculation etc NOTE Nested DFBs are declared as private variables of the parent DFB So their variables are also not accessible through programming but trough the animation table Variables that Can Be Accessed by the Application Program The only variables that can be accessed by the application program are public variables To make this possible the following syntax must be used in the program DFB_Name Variable_Name DFB_Name represents the name of the instance of the DFB used maximum of 32 characters Variable_Name represents the name of the public variable maximum of 8 characters Example Control Gain indicates the public variable Gain of the DFB instance called Control 566 35006144 07 2011 Description of DFBs Saving Public Variables Setting the S94 system bit to 1 causes the public variables you have modified to be saved by program or by adjustment in place of the initial values of these variables defined in the DFB instances Replacement is only possible if the backup attribute is correctly set for the variable CAUTION APPLICATION UPLOAD NOT SUCCESSFUL The bit S94 must not be set to 1 during an upload If the bit S94 is set to 1 upload then the upload may be impossible
360. f your application It includes one or more sections written in Ladder LD Instruction List IL Structured Text ST or Functional Block Diagram FBD language e input output parameters e public or private internal variables Function blocks can be used to structure and optimize your application They can be used whenever a program sequence is repeated several times in your application or to set a standard programming operation for example an algorithm that controls a motor incorporating local safety requirements By exporting then importing these blocks they can be used by a group of programmers working on a single application or in different applications Benefits of Using a DFB Using a DFB function block in an application enables you to e simplify the design and entry of the program e increase the legibility of the program e facilitate the debugging of the application all of the variables handled by the function block are identified on its interface e reduce the volume of code generated the code that corresponds to the DFB is only loaded once however many calls are made to the DFB in the program only the data corresponding to the instances are generated Comparison with a Subroutine Compared to a subroutine using a DFB makes it possible to e set processing parameters more easily e use internal variables that are specific to the DFB and therefore independent from the application e test its operation indepen
361. ferent categories dark gray Data types Function blocks Variables Definitions Data type families and their definitions Family Definition EDT Elementary data types such as Bool Int Byte Word Dword etc 35006144 07 2011 229 General Overview of Data Family Definition DDT Derived Data Types such as tables which contain elements of the same type e Bool tables EDT tables e tables of tables DDT tables e tables of structures DDT tables e structures which contain elements of the different types e Bool structures Word structures etc EDT structures e structures of tables structures of structures structures of tables structures DDT structures e Bool structures table structures etc EDT and DDT structures e structures concerning input output data IODDT structures e Structures containing variables that restore the status properties of an action or transition of a Sequential Function Chart EFB Elementary Function Blocks written in C language These comprise e input variables e internal variables output variables e a processing algorithm DFB Derived Function Blocks written in automation languages Structured Text Instruction List etc These comprise e input variables e internal variables output variables e a processing algorithm 230 35006144 07 2011 General Overview of Data Overview of Data Instances
362. ficant bits are unused The Time of Day type is entered as follows TOD lt Hour gt lt Minutes gt lt Seconds gt This table shows the lower upper limits in each field Field Limits Comment Hour 00 23 The left 0 is always displayed but can be omitted at the time of entry Minute 00 59 The left 0 is always displayed but can be omitted at the time of entry Second 00 59 The left 0 is always displayed but can be omitted at the time of entry Example TOD 23 59 45 An active step of an SFC is known as a token U UDINT is the abbreviation of Unsigned Double Integer format coded on 32 bits unsigned The lower and upper limits are as follows 0 to 2 to the power of 32 1 Example 0 4294967295 2 11111111111111111111111111111111 8 37777777777 LO FFFFFFFF UINT is the abbreviation of Unsigned integer format coded on 16 bits The lower and upper limits are as follows 0 to 2 to the power of 16 1 Example 0 65535 2 1111111111111111 8 177777 LO FFFF 692 35006144 07 2011 Glossary Unlocated variable An unlocated variable is a variable for which it is impossible to know its position in the PLC memory A variable which have no address assigned is said to be unlocated V Variable Memory entity of the type BOOL WORD DWORD etc whose contents can be modified by the program during execution Visualization window This window also called a watch window
363. fix 3 Time of day literals long prefix 4 Time of day literals short prefix 5 Date and time literals long prefix 5 Date and time literals short prefix 10 1 Data type BOOL 3 Data type INT 4 Data type DINT 7 Data type UINT 8 Data type UDINT 10 Data type REAL 12 Data type TIME 13 Data type DATE 14 Data type TIME OF DAY or TOD 15 Data type DATE AND TIME or DT 16 Data type STRING 17 Data type BYTE 18 Data type WORD 19 Data type DWORD 12 4 Array data types 5 Structured data types 14 4 Initialization of array data types 6 Initialization of derived structured data types 644 35006144 07 2011 IEC Compliance Table No Feature No Description of Feature 15 1 Input location Output location Memory location Single bit size X Prefix Single bit size No Prefix Word 16 bits size Double word 32 bits size Long quad word 64 bits size 17 Declaration of locations of symbolic variables Note 5 page 652 Array location assignment Note 5 page 652 Automatic memory allocation of symbolic variables Array declaration Note 11 page 653 Retentive array declaration Note 11 page 653 OI NID a BR Ww OO ON a B amp R OJIN Declaration for structured variables 18 Initialization of directly represented variables Note 11 page 653 Location and initial value assignment to symbolic variables Array location
364. form of CAL with a list of input parameters see page 483 call without formal parameter names e CAL and Load Save see page 484 the input parameter e Use of the input operators see page 484 e Function block DFB instances can be called multiple times other than instances of communication EFBs these can only be called once see Multiple Call of a Function Block Instance see page 486 Declaration Before calling a function block it must be declared in the variables editor Formal Form of CAL with a List of Input Parameters With this type of call call with formal parameter names the function block is called using a CAL instruction which follows the instance name of the function block and a bracketed list of actual parameter assignments to the formal parameters The assignment of the input formal parameter is made using the assignment and the output formal parameter is made using the gt assignment The sequence in which the input formal parameters and output formal parameters are enumerated is not significant The list of actual parameters may be continued immediately following a comma EN and ENO can be used for this type of call Function block call in the formal form of CAL with a list of input parameters Instance Name Formal Parameters Inputs Formal Parameters Outputs CAL MY_COUNT CU varl R reset PV 100 Q gt out CV gt current Actual Parameters Inputs Actual Parameters Outputs
365. frames sent manager SW151 Number of This word indicates the number of frames received by the Fipio 0 NBFRREC frames received channel manager SW152 Number of This word indicates the number of messages resent by the Fipio 0 NBRESENTMSG messages resent channel manager 35006144 07 2011 203 System Objects Description of System Word SW153 Detailed Description Description of system word SW153 Word Function Description Initial Symbol state SW153 List of Fipio channel Each bit is set to 1 by the system and reset to O by the user 0 FipioERRO manager faults See the list below Description of the Bits e bit 0 overrun station fault corresponds to loss of a MAC symbol while receiving this is linked to the receiver reacting too slowly e bit 1 message refusal fault indicates that a message with acknowledgment was refused or that it was not acknowledged in the first place receiving MAC e bit 2 interrupt variable refusal fault e bit 3 underrun station fault corresponds to the station being unable to respect transfer speed on the network e bit 4 physical layer fault corresponds to a prolonged transmission absence in the physical layer e bit 5 non echo fault corresponds to a fault which occurs when the transmitter is currently sending with a transmission current in the operating range and when at the same time there is detection of an absence of signal on
366. function block DFB has no internal value or it is not required for further processing In this case memory is saved by calling the same function block DFB instance more than once since the code for the function block DFB is only loaded once The function block DFB is then handled like a Function e f the function block DFB has an internal value and this is supposed to influence various program segments for example the value of a counter should be increased in different parts of the program In this case calling the same function block DFB means that temporary results do not have to be saved for further processing in another part of the program 35006144 07 2011 541 Structured Text ST EN and ENO With all function blocks DFBs an EN input and an ENO output can be configured If the value of EN is equal to 0 when the function block DFB is called the algorithms defined by the function block DFB are not executed and ENO is set to 0 If the value of EN is equal to 1 when the function block DFB is invoked the algorithms which are defined by the function block DFB will be executed After the algorithms have been executed successfully the value of ENO is set to 1 If an error occurred while executing the algorithms ENO is set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If ENO is se
367. g the AND function Label LABEL Labels jump targets are indicated as text with a colon at the end This text is limited to 32 characters and must be unique within the entire section The text must conform to general naming conventions Jump labels can only be placed between the first two grid points on the left edge of the section Note Jump labels may not cut through networks i e an assumed line from the jump label to the right edge of the section may not be crossed by any object This is also valid for links Return RETURN objects can not be used in the main program lt RETURN gt e Ina DFB a RETURN object forces the return to the program which called the DFB e The rest of the DFB section containing the RETURN object is not executed e The next sections of the DFB are not executed The program which called the DFB will be executed after return from the DFB If the DFB is called by another DFB the calling DFB will be executed after return e Ina SR a RETURN object forces the return to the program which called the SR e The rest of the SR containing the RETURN object is not executed The program which called the SR will be executed after return from the SR 35006144 07 2011 335 Function Block Language FBD Link Description Links are vertical and horizontal connections between FFBs OR X FFB Input AND vari gt FFB Output Representation The link coordinates are identified by a fill
368. generated name can be modified for clarification The instance name max 32 characters must be unique throughout the project and is not case sensitive The instance name must conform to general naming conventions NOTE To conform to IEC61131 3 only letters are permitted as the first character of the name If you want to use a numeral as your first character however this must be enabled explicitly Elementary Function Block CTU 1 1 CTU EN ENO 1 CTU Que R RV CV 35006144 07 2011 355 Ladder Diagram LD DFB Derived function blocks DFBs have the same properties as elementary function blocks The user can create them in the programming languages FBD LD IL and or ST The only difference to elementary function blocks is that the derived function block is represented as a frame with double vertical lines Derived Function Block DFB_EXAMP 1 1 DFB_EXAMP EN ENO INI OUT IN2 IN3 OUT2 Procedure Procedures are functions viewed technically The only difference to elementary functions is that procedures can occupy more than one output and they support data type VAR_IN_ OUT To the eye procedures are no different than elementary functions Procedures are a supplement to IEC 61131 3 and must be enabled explicitly Procedure PROC EXAMP EN ENO I Ni OUTI IN2 OUT2 I01 IOl 356 350061
369. ger Types 244 The Time Type 246 236 35006144 07 2011 Data Types Overview of Data Types in Binary Format Introduction The data types in Binary format belong to the EDT Elementary data type family which includes single rather than derived data types tables structures function blocks Reminder Concerning Binary Format A data item in binary format is made up of one or more bits where each of these is represented by one of the base 2 figures 0 or 1 The scale of the data item depends on the number of bit s of which it is made Example l 1 bit Format 7 Bit position 0 0 1 0 Of 1 1 1 0 8 bit Format Most significant Least significant nibble nibble A data item can be e signed Here the highest ranking bit is the sign bit e 0 indicates a positive value e 1 indicates a negative value The range of values is 2 Bits 1 2 Bits 1 _ 1 e unsigned Here all the bits represent the value The range of values is 0 23 1 Bits number of bits format 35006144 07 2011 237 Data Types Data Types in Binary Format List of data types Type Designation Format bits Default value BOOL Boolean 8 0 False EBOOL Boolean with forcing and edge 8 0 False detection INT Integer 16 0 DINT Double integer 32 0 UINT Unsigned integer 16 0 UDINT Unsigned double integer 32 0 TIME Unsigned double integer 32 T 0s
370. gnal set for every start of the PLC is needed S21 should be used instead YES YES YES except for safety PLCs 150 35006144 07 2011 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S4 Timebase An internal timer regulates the change in YES YES YES TB10MS 10 ms status of this bit except It is asynchronous in relation to the PLC for safety cycle PLCs Graph Sms 5ms This bit is not available on Quantum safety PLCs S5 Timebase Idem 84 YES YES YES TB100MS 100 ms except for safety PLCs S6 Time Idem S4 YES YES YES TB1SEC base 1s except for safety PLCs S7 Time Idem S4 YES YES YES TB1MIN base except 1 min for safety PLCs 35006144 07 2011 151 System Objects Description of System Bits S9 to S13 Detailed Description Description of system bits S9 to S13 Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S9 OUTDIS Outputs set to the fallback position on all buses Normally at 0 this bit is set to 1 by the program or the terminal e set to 1 sets the bit to 0 or maintains the current value depending on the chosen configuration X bus Fipio AS i etc e set to 0 outputs are updated normally Note The system bit acts directly on the physical o
371. gram is being written e Incorrect functions and function blocks are displayed in blue e Unknown words e g undeclared variables or unsuitable data types are marked with a red wavy line e Brief description of errors in the Quickinfo Tooltip Information for variables and pins can be displayed in a Quickinfo Tooltip e type name address and comment of a variable expression e type name and comment of an FFB pin Tabular display of FFBs Actual parameters can be entered and displayed as symbols or topological addresses Different zoom factors Tracking of links Optimization of link routes Display of inspection windows 44 35006144 07 2011 Ladder Diagram LD Language Introduction The LD editor is used for graphical ladder diagram programming according to IEC 61131 3 Representation Representation of an LD section Left Power Rail Objects Topological Right Power Rail z Addresses J N IX1 5 6 IX1 5 5 QX2 1 KS a IX1 5 6 rs Execution number Coil Inspection window Variable Contact Function NS a 8 IX1 5 6 XOR a kA Error EN ENO J Q2 Vax INI OUT Q3 E1061 Undefined Symbol Varx IN2 4 Tooltip The objects of the LD programming language help to divide a section into a number of Contacts Coils Elementary Functions EFs Elementary Function Blocks EFBs Derived Function Blocks DFBs P
372. h function procedure blocks that have one variable and one link as output parameters FUNC PROC 1 FUNC PROC 2 EN ENO EN ENO m OUT OUTI INI OUT m2 IN2 If FU disabled EF available since Unity Pro 4 1 EN of FUNC_PROC_1 is set to 0 the value of the link on output OUT of NC_PROC_1 depends on the project setting Maintain output links on 35006144 07 2011 Function Block Language FBD If this project setting is set to 0 the value of the link is set to O If this project setting is set to 1 the link maintains the old value it had during the last correctly executed cycle Please refer to Maintain output links on disabled EF see Unity Pro Operating Modes The OUT 1 variable on the same pin either retains its previous status or can be changed externally without influencing the link The variable and the link are saved independently of each other The output behavior of the FFBs does not depend on whether the FFBs are invoked without EN ENO or with EN 1 NOTE For disabled function blocks EN 0 with an internal time function e g function block DELAY time seems to keep running since it is calculated with the help of a system clock and is therefore independent of the program cycle and the release of the block VAR_IN_OUT Variable FFBs are often used to read a variable at an input input variables to process it and
373. he Configurator window 1 140 CPU 671 60 01 00 ofl Local Quantum Bus El Analog 9 40 AC1 030 00 01 00 140 ACI 040 00 01 00 40 ACO 020 00 01 00 40 ACO 130 00 01 00 40 All 330 00 01 00 40 All 330 10 01 00 40 AIO 330 00 01 00 40 AMM 090 00 01 00 40 ARI 030 10 01 00 40 ATI 030 00 01 00 40 Av 030 00 01 00 40 AVO 020 00 01 00 Communication 140 CRP 811 00 01 00 40 CRP 93X00 01 00 40 EIA 921 00 01 00 40 NOE 211 00 01 00 40 NOE 251 00 01 00 Copy Insert Cut Copy nsert Delete Module Open Module Move Module lew Device Power Supply and I O Budget 4 H One of the following shortcut menus is called depending on the position of the mouse pointer e Mouse pointer on the background allows among others e Change CPU e Selection of different Zoom factors e Mouse pointer on the module allows among others e Access to editor functions delete copy move e Open the module configuration for defining the module specific parameters e Show the I O properties and the total current e Mouse pointer on an empty slot allows among others e Insert a module from the catalog e Insert a previously copied module including its defined properties 35006144 07 2011 29 Presentation Module Configuration Module Properties The modul
374. he bit is forced e if set to 1 by the user write bits request on forced bits do not change their value There is no error in the response of the request As other accesses the history bit is always updated whatever the forcing state 164 35006144 07 2011 System Objects Description of System Bits S80 to S96 Detailed Description Description of system bits S80 to S96 Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S80 RSTMSGCNT Reset message counters Normally set to 0 this bit can be set to 1 by the user to reset the message counters SW80 to SWB86 0 YES YES YES S82 MB PCMCIA polling adjust This bit is used to change the request exchange mode with MB MBP100 PCMCIA By default value 0 the system sends a request to the card and will poll for a reponse in the next Mast cycle This mode is recommended for small Mast duration When set to 1 the system sends a request to the card and waits for a response This mode is recommended for large Mast duration NO YES NO S90 COMRFSH Refresh common words Normally set to 0 this bit is set to 1 on receiving common words from another network station This bit can be set to 0 by the program or the terminal to check the common words exchange cycle NO YES NO S91 LCKASYNREQ Lock asynchro nous request
375. he current SFC section using the qualifier R Note If an action variable is modified outside of the current SFC section it may no longer reflect the action s activation state Section_1 Section_2 a l IF S2 x true THEN cee S A1 A1 false END_IF a _1_2 roa _1_3 Al S11 S 12 s1 3 Note A maximum of 100 actions are permitted using the s qualifier per SFC Section 408 35006144 07 2011 SFC Sequence Language Qualifier Meaning Description L Time limited If the step is active the action is also active After the process of the time duration defined manually for the action the action returns to 0 even if the step is still active The action also becomes 0 if the step is inactive Note For this qualifier an additional duration of data type TIME must be defined Delayed If the step is active the internal timer is started and the action becomes 1 after the process of the time duration which was defined manually for the action If the step becomes inactive after that the action becomes inactive as well If the step becomes inactive before the internal time has elapsed then the action does not become active Note For this qualifier an additional duration of data type TIME must be defined Pulse If the step becomes active the action becomes 1 and this remains for one program cycle independent of whether or not the step remains active DS Delayed and saved If the ste
376. her the increment is positive or negative FOR i 10 TO 10 DO Unique Loop C COS B END FOR FOR i 10 TO 10 BY 1 DO Unique Loop C C COS B ND_FOR 518 35006144 07 2011 Structured Text ST Example Critical Loops If the increment is j gt 0 in the example the instruction is executed If j lt is 0 the instructions are not executed because the situation initial value lt only allows the end value to be incremented by 0 If j 0 the instructions are executed and an endless loop is created as the end value will never be reached with an increment of 0 FOR i 1 TO 10 BY j DO C C COS B END FOR 35006144 07 2011 519 Structured Text ST Repeat Instruction WHILE DO END_WHILE Description The WHILE instruction has the effect that a sequence of instructions will be executed repeatedly until its related Boolean expression is 0 false If the expression is false right from the start the group of instructions will not be executed at all The DO instruction identifies the end of the repeat definition and the beginning of the instruction s The occurrence may be terminated early using the EXIT The END WHILE instruction marks the end of the instruction s In the following cases WHILE may not be used as it can created an endless loop which causes the program to crash e WHILE may not be used for synchronization between processes
377. here is only a one to one mapping of program instance to task The textual format is replaced by a property dialog The textual format is replaced by a property dialog All variables are retentive RETAIN qualifier implicitly assumed in variable declarations The textual format is replaced by the project browser representation Using Mask IT instruction the user is able to get a non preemptive behaviour You will find MASKEVT Global EVT masking and UNMASKEVT Global EVT unmasking in the System functions of the libset By default the multi task system is preemptive 35006144 07 2011 653 IEC Compliance IL language elements IL language elements IEC compliance table for IL language elements Table No Feature No Feature description 51b 1 Parenthesized expression beginning with explicit operator 51b 2 Parenthesized expression short form 52 1 LD operator with modifier N 2 ST operator with modifier N 3 S R operator 4 AND operator with modifiers N 6 OR operator with modifiers N 7 XOR operator with modifiers N 7a NOT operator 8 ADD operator with modifier 9 SUB operator with modifier 10 MUL operator with modifier 11 DIV operator with modifier 11a MOD operator with modifier 12 GT operator with modifier 13 GE operator with modifier
378. hexadecimal 16 e octal 8 e binary 2 Data Types in Bit String Format Three data types Type Scale Default value bits BYTE 8 WORD 16 DWORD 32 262 35006144 07 2011 Data Types Bit String Types The Byte Type The Word Type The Byte type is coded in 8 bit format This table shows the lower upper limits of the bases which can be used Base Lower limit Upper limit Hexadecimal 16 0 16 FF Octal 8 0 8 377 Binary 2 0 2 11111111 Representation examples Data content Representation in one of the bases 00001000 16 8 00110011 8 63 00110011 2 110011 The Word type is coded in 16 bit format This table shows the lower upper limits of the bases which can be used Base Lower limit Upper limit Hexadecimal 16 0 16 FFFF Octal 8 0 84177777 Binary 2 0 24 1111111111111111 Representation examples Data content Representation in one of the bases 0000000011010011 16 D3 1010101010101010 8 125252 0000000011010011 2 11010011 35006144 07 2011 263 Data Types the Dword Type The Dword type is coded in 32 bit format This table shows the lower upper limits of the bases which can be used Base Lower limit Upper limit Hexadecimal 16 0 16 FFFFFFFF Octal 8 0 8437777777777 Binary 2 0 2 11111111111111111111111111111111 Representation examples
379. hin this SFC section including all of their macro sections Action sections which are assigned an qualifier with duration can only be activated one time Action sections belong to the SFC section that they were defined in If the respective SFC section is deleted then all action sections of this SFC section are also deleted automatically Action sections can be called exclusively from actions 35006144 07 2011 407 SFC Sequence Language Qualifier Introduction Each action that is linked to a step must have a qualifier which defines the control for that action Available Qualifiers The following qualifiers are available Qualifier Meaning Description N None Not Stored If the step is active then action is 1 and if the step is inactive the action is 0 R Overriding The action which is set in another step with the qualifier S is reset The activation of reset any action can also be prevented Note Qualifiers are automatically declared as unbuffered This means that the value is reset to 0 after stop and cold restart e g when voltage is on off Should a buffered output be required please use the RS or SR function block from the standard block library S Set saved The set action remains active even when the associated step becomes inactive The action only becomes inactive when it is reset in another step of t
380. hived Application Files STA With the STA file it is possible to reuse the current built project with the new Unity Pro version installed on the computer e Unity Pro Application Exchange Files XEF The XEF file must be used if the project has been built 35006144 07 2011 27 Presentation Comparative File Types The following table gives a summary of the three files types File Types STU STA XEF Binary applications Yes Yes No Source applications Yes Yes Yes Internal database Yes No No Comparative file size 10 see 1 0 03 see 1 3 Comparative time to save 10 1 6 6 Comparative time to open 1 10 10 Connection to the PLC in Equal Possible Possible Not possible see 2 Online mode File backup Possible Possible see 3 Possible 1 Compressed files 2 The project needs to be first uploaded into the PLC 3 The project can be saved only if it has been generated NOTE The values in the table represent a ratio between file types where the STU value is the reference 28 35006144 07 2011 Presentation Configurator Configurator Window The configurator window is split into two windows Bus Local Quantum Bus e Catalog window A module can be selected from this window and directly inserted in the graphical representation of the PLC configuration by dragging and dropping e Graphical representation of the PLC configuration Representation of t
381. hown in the following table Table of formal parameter types Parameter type EDT STRING ARRAY_ ANY_ARRAY IODDT STRUCT FB ANY EFB Input z z EFB VAR_IN_OUT EFB Output 7 DFB Input z DFB VAR_IN_OUT DFB Output j EF Input a EF VAR_IN_OUT EF Output Procedure Input F 328 35006144 07 2011 Function Block Language FBD Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Procedure VAR_IN_OUT Procedure Output a k Actual parameter required Actual parameter not required not applicable Public Variables FFBs that use actual parameters on the inputs that have not yet received any value assignment work with the initial values of these actual parameters If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is used If a formal parameter is not assigned a value and the function block DFB is instanced more than once then the subsequent instances are run with the old value NOTE Unassigned data structures will always be initialized with value 0 initial values can not be
382. ht from the application program sections of the application or section belonging to the DFBs see Definition of the function block type interface and internal variables see page 280 e an access right from communication requests e a public variables backup flag Authorized Data Types for an Element Belonging to a DFB The authorized data types are Element of the DFB EDT types DDT types ANY Function block types IODDT Unnamed ANY_ARRAY other tables Input data Yes No Yes Yes Yes Yes 2 No Input output data Yes 1 Yes Yes Yes Yes Yes 2 No Output data Yes No Yes No Yes Yes 2 3 No Public data Yes No Yes No Yes No No Private data Yes No Yes No Yes No Yes 1 not authorized for the EBOOL type static data used on Quantum PLCs 2 not authorized for BOOL and EBOOL type data 3 must be completed during the execution of the DFB and not usable outside the DFB 282 35006144 07 2011 Data Types Authorized Data Types for an Element Belonging to an EFB The authorized data types are Element of the EFB EDT DDT types ANY Function types block types IODDT Unnamed ANY_ARRAY other tables Input data Yes No No Yes Yes Yes 1 No Input output data Yes Yes No Yes Yes Yes 1 No Output data Yes No No No Yes Yes 1 2 No Public data Yes No No No Yes No No Private data Yes No No No Yes No Yes
383. ic System Words 222 35006144 07 2011 147 System Objects 6 1 System Bits Subject of this Section This section describes the system bits A WARNING UNEXPECTED APPLICATION BEHAVIOR Do not use system objects Si SWi as variable when they are not documented Failure to follow these instructions can result in death serious injury or equipment damage What s in this Section This section contains the following topics Topic Page System Bit Introduction 149 Description of System Bits SO to S7 150 Description of System Bits S9 to S13 152 Description of System Bits S15 to S21 154 Description of System Bits S30 to S59 157 Description of System Bits S65 to S79 160 Description of System Bits S80 to S96 165 Description of System Bits S100 to S123 168 148 35006144 07 2011 System Objects System Bit Introduction General The Modicon M340 Premium Atrium and Quantum PLCs use Si system bits which indicate the state of the PLC or they can be used to control how it operates These bits can be tested in the user program to detect any functional development requiring a set processing procedure Some of these bits must be reset to their initial or normal state by the program However the system bits that are reset to their initial or normal state by the system must not be reset by the program or by the terminal 35006144 07 2011
384. ical adress for input output modules e Global adress M340 Premium or State RAM Quantum Located data instances are defined using data types belonging to one of the following families e Elementary Data Types EDT e Derived Data Types DDT e Input Output Derived Data Types IODDT The list below shows the datas instances that should be located on a MW KW adresses type e INT e UINT WORD e BYTE e DATE e DT e e e e e STRING TIME TOD DDT structure type Table EBOOL Or EBOOL tables datas instances have to be located on a M Q or SI adresses type IODDT datas instances type have to be located by CH module channel type NOTE Double type instances of located data DINT DUNIT DWORD or floating REAL should be located by Mw KW adresses type Only I O objects instances type localization is possible with sMD lt i gt SKD lt i gt SQD SID 3MF lt i gt SKF lt i gt SOF SIF type by using their topological address for example MD0 6 0 11 MFO0 6 0 31 NOTE For Modicon M340 the index i value must be even see page 273 for double type instances of located data sMw and kw 35006144 07 2011 295 Data Instances Examples Var_1 EBOOL AT M100 yInstance of EDT family of Boolean type with 1 byte memory allocation predefined in M100 Var_2 BOOL AT 12 1 0 ERR yInstance of EDT family of Boolean type with 1 byte memory allocation predefined in 12
385. ics Topic Page Calling Elementary Functions 529 Call Elementary Function Block and Derived Function Block 535 Procedures 544 528 35006144 07 2011 Structured Text ST Calling Elementary Functions Elementary Functions Elementary functions are provided in the form of libraries The logic of the functions is created in the programming language C and may not be modified in the ST editor Functions have no internal states If the input values are the same the value at the output is the same for all executions of the function For example the addition of two values gives the same result at every execution Some elementary functions can be extended to more than 2 inputs Elementary functions only have one return value Output Parameters Inputs and one output are required to transfer values to or from a function These are called formal parameters The current process states are transferred to the formal parameters These are called actual parameters The following can be used as actual parameters for function inputs e Variable Address Literal ST Expression The following can be used as actual parameters for function outputs e Variable e Address The data type of the actual parameters must match the data type of the formal parameters The only exceptions are generic formal parameters whose data type is determined by the actual parameter When dealing with generic ANY BIT formal param
386. ifferent possibilities for assigning parameters in the different programming languages Parameter Type Assignment of the parameter 1 Assignment Inputs EDT 2 Connected value object or Optional 3 expression BOOL Connected value object or Optional expression DDT Connected value or object Compulsory ANY_ Connected or object Compulsory ANY_ARRAY Connected or object Compulsory 35006144 07 2011 581 Use of DFBs Parameter Type Assignment of the parameter 1 Assignment Inputs outputs EDT Connected or object Compulsory DDT Connected or object Compulsory IODDT Connected or object Compulsory ANY Connected or object Compulsory ANY_ARRAY _ Connected or object Compulsory Outputs EDT Connected or object Optional DDT Connected or object Optional ANY Connected or object Compulsory ANY_ARRAY Connected or object Optional 1 Connected in Ladder LD or Function Block Diagram FBD language Value or object in Instruction List IL or Structured Text ST language 2 Except BOOL type parameters 3 Except for STRING type parameters that is compulsory Rules when using DFBs with arrays A WARNING UNEXPECTED EQUIPMENT OPERATION Check the size of arrays when copying from source into target arrays using DFBs Failure to follow these instructions can result in death serious injury or equipment damage Whe
387. ificities of Memory Cards Three types of memory card are offered e application these cards contain the application program The cards on offer use either RAM or Flash EPROM technology e application file storage in addition to the program these cards also contain a zone which can be used to backup restore data using the program The cards on offer use either RAM or Flash EPROM technology e file storage these cards can be used to backup restore data using the program These cards use SRAM technology 35006144 07 2011 117 Memory Structure The following diagram describes the memory structure with an application and file storage card Internal Unlocated data External memory card NOTE On processors with 2 memory card slots the lower slot is reserved for the file storage function 118 35006144 07 2011 Memory Structure Detailed Description of the Memory Zones Unlocated Data Located Data User Program Operating System Application Backup This zone contains unlocated data e Boolean and numerical data e EFB and DFB This zone contains located data State Ram Address Object address Data use OXXXxx Qr m c d Mi output module bits and internal bits 1XXXXX lr m c d li input module bits SXXXXX Wr m c d IWi input register words of input output modules 4XXXXX QWr m c d MWi_ output words of input output modules and internal words
388. imum describing its role The authorized characters correspond to the ASCII codes 32 to 255 270 35006144 07 2011 Data Types e information such as e type version number e date of the last modification of the code or of the internal variables or of the interface variables e an optional descriptive file 32767 characters describing the block function and its different modifications NOTE The total size of a table or of a structure does not exceed 64 Kbytes Examples Definition of types COORD X INT Y INT 7COORD type structure SEGMENT Origin COORD Destination COORD 7 SEGMENT type structure containing 2 COORD type structures OUTLINE ARRAY 0 99 OF SEGMENT 7 OUTLINE type table containing 100 SEGMENT type structures DRAW Color INT Anchor COORD Pattern ARRAY 0 15 0 15 OF WORD Contour OUTLINE Access to the data of a DRAW type structure instance Cartoon DRAW Instance of DRAW type structure Cartoon Pattern 15 15 yAccess to last data item in the Pattern table of the Cartoon structure Cartoon Contour 0 Origin X 7Access to data item X of the COORD structure belonging to the first SEGMENT structure of the Contour table 35006144 07 2011 271 Data Types DDT Mapping Rules At a Glance The DDTs are stored in the PLC s memory in the order in which its elements are declared However the following rules apply Principle for Premium and Quantum The storage princi
389. inked the result with an uneven number of 1 states is 1 and is 0 with an even number of 1 states Example In the example F is 1 if 1 or 3 operands are 1 F is 0 if 0 2 or 4 operands are 1 LDA XOR B XOR C XOR D XOR E ST F NOT Logical Accumulator The accumulator content is inverted bit by bit with negation contents of data NOT complement types BOOL BYTE Example In the example B is 1 if Ais 0 and B is O WORD or DWORD if A is 1 LD A NOT STB Arithmetic Operators IL programming language Arithmetic operators Operator Modifier Meaning Operands Description ADD Addition Literal variable direct address of data types INT DINT UINT UDINT REAL Or TIME With ADD the value of the operand is added to the value of the accumulator contents Example The example corresponds to the formulaD A B C LDA ADD B ADD C ST D 462 35006144 07 2011 Instruction List IL Operator Modifier Meaning Operands Description SUB Subtraction Literal variable With SUB the value of the operand is subtracted direct address of from the accumulator content data types INT Example The example corresponds to the DINT UINT UDINT formulaD A B C REAL or TIME LDA SUB B SUB C ST D MUL Multiplication Literal variable The MUL operator multiplies the content of the direct address of accumulator by the value of the operand data
390. ion Time The minimum supervision time sets the minimum time for which the step should normally be active If the step becomes inactive before this time has elapsed an error message is generated In animation mode the error is additionally identified by a colored outline yellow around the step object If no minimum supervision time or a minimum supervision time of 0 is entered step supervision is not carried out The error status remains the same until the step becomes active again e Maximum Supervision Time The maximum supervision time specifies the maximum time in which the step should normally be active If the step is still active after this time has elapsed an error message is generated In animation mode the error is additionally identified by a colored outline pink around the step object If no maximum supervision time or a maximum supervision time of 0 is entered step supervision is not carried out The error status remains the same until the step becomes inactive e Delay Time The delay time step dwell time sets the minimum time for which the step must be active NOTE The defined times apply for the step only not for the allocated actions Individual times can be defined for these Setting the Step Times The following formula is to be used for defining determining these times Delay time lt minimum supervision time lt maximum supervision time There are 2 ways to assign the defined values to a step e Asa duration liter
391. ion contains a general overview of the IL instruction list What s in this Section This section contains the following topics Topic Page General Information about the IL Instruction List 451 Operands 454 Modifier 457 Operators 459 Subroutine Call 468 Labels and Jumps 469 Comment 471 450 35006144 07 2011 Instruction List IL General Information about the IL Instruction List Introduction Using the Instruction list programming language IL you can call function blocks and functions conditionally or unconditionally perform assignments and make jumps conditionally or unconditionally within a section Instructions An instruction list is composed of a series of instructions Each instruction begins on a new line and consists of e an Operator see page 459 e if necessary with a Modifier see page 457 and e if necessary one or more Operands see page 454 Should several operands be used they are separated by commas It is possible for a Label see page 469 to be in front of the instruction This label is followed by a colon A Comment see page 471 can follow the instruction Example Label Operators Operands START LD A Key 1 ANDN B and not key 2 ST a Ventilator on Modifier Comments Structure of the Programming Language IL is a so called accumulator orientated language i e each instruction uses or alters the current content of the accumulator a form
392. ion inputs e Variable e Address e Literal The following can be used as actual parameters for function outputs e Variable e Address The data type of the actual parameters must match the data type of the formal parameters The only exceptions are generic formal parameters whose data type is determined by the actual parameter When dealing with generic ANY BIT formal parameters actual parameters of the INT or DINT not UINT and UDINT data types can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed D AnyBitParam IntVarl AnyBitParam2 IntVar2 A Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 n this case AND_INT must be used AND ARRAY WORD ArrayInt n this case an explicit type conversion must be carried out using INT ARR TO WORD ARR 35006144 07 2011 473 Instruction List IL Not all formal parameters must be assigned a value for formal calls Which formal parameter types must be assigned a value can be seen in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY Input VAR_IN_OUT Output B Actual parameter required Actual parameter not required not applicable If no value is assigned to a formal parameter the initial value will be used when the function is ex
393. iring a very short response time in relation to the event The number of event processing tasks see page 67 that can be programmed depends on the type of processor Structure An event processing task is monosectional and made up of a single unconditioned section It is programmed in either LD FBD IL or ST language Two types of event are offered e O event for events coming from input output modules e TIMER event for events coming from event timers Execution The execution of an event processing task is asynchronous The occurrence of an event reroutes the application program to the processing task associated with the input output channel or event timer which caused the event Control The following system bits and words can be used to control event processing tasks during the execution of the program System objects Description S38 Activation of event processing S39 Saturation of the event call management stack SSwW48 Number of IO events and telegram processing tasks executed NOTE TELEGRAM is available only for PREMIUM not on Quantum neither M340 SSW75 Number of timer type events in the queue 35006144 07 2011 75 Program Structure 3 2 Description of Sections and Subroutines Aim of this Section This section describes the sections and the subroutines that make up a task What s in this Section This section contains the following topics
394. is subtracted from the value of the first operand Data Type INT Example In the example OUT is 6 if IN1 is 10 and DINT UINT IN2 is 4 UDINT REAL or OUT IN1 IN2 TIME 35006144 07 2011 505 Structured Text ST Operator Meaning Order of possible operands Description rank lt Less than 7 Expression Literal The value of the first operand is compared with the comparison Variable Address of value of the second using lt If the value of the first Data Type BOOL operand is less than the value of the second the BYTE INT DINT result is a Boolean 1 If the value of the first UINT UDINT operand is greater than or equal to the value of the REAL TIME WORD second the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is less DT DATE or TOD than 10 and is otherwise 0 OUT IN1 lt 10 gt Greater than 7 Expression Literal The value of the first operand is compared with the comparison Variable Address of value of the second using gt If the value of the first Data Type BOOL operand is greater than the value of the second BYTE INT DINT the result is a Boolean 1 If the value of the first UINT UDINT operand is less than or equal to the value of the REAL TIME WORD second the result is a Boolean 0 DWORD STRING Example In the example OUT is 1 if IN1 is greater DT DATE or TOD than 10 and is 0 if IN1 is less than 0 OU
395. is type of memory Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 167 System Objects Description of System Bits S100 to S123 Detailed Description Description of system bits S100 to S123 Bit Function Description Initial Modicon Premium Quantum SYMBOL state M340 Atrium S100 Protocol on This bit is set to 0 or 1 by the system NO YES NO PROTTERINL terminal according to the state of the INL DPT shunt port on the console e ifthe shunt is missing S100 0 then the master Uni Telway protocol is used e if the shunt is present S100 1 then the protocol used is the one indicated by the application configuration S117 Detected Normally set to 1 this bit is set to O by the No No YES ERIOERR RIO error system when a detected error occurs in a on Ethernet device on the Ethernet RIO I O network This bit is reset to 1 by the system when all the detected errors disappear S118 General Normally set to 1 this bit is set to O by the YES YES YES REMIOERR Remote I O system when a fault occurs on a device fault connected to the RIO Fipio for Premium or Drop S908 for Quantum remote input output bus This bit is reset to 1 by the system when the fault disappears This bit is not updated if an error occurs on the other buses DIO ProfiBus ASI S119 General in Normally set to 1 this bit is set to 0 by the YES Y
396. ith My_Var 2 During compilation of the program a check verifies that e the index is not negative e the index does not exceed the space in the memory allocated to each of these three data types 314 35006144 07 2011 Data References Word Extract Bits Byte Extract Bits It is possible to extract one of the 16 bits of single words MW SW KW IW QW The address of the instance is completed with the rank of the extracted bit lt j gt WORD lt i gt lt j gt Examples MW10 4 Bit No 4 of word MW10 SW8 4 Bit No 4 of system word Sw8s KW100 14 Bit No 14 of constant KW100 QWO 5 1 0 10 Bit No 10 of word 0 of channel 1 of output module 5 of rack 0 It is possible to extract one of the bits of a byte The address of the extracted bit is accessible via e The name of the corresponding byte e The rank defining its position in the byte a number between 0 and 7 Example MyByte is a variable of type BYTE MyByte i is a valid BOOL if 0 lt lt 7 MyByte 0 MyByte 3 and MyByte 7 are valid BOOL MyByte 8 is invalid 35006144 07 2011 315 Data References Bit and Word Tables OBJECT lt i gt L Presentation of bit tables These are a series of adjacent objects bits or words of the same type and of a defined length Type Address Write access Discrete O input bits lx i L No Discrete I O output bits QXx i L Yes Internal bits Mi L Yes Pr
397. ith the satisfied transition is activated This results in a left to right priority for branches If none of the transitions are switched the step that is currently set remains set Alternative Strings Then then a sequence is run froms_5 10 to s_5 11 S_5_10 a b S_5_11 S _5 12 os Pas c d S_5_13 If If S_5 10 is active and transition condition a is true independent of b If S_5 10 is active and transition condition b is true and a is false then a sequence is run from s_5 10 to s_5_12 35006144 07 2011 423 SFC Sequence Language Sequence Jumps and Sequence Loops Sequence Jump A sequence jump is a special type of alternative branch that can be used to skip several steps of a sequence A sequence jump can be made with jumps or with links Sequence jump _5_10 a al e a b e 511 S_5_13 5 14 a c f s_5_12 S 51 3 x d gt _5_13 511 514 If Then If transition condition a is true then a sequence is run from s 5 10toS 5 11 S 5 12 and 6 5 13 If transition condition b is true then a jump is made from s_5 10 directlytos 5 13 If transition condition e is true then a sequence isrunfroms 5 10toS 5 14ands_5 13
398. itial value has been defined For MW words the values can be retained on cold restart if the Reset of MW on cold restart option is unchecked in the Configuration screen of the processor e the initialization of elementary function blocks on the basis of initial data e the initialization of data declared in the DFBs either to 0 or to the initial value declared in the DFB type e the initialization of system bits and words the deactivation of tasks other than the master task until the end of the first master task cycle the positioning of charts to initial steps the cancellation of any forcing the initialization of message and event queues the sending of configuration parameters to all discrete input output modules and application specific modules 3 For this first restart cycle the system does the following e relaunches the master task with the S0 cold restart and S13 first cycle in RUN bits set to 1 and the SW10 word detection of a cold restart during the first task cycle is set to 0 e resets the S0 and S13 bits to 0 and sets each bit of the word SW10 to 1 at the end of this first cycle of the master task e activates the fast task and event processing at the end of the first cycle of the master task Processing a Cold Start by Program It is advisable to test the bit SW10 0 to detect a cold start and start processing specific to this cold start NOTE It is possible to test the bit SO if the para
399. ition condition linked through transition name using LD language 7b Transition condition linked through transition name using FBD language 7c Transition condition linked through transition name using IL language 7d Transition condition linked through transition name using ST language 42 1 Any Boolean variable declared in a VAR or VAR_OUTPUT block or their graphical equivalents can be an action 2l Graphical declaration of action in LD language 2f Graphical declaration of action in FBD language 3s Textual declaration of action in ST language 3i Textual declaration of action in IL language 43 1 Action block physically or logically adjacent to the step Note 7 page 653 2 Concatenated action blocks physically or logically adjacent to the step Note 8 page 653 44 1 Action qualifier in action block supported 2 Action name in action block supported 45 1 None no qualifier 2 Qualifier N 3 Qualifier R 4 Qualifier s 5 Qualifier L 6 Qualifier D 7 Qualifier P 9 Qualifier Ds 11 Qualifier P1 12 Qualifier PO 45a 2 Action control without final scan 35006144 07 2011 649 IEC Compliance Table No Feature No Description of Feature 46 1 Single sequence 2a Divergence of sequence selection left to right priority of transition evaluations Convergence of sequence selection 4 Simultaneous sequences divergence and convergence 5a Sequence skip left to right priority of transiti
400. ivate variables are a supplement to IEC 61131 3 Programming Notes Attention should be paid to the following programming notes e FFBs are only executed if the input EN 1 or if the input EN is grayed out see also EN and ENO see page 331 e Boolean inputs and outputs can be inverted Special conditions apply when using VAR_IN_OUT variables see page 333 e Function block DFB instances can be called multiple times see also Multiple Function Block Instance Call see page 331 330 35006144 07 2011 Function Block Language FBD Multiple Function Block Instance Call Function block DFB instances can be called more than once other than instances from communication EFBs and function blocks DFBs with an ANY output but no ANY input these can only be called once Calling the same function block DFB instance more than once makes sense for example in the following cases e f the function block DFB has no internal value or it is not required for further processing In this case memory is saved by calling the same function block DFB instance more than once since the code for the function block DFB is only loaded once The function block DFB is then handled like a Function e f the function block DFB has an internal value and this is supposed to influence various program segments for example the value of a counter should be increased in different parts of the program In this case calling the same function block
401. k variables so that the signal flow can be determined Feedback variables must be initialized The initial value is used during the first execution of the logic Once they have been executed the initial value is replaced by the actual value Pay attention to the two different types of execution sequences number in brackets after the instance name for the two blocks Loop generated with an actual parameter Type 1 AND EN ENO _ EN ENO mi ooo outi OUTI IN2 Loop generated with an actual parameter Type 2 AND EN ENO 382 35006144 07 2011 Ladder Diagram LD Change Execution Sequence Introduction Original Situation The order of execution in networks and the execution order of objects within a network are defined by a number of rules see page 380 In some cases the execution order suggested by the system should be changed The procedure for defining changing the execution sequence of networks is as follows e Using Links Instead of Actual Parameters e Network Positions The procedure for defining changing the execution sequence of networks is as follows e Positioning of Objects The following representation shows two networks for which the execution sequences are only defined by their position within the section without taking into account that block 0 4 0 5 and 0 7 0 8 require another execution sequence
402. keeping the current values of the data when transferring the application Failure to follow these instructions can result in injury or equipment damage 136 35006144 07 2011 Operating Modes Illustration The diagram below describes how a cold restart operates Acquisition of inputs Processor stopped Application context saved i Power return Vv TOP program execution If SW10 0 0 possible processing of cold restart Configuration self test Yes y Initialization of the application Power failure gt micro cut A Setting of bit S0 to 1 and setting of bit SW10 0 to 0 No BOT V Setting of bit S0 to 0 and setting of bit SW10 0 to 1 WV Updating of outputs 35006144 07 2011 137 Operating Modes Operation The table below describes the program execution restart phases on cold restart Phase Description 1 The startup is performed in RUN or in STOP depending on the status of the Automatic start in RUN parameter defined in the configuration or if this is in use depending on the state of the RUN STOP input Program execution is resumed at the start of the cycle 2 The system carries out the following the initialization of data bits I O image words etc with the initial values defined in the data editor value set to 0 if no other in
403. l IN2 varl OUT1 gt resultl OUT2 gt result2 Actual Parameters Inputs Actual Parameters Outputs Procedure Name or CAL PROC IN1 varl IN2 varl OUT1 gt result1l OUT2 gt result2 or PROC IN1 varl IN2 varl OUT1 gt resultl OUT2 gt result2 or CAL PROC IN1 varl IN2 varl OUT1 gt resultl OUT2 gt result2 35006144 07 2011 491 Instruction List IL Calling the same procedure in FBD PROC val JIN1 OUT1 result1 var2 7IN2 OUT2 result2 With formal calls values do not have to be assigned to all formal parameters see also Parameter see page 489 PROC IN1 varl OUT1 gt resultl OUT2 gt result2 or CAL PROC IN1 varl OUT1 gt resultl OUT2 gt result2 Calling the same procedure in FBD PROC varl JIN1 OUT1 result1 IN2 OUT2 result2 Informal Call without CAL Instruction With this type of call call without formal parameter names procedures are called using an instruction sequence consisting of the first actual parameter loaded into the accumulator followed by the procedure name followed by a list of the input and output actual parameters The order in which the actual parameters are listed is significant The list of actual parameters cannot be wrapped EN and ENO cannot be used for this type of call Calling a procedure with formal parameter names Actual Parameters Inputs Pe LD varl PROC var2 result1 result2
404. l With informal calls calls without formal parameter names the call consists of the actual parameter of the output followed by the symbol of the assignment instruction then the function name and then by a bracketed list of the inputs actual parameters The order that the actual parameters are enumerated in a function call is significant EN and ENO cannot be used for this type of call Calling a function without formal parameter names Actual Parameter Output out LIMIT 0 varl 5 var Function Name Actual Parameters Inputs Calling the same function in FBD LIMIT 0 MN m out vari IN 5 var 7MX With informal calls it is not necessary to assign a value to all formal parameters see also Parameters page 529 This is a supplement to IEC 61131 3 and must be enabled explicitly An empty parameter field is used to skip a parameter Call with empty parameter field out LIMIT varl 5 var Calling the same function in FBD LIMIT MN F out vari IN 5 var MX An empty parameter field does not have to be used if formal parameters are omitted at the end out LIMIT 0 varl Calling the same function in FBD LIMIT 0 MN m out vari 4IN Mx 532 35006144 07 2011 Structured Text ST Nesting Functions EN and ENO A function call can include the call of further functions The nesting depth is not limited Nested call of array function out LIMIT MN 4 IN MUL IN1 varl IN2 var2
405. lback or maintain On the Fipio bus certain devices do not manage fallback mode then only maintain mode is possible All outputs as well as the local or remote rack RIO are maintained in the state that preceded the switch to 1 of the SW9 bit corresponding to the task The Distributed Inputs Outputs DIO are not assigned by the system word SW9 Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 173 System Objects Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW10 First cycle If the value of the current task bit is set 0 YES YES YES TSKINIT after cold to 0 this means that the task is except start performing its first cycle after a cold for safety start PLCs SW10 0 assigned to the MAST task SW10 1 assigned to the FAST task SW10 2 to 5 assigned to the AUX 0 3 tasks This word is not available on Quantum safety PLCs SW11 Watchdog Reads the duration of the watchdog YES YES YES WDGVALUE duration The duration is expressed in milliseconds 10 1500 ms This word cannot be modified 174 35006144 07 2011 System Objects Description of System Words SW12 to SW29 Detailed Description Description of system words 3SW12 to 3SW29 Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW1
406. ld start Causes Startup characteristics Loading of an application Cold start forced in STOP RESET button pressed on processor Cold start forced in STOP or RUN mode as Premium defined in the configuration RESET button pressed on the processor Cold start forced in STOP after a processor or system error Premium Movement of handle or insertion removal of Cold start forced in STOP or RUN mode as a PCMCIA memory card defined in the configuration Initialization from Unity Pro Start in STOP or in RUN retaining the Forcing the system bit SO operating mode in progress at downtime without initialization of discrete input output and application specific modules Restoral after power supply outage with loss Cold start forced in STOP or RUN mode as of context defined in the configuration 4 CAUTION LOSS OF DATA ON APPLICATION TRANSFER Loading or transferring an application to the PLC typically involves initialization of unlocated variables To save located variables with Premium and Quantum PLCs e Save and restore 3M and MW by clicking PLC Transfer Data For Premium PLCs e Avoid the initialization of sMw by unchecking Initialize MWi on cold start in the configuration screen of the CPU For Quantum PLCs e Avoid the initialization of smw by unchecking MWi Reset in the configuration screen of the CPU It is necessary to assign a topological address to the data if the process requires
407. left In pin and the result of its compare condition and assigns the result of this AND unconditionally to its right Out pin For example if the state of the left link is 1 and the result of the comparison is 1 the state of the right link is 1 A horizontal matching block can contain up to 4096 characters If not all characters can be displayed then the beginning of the character sequence will be followed by suspension points A horizontal matching block takes up 1 line and 2 columns Example Int Out1 In2 Ie Compare1 H H Compare2 In the example Compare1 is executed if In1 1 Compare2 is executed if In1 1 In2 1 a the result of Compare1 1 Out1 becomes 1 if In1 1 In2 1 the result of Compare1 1 and the result of Compare2 1 366 35006144 07 2011 Ladder Diagram LD Links Description Links are connections between LD objects contacts coils and FFBs etc There are 2 different types of links e Boolean Links Boolean links consist of one or more segments linking Boolean objects contacts coils with one another There are different types of Boolean links as well e Horizontal Boolean Links Horizontal Boolean links enable sequential contacts and coil switching e Vertical Boolean Links Vertical Boolean links enable parallel contacts and coil switching e FFB Links FFB connections are a combination of horizontal and vertical segments that connect FFB inputs outputs
408. les of the parent DFB So their variables are also not accessible through programming but trough the animation table Private variables are a supplement to IEC 61131 3 35006144 07 2011 537 Structured Text ST Programming Notes Attention should be paid to the following programming notes e Functions blocks are only executed if the input EN 1 or the EN input is not used see also EN and ENO page 542 e The assignment of variables to ANY or ARRAY output types must be made using the gt operator see also Formal Call page 538 Assignments cannot be made outside of the function block call The instruction My Var My SAH OUT is invalid if the output OUT of the SAH function block is of type ANY The instruction Cal My SAH OUT gt My Var is valid Special conditions apply when using VAR_IN_OUT variables see page 542 The use of function blocks consists of two parts in ST e the Declaration see page 538 e calling the function block e There are two ways of calling a function block e Formal call see page 538 calling a function with formal parameter names This way variables can be assigned to outputs using the gt operator e Informal call see page 540 call without formal parameter names e Function block DFB instances can be called multiple times other than instances of communication EFBs these can only be called once see Multiple Function Block Instance Call page 541 Declar
409. ll an FFB output Data types which are in an instruction of processing operands must be identical Should operands of various types be processed a type conversion must be performed beforehand In the example the integer variable i1 is converted into a real variable before being added to the real variable r4 r3 r4 SIN INT TO REAL il As an exception to this rule variables with data type TIME can be multiplied or divided by variables with data type INT DINT UINT or UDINT Permitted operations e timeVarl timeVar2 dintVarl e timeVarl timeVar2 intVarl timeVar 10 time 10s This function is listed by IEC 61131 3 as undesired service 502 35006144 07 2011 Structured Text ST Direct Use of Addresses Addresses can be used directly without a previous declaration In this case the addresses data type is assigned directly The assignment is made using the Large prefix The different large prefixes are given in the following table Large prefix Symbol Example Data type no prefix 110 SCH203 MOD 3CH203 MOD ERR BOOL X SMX20 BOOL B QB102 3 BYTE W SKW43 INT D QD100 DINT F MF100 REAL Using Other Data Types Should other data types be assigned as the default data types of an address this must be done through an explicit declaration This variable declaration takes place comfortably using the variable editor The data type o
410. lled up without EN ENO or with EN 1 35006144 07 2011 533 Structured Text ST out LIMIT MN 0 Calling the same function in FBD vari IN 5 MX LIMIT ENO H var2 IN varl If EN ENO are used the function call must be formal EN 1 MX 5 ENO gt var2 534 35006144 07 2011 Structured Text ST Call Elementary Function Block and Derived Function Block Elementary Function Block Elementary function blocks have internal states If the inputs have the same values the value on the output can have another value during the individual operations For example with a counter the value on the output is incremented Function blocks can have several output values outputs Derived Function Block Parameter Derived function blocks DFBs have the same characteristics as elementary function blocks The user can create them in the programming languages FBD LD IL and or ST Inputs and outputs are required to transfer values to or from function blocks These are called formal parameters The current process states are transferred to the formal parameters They are called actual parameters The following can be used as actual parameters for function block inputs e Variable e Address e Literal The following can be used as actual parameters for function block outputs e Variable e Address The data type of the actual parameters
411. local input outputs the status words SW545 to SW547 are used in the following way e SW545 status of the local station e SW545 15 1 all modules are operating correctly SW545 14 to 8 unused always set to 0 SW545 7 to 0 number of times the module has appeared defective the counter loops back at 255 SW546 this is used as a counter for 16 bit input output bus errors SW547 this is used as a counter for 16 bit input output bus repetitions 220 35006144 07 2011 System Objects Word Function Description Initial Symbol state SW548 to SW640 Status of The words SW548 to SW640 are used to describe the status MODUNHEALTHi decentralized of the decentralized stations Three status words are used for IOERRCNTi stations each station IORETRYi SW548 displays the global communication status for 1 2 32 station 2 e SW548 15 1 communication operating correctly SW548 14 1 communication on cable A operating correctly e SW548 13 1 communication on cable B operating correctly SW548 11 to 8 lost communications counter e SW548 7 to 0 retry totalizer counter SW549 is the global error totalizer counter for cable A station 2 e most significant byte counts the errors detected e least significant byte counts non responses SW550 is the global error totalizer counter for cable B station 2 e most significant byte counts the errors det
412. lue 35006144 07 2011 679 Glossary Elemantary Function see EF EN ENO enable error notification EN means ENable this is an optional block input If EN 0 the block is not activated its internal program is not executed and ENO ist set to 0 If EN 1 the internal program of the block is executed and ENO is set to 1 by the system If an error occurs ENO is set to 0 ENO means Error NOtification this is the output associated to the optional input EN If ENO is set to O caused by EN 0 or in case of an execution error e the outputs of function blocks remain in the status they were in for the last correct executed scanning cycle and e the output s of functions and procedures are set to 0 NOTE If EN is not connected it is automatically set to 1 Event processing Event processing 1 is a program section launched by an event The instructions programmed in this section are executed when a software application event Timer or a hardware event application specific module is received by the processor Event processes take priority over other tasks and are executed the moment the event is detected The event process EVTO is of highest priority All others have the same level of priority NOTE For M340 IO events with the same priority level are stored in a FIFO and are treated in the order in which they are received All the timers have the same priority When several timers
413. m LD Variable B is defined as EBOOL the behavior is different when compared with variable A While B is set to 1 sMW2 is incremented by 1 because the history bit is not updated B OPERATE MW2 MW2 1 Variable c is defined as EBOOL the behavior is identical than variable A The history bit is updated OPERATE YMW3 MW3 1 376 35006144 07 2011 Ladder Diagram LD Forcing of Coils Can Cause the Loss of Edge Recognition Forcing of coils can cause the loss of edge recognition In the example when A equals 1 B should equal 1 and with a rising edge from A the coil B will be set for a cycle In this example the variable B is first assigned to the coil and then to the link to recognize positive edges A B N LJ B Cc fs j LS 08284 8 7 1 A Value bit m y C E rIEEEEEEN B Force Bit E B History Bit pa C Value bit i i At the beginning of the second cycle the value bit of B equals 0 When forcing B within this cycle the force bit and value bit are set to 1 While processing the first line of the logic in the third cycle the history bit of the coil B will also be set to 1 35006144 07 2011 377 Ladder Diagram LD Problem During edge recognition comparison of the value bit and the history bit in the second line of the logic no edge is recognized because due to the updating the value bit and history
414. meter Automatic start in RUN has been selected If this is not the case the PLC starts in STOP the bit SO then switches to 1 on the first cycle after restart but is not visible to the program because it is not executed 138 35006144 07 2011 Operating Modes Output Changes for Premium and Atrium As soon as a power outage is detected the outputs are set in the fallback position e either they are assigned the fallback value or e the current value is maintained depending on the choice made in the configuration After power restoral the outputs remain at zero until they are updated by the task Output Changes for Quantum As soon as a power outage is detected e the local outputs are set to zero e the outputs of the remote or distributed extension racks are set in the fallback position After power restoral the outputs remain at zero until they are updated by the task NOTE The behavior of forced outputs was changed between Modsoft NxT Concept and Unity Pro With Modsoft NxT Concept you cannot force outputs if the Quantum processor memory protection switch is set to On With Unity Pro you can force outputs if the Quantum processor memory protection switch is set to On With Modsoft NxT Concept forced outputs retain their status after a cold start With Unity Pro forced outputs lose their status after a cold start 4 CAUTION UNEXPECTED APPLICATION BEHAVIOR FORCED VARIABLES Check your forced va
415. meters is 32 number of output parameters number of in out parameters Effects of type conversions on accuracy See online help Error conditions during type conversions Error conditions are described in the online help Globally S18 is set for overflow errors ENO is also set The result is depending on the specific function Accuracy of numerical functions INTEL floating point processing or emulation Effects of type conversions between time data types and other data types not defined in Table 30 See online help Maximum number of function block specifications and instantiations Only limited by the maximum size of a section Function block input variable assignment when EN is FALSE No assignment Pymin Pvmax of counters INT base counters Pymin 32768 0x8000 Pymax 32767 Ox7FFF UINT base counters Pvmin 0 0x0 Pymax 65535 OxFFFF DINT base counters Pymin 2147483648 0x80000000 Pymax 2147483647 Ox7FFFFFFF UDINT base counters Pymin 0 0x0 Pymax 4294967295 OxFFFFFFFF Effect of a change in the value of a PT input during a timing operation The new PT values are immediatelytaken at once into account even during a running timing operation immediately works with the new values Program size limitations Depends on controller type and memory Precision of step elapsed time 10 ms Maximum number of steps per SFC
416. mming language element See annex B definition of the IEC standard 61131 3 All the key words used in Unity Proand of this standard are listed in annex C of the IEC standard 61131 3 These keywords cannot be used as identifiers in your program names of variables sections DFB types etc L LD is the abbreviation of Ladder Diagram LD is a programming language representing the instructions to be carried out in the form of graphic diagrams very close to a schematic electrical diagram contacts coils etc A located variable is a variable for which it is possible to know its position in the PLC memory For example the variable Water pressure is associated with3MW102 Water pressure is said to be localized M A macro step is the symbolic representation of a unique set of steps and transitions beginning with an input step and ending with an output step A macro step can call another macro step Main program task It is obligatory and is used to carry out sequential processing of the PLC An application comprising a single task and so necessarily the Master task 35006144 07 2011 685 Glossary Multi task Multiple token Application comprising several tasks Mast Fast Auxiliary event processing The order of priority for the execution of tasks is defined by the operating system of the PLC Operating mode of an SFC In multitoken mode the SFC may possess several active steps at the same time N
417. mon Floating Point Errors 524 525 526 527 528 529 535 544 551 553 554 556 559 560 562 566 568 571 572 574 575 579 580 584 587 589 592 596 599 599 601 603 604 606 607 611 620 627 629 637 35006144 07 2011 Appendix B B 1 B 2 B 3 B 4 Glossary Index IEC Compliance 5 0i45 seis ie Pe ee ee eee 639 General Information regarding IEC 61131 3 0 0000 640 General information about IEC 61131 3 Compliance 640 IEC Compliance Tables 0 000 c cece eee 642 Common elements 00 cece eee ttt eee 643 IL language elements 0 0 00 cee eee eee 654 ST language elements 000 c cece eee eee 656 Common graphical elements 0 000 cece eee eee 657 LD language elements 20 20 cece eee 658 Implementation dependent parameters 20 eee eee 659 Error Conditions z e reia ieee tes eee ere AS 662 Extensions of IEC 61131 3 0 0 eee ee 664 Extensions of IEC 61131 3 2nd Edition 0005 664 Textual language syntax 0 ee tee 666 Textual Language Syntax 0 cece eet ee 666 Pe ee eee er ee ee Cer ee eee ee eee era 667 Ee ee ee a eee ec ee E ere 695 10 35006144 07 2011 Safety Information A Important Information NOTICE Read these instructions carefully and look at the equipment to become familiar with the device before trying to install operate or
418. mposed of data which are each characterized by e atype e aname which enables it to be identified e a comment optional describing its role Definition of a structure type IDENT Surname STRING 12 irst name STRING 16 UINT The IDENT type STRING type data structure contains a UINT type data item and two Definition of two data instances of an IDENT type structure Pe Pe n_1 IDENT n_2 IDENT The instances Person_1 and Person_2 are of IDENT Structure type Access to the Data of a Structure Access to the data of the Person_1 IDENT type instance Person_1 Name To access Person_1 Age To access age of Person_1l 35006144 07 2011 269 Data Types Overview of the Derived Data Type family DDT Introduction The DDT Derived Data Type family includes derived data types such as e tables e structures Illustration Tables Structures Characteristics A data item belonging to the DDT family is made up of e the type name see page 234 32 characters maximum defined by the user not obligatory for tables but recommended see page 267 e the type structure or table e an optional comment of a maximum of 1024 characters Authorized characters correspond to the ASCII codes 32 to 255 e the description in the case of a structure of these elements e the element name see page 234 32 characters maximum e the element type e an optional comment 1024 characters max
419. mpulsory to connect or assign the ANY_ARRAY type inputs the generic data type outputs ANY_ and the input outputs of a DFB block Graphic Representation of a DFB Block The following illustration shows a simple DFB programming example Control_port_1 1 Function block Control 2 Delta 3 Deviation 6 Accel 7 E Q1 2 1 8 10000 4 E Speed 6 5 Enable 6 596 35006144 07 2011 Use of DFBs Elements of the DFB Block The following table lists the different elements of the DFB block labeled in the above illustration Label Element Name of the DFB instance Name of the DFB type Input assigned by an object symbol Input assigned by a value Connected input Input parameters Output parameter NIOJ a BR wo n Input assigned by an object address Use of EN ENO Parameters See EN and ENO Parameters page 563 35006144 07 2011 597 Use of DFBs 598 35006144 07 2011 User Diagnostics DFB 20 Presentation of User Diagnostic DFBs General Advantages The Unity Pro application is used to create your own diagnostic DFBs see Unity Pro Operating Modes These diagnostic DFBs are standard DFBs that you will have configured beforehand with the Diagnostic property and in which you will have used the following two functions e REGDFB see Unity Pro Diagnostics Block Library to save
420. ms MAST 10 1500 250 SSW11 FAST 10 500 100 AUXO 100 5000 2000 AUX1 100 5000 2000 AUX2 100 5000 2000 AUX3 100 5000 2000 If watchdog overflow should occur the application is declared in error which causes the PLC to stop immediately HALT state The word SW11 contains the watchdog value of the master task in ms This value is not modifiable by the program 35006144 07 2011 95 Program Structure The bit S11 indicates a watchdog overflow It is set to 1 by the system when the cycle time becomes greater than the watchdog NOTE e The reactivation of the task requires the terminal to be connected in order to analyze the cause of the error correct it reinitialize the PLC and switch it to RUN e Itis not possible to exit HALT by switching to STOP To do this you must reinitialize the application to ensure consistency of data Task Control When the application program is being executed it is possible to activate or inhibit a task by using the following system bits System bits Task 530 MAST S31 FAST S32 AUXO S33 AUX1 S34 AUX2 S35 AUX3 The task is active when the associated system bit is set to 1 These bits are tested by the system at the end of the master task When a task is inhibited the inputs continue to be read and the outputs continue to be written On startup of the application program for the first execution cycle only
421. ms should be used with care as there is a risk of overrun if the processing triggering frequency is too high Preset 1 1023 10 Timer preset value The time period obtained equals Preset x Time Base Phase 0 1023 The value of the temporal offset between the STOP RUN transition of the PLC and the first restart of the timer from 0 The temporal value equals Phase x Time Base NOTE The Phase must be lower than Preset in TIMER type Event Representation in FBD Reset_Timer Hold_Timer Nb_Task_Event Enable 4 ENABLE STATUS Status_Timer ITCNTRL RESET VALUE HOLD EVENT Current_Value The following table describes the input parameters Parameter Type Comment Enable BOOL Enable input selected Reset_Timer BOOL At 1 resets the timer 100 35006144 07 2011 Program Structure Parameter Type Comment Hold Timer BOOL At 1 freezes timer incrementation Nb_ Task Event BYTE Input byte which determines the event processing number to be triggered The following table describes the output parameters Parameter Type Comment Status Timer WORD Status word Current Value TIME Current value of timer Timing Diagram for Normal Operation Timing diagram RESET i ENABLE In l l HOLD 3 oO ER l 1 T j T Preset x TB 1 i s i
422. must match the data type of the formal parameters The only exceptions are generic formal parameters whose data type is determined by the actual parameter When dealing with generic ANY BIT formal parameters actual parameters of the INT or DINT not UINT and UDINT data types can be used This is a supplement to IEC 61131 3 and must be enabled explicitly Example Allowed AND AnyBitParam IntVarl AnyBitParam2 IntVar2 35006144 07 2011 535 Structured Text ST Not allowed AND WORD WordParaml IntVarl WordParam2 IntVar2 In this case AND_ INT must be used AND ARRAY WORD ArrayInt In this case an explicit type conversion must be carried out using INT ARR TO WORD ARR Not all formal parameters must be assigned with a value Which formal parameter types must be assigned a value can be seen in the following table Parameter type EDT STRING ARRAY ANY_ARRAY IODDT STRUCT FB ANY EFB Input F 7 EFB VAR_IN_OUT EFB Output z DFB Input N F DFB VAR_IN_OUT DFB Output Actual parameter required Actual parameter not required not applicable If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is use
423. n Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 125 Operating Modes Illustration 4 CAUTION LOSS OF DATA ON APPLICATION TRANSFER Do not press the RESET button on the power supply Otherwise MWi is reset and initial values are loaded Failure to follow these instructions can result in injury or equipment damage CAUTION RISK OF LOSS OF APPLICATION If there is no memory Card in the PLC during a cold restart the application is lost Failure to follow these instructions can result in injury or equipment damage The diagram below describes how a cold restart operates Acquisition of inputs gt Processor stopped Application context TOP program execution saved If SW10 0 0 Power retum possible processing of cold restart Configuration self test Yes Initialization of the application micro cut No qar Setting of bit S0 to 1 ay and setting of bit Setting of bit S0 to 0 SW10 0 to 0 and setting of bit SW10 0 to 1 M Updating of outputs 126 35006144 07 2011 Operating Modes Operation The table below describes the program execution restart phases on cold restart Phase Description 1 The startup is performed in RUN or in STOP depending on the status of th
424. n index the functions will look at the number of words in the array but not at the starting index set in the definition of the array 4 WARNING UNEXPECTED APPLICATION BEHAVIOR INVALID ARRAY INDEX When applying functions on variables of array type check that the functions are compatible with the arrays starting index value when this value is greater than 0 Failure to follow these instructions can result in death serious injury or equipment damage 35006144 07 2011 267 Data Types Access to a data item in array Tab_1 and Tab_3 Tab_1 2 7TO access second element Tab_3 4 18 7To access eighteenth element of the fourth sub array Inter Arrays Assignment Rules There are the 4 following arrays Tab _1 ARRAY 1 10 OF INT Tab 2 ARRAY 1 10 OF INT Tab 3 ARRAY 1 11 OF INT Tab 4 ARRAY 101 110 OF INT Tab _1 Tab 2 Assignment authorized Tab _1 Tab 3 Assignment refused non IEC compliant Tab_1 Tab_4 Assignment refused non IEC compliant 268 35006144 07 2011 Data Types Structures What is a Structure It is a data item containing a set of data of a different type such as e a group of BOOL WORD UNINT etc EDT structure e agroup of tables DDT structure e agroup of REAL DWORD tables etc EDT and DDT structures NOTE You can create nested structures nested DDTs over 8 levels Recurring structures DDT are not allowed Characteristics A structure is co
425. n Operation is enabled 35006144 07 2011 523 Structured Text ST RETURN Description RETURN instructions can be used in DFBs derived function blocks and in SRs subroutines ETURN instructions can not be used in the main program e In a DFB a RETURN instruction forces the return to the program which called the DFB e The rest of the DFB section containing the RETURN instruction is not executed e The next sections of the DFB are not executed The program which called the DFB will be executed after return from the DFB If the DFB is called by another DFB the calling DFB will be executed after return e Ina SR a RETURN instruction forces the return to the program which called the SR e The rest of the SR containing the RETURN instruction is not executed The program which called the SR will be executed after return from the SR W Ez 524 35006144 07 2011 Structured Text ST Empty Instruction Description A single semicolon represents an empty instruction For example IF x THEN ELSE In this example an empty instruction follows the THEN instruction This means that the program exits the IF instruction as soon as the IF condition is 1 35006144 07 2011 525 Structured Text ST Labels and Jumps Introduction Label Properties Labels serve as destinations for jumps Jumps and labels in ST are a supplement to the IEC 61131 3 and must be ena
426. n module used to access a network number x X WAY it is possible to switch to another communication module connected to the same network by entering the network number in the Sw99 word SW99 is reset to 0 by the system NO YES NO 35006144 07 2011 191 System Objects Word Function Description Initial Modicon Premium Quan Symbol state M340 Atrium tum SW992 CRA NOTE This word is used for Premium 0 NO NO YES2 compati and Quantum module but has a different bility high function see Modicon Quantum status Change Configuration On The Fly User register Guide Word used to manage the CCOTF compatibility when a new module is inserted When a module is inserted in the RIO drop the corresponding bit is at 1 and indicates that the module is connected on the drop and CCOTF compatible CRA_COMPAT HI GH SW100 CCOTF Word is incremented each time a 0 NO NO YES CCOTF_COUNT counting CCOTF modification is performed in a status PLC register SW100 XXYY where e XX is incremented each time an I O configuration is done in RUN state in a RIO drop e YY is incremented each time an I O configuration is done in RUN state in local rack 192 35006144 07 2011 System Objects Description of System Words SW108 to SW116 Detailed Description Description of system words SW108 to SW116 Word Symbol Function Descripti
427. n of auxiliary task 2 S35 Activation of auxiliary task 3 S11 Watchdog error S19 Period overrun SW36 Execution time in ms of the last cycle of auxiliary task 0 35006144 07 2011 73 Program Structure System objects Description SW39 Execution time in ms of the last cycle of auxiliary task 1 SW42 Execution time in ms of the last cycle of auxiliary task 2 SW45 Execution time in ms of the last cycle of auxiliary task 3 SW37 Execution time in ms of the longest cycle of auxiliary task 0 SW40 Execution time in ms of the longest cycle of auxiliary task 1 SW43 Execution time in ms of the longest cycle of auxiliary task 2 SW46 Execution time in ms of the longest cycle of auxiliary task 3 SW38 Execution time in ms of the shortest cycle of auxiliary task 0 SW41 Execution time in ms of the shortest cycle of auxiliary task 1 SW44 Execution time in ms of the shortest cycle of auxiliary task 2 SW47 Execution time in ms of the shortest cycle of auxiliary task 3 74 35006144 07 2011 Program Structure Overview of Event Processing General Event processing is used to reduce the response time of the application program to events e coming from input output modules e from event timers These processing tasks are performed with priority over all other tasks They are therefore suited to processing tasks requ
428. n only be placed in the first cell directly on the power rail Note Jump labels may not cut through networks i e an assumed line from the jump label to the right edge of the section may not be crossed by any object This also applies to Boolean links and FFB links Return RETURN objects can not be used in the main program lt RETURN gt e In a DFB a RETURN object forces the return to the program which called the DFB e The rest of the DFB section containing the RETURN object is not executed e The next sections of the DFB are not executed The program which called the DFB will be executed after return from the DFB If the DFB is called by another DFB the calling DFB will be executed after return Ina SR a RETURN object forces the return to the program which called the SR e The rest of the SR containing the RETURN object is not executed The program which called the SR will be executed after return from the SR 364 35006144 07 2011 Ladder Diagram LD Operate Blocks and Compare Blocks Introduction In addition to the objects defined in IEC 61131 3 there are several other blocks for executing ST instructions see page 499 and ST expressions see page 499 and for simple compare operations These blocks are only available in the LD programming language Objects The following objects are available Designation Representation Description Operate When the status of the left
429. n operand is loaded into the only for operands direct address of any accumulator using LD The size of the operands of value into the data type accumulator adapts automatically to the data type data type accumulator of the operand This also applies to the derived BOOL BYTE data types WORD or Example In this example the value of Ais loaded DWORD into the accumulator the value of B then added and the result saved in E LD A ADD B STE 35006144 07 2011 459 Instruction List IL Operator Modifier Meaning Operands Description ST N Saves the Variable direct The current value of the accumulator is stored in only for accumulator address of any data the operand using ST The data type of the operands of value in the type operand must be the same as the data type of data type operand the accumulator BOOL BYTE Example In this example the value of A is loaded WORD or into the accumulator the value of B then added DWORD and the result saved in E LDA ADD B ST E The old result is used in subsequent calculations depending on whether or not an LD follows an ST Example In this example the value of A is loaded into the accumulator the value of B then added and the result saved in E The value of B is then subtracted from the value of E current accumulator content and the result saved in C LD A ADD B ST E SUB 3 ST C Set and Reset Operators Set and reset ope
430. n shows the different power cycle phases RUN or STOP Application Ww Power failure Save Context Valid context Invalid context Wam restart Cold start 35006144 07 2011 123 Operating Modes Operation The table describes the power outage processing phases Phase Description 1 On power outage the system saves the application context the values of application variables and the state of the system on internal Flash memory 2 The system sets all the outputs into fallback state state defined in configuration 3 On power restoral some actions and checks are done to verify if warm restart is available e restoring from internal Flash memory application context e verification with memory card presence application availability e verification that the application context is identical to the memory card context If all checks are correct a warm restart see page 129 is done otherwise a cold start see page 125 is carried out 124 35006144 07 2011 Operating Modes Processing on Cold Start for Modicon M340 PLCs Cause of a Cold Start The following table describes the different possible causes of a cold start Causes Startup characteristics Loading of an application Cold start forced in STOP Restore application from memory card Cold start forced in STOP or RUN mode as when the application is different from the
431. n the configuration via except SW3 scanning the user program or via the terminal for safety AUX1PERIOD period The period is expressed in tens of ms PLCs SW4 10ms to 2 55s AUX2PERIOD SW5 1 only on 140 CPU 6e and TSX 57 5ee AUX3PERIOD PLCs These words are not available on Quantum safety PLCs SWE IP Ad Gives the IP address of the CPU Ethernet YES NO NO SW7 dress port Modification is not taken into account Is 0 if the CPU does not have an Ethernet link 35006144 07 2011 171 System Objects Word Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium SW8 Acquisi Normally set to 0 this bit can be set to 1 or 0 YES 1 YES 3 YES 2 TSKINHIBIN tion of 0 by the program or the terminal except taskinput It inhibits the input acquisition phase of for safety monitor each task PLCs ing SW8 0 1 inhibits the acquisition of inputs relating to the MAST task SW8 1 1 inhibits the acquisition of inputs relating to the FAST task SW8 2 to 5 1 inhibits the acquisition of inputs relating to the AUX 0 3 tasks 1 Note On Modicon M340 inputs outputs distributed via CANopen bus are not affected by the word sSws 2 Note On Quantum inputs outputs distributed via DIO bus are not affected by the word 3sws 3 Note On PREMIUM inputs outputs distributed via ETY and ETY PORT are not affected by the word ssws High End CPU Ethernet Port is
432. n using dynamic arrays it is mandatory to check the sizes of arrays that are identical In specific case using dynamic arrays as an output or input output an overflow could lead to improper execution of the program and stop of the PLC This behavior occurs if the following conditions are fulfilled simultaneously e Use of a DFB with at least one output or I O parameter of dynamic array type ANY ARRAY XXX e Inthe coding of a DFB use of a function or function block FFB of type FIFO LIFO MOVE MVX T2T SAH or SEL Note that the function or FFB needs two ANY type parameters with at least one defined on the output e The DFB parameter of the dynamic array is used in writting during the FFB call on the ANY type parameter For other ANY parameters an array with a fixed size is used e The size of the fixed size array is bigger than the size of the dynamic array calculated to store the result 582 35006144 07 2011 Use of DFBs Example for checking the size of arrays The following example shows how to check the size of arrays using the function LENGTH ARWORD in a DFB LENGTH_ARWORD 2 Table_1__ IN Ou EQ_INT 4 MOVE 9 1 1N1 OUT EN1 EN IN2 Table_1_ IN OUT _Table_2 LENGTH_ARWORD 3 Table_2_ IN OUT In this example Table_1 is an array with a fixed size Table 2 is a dynamic array of type ANY ARRAY WORD This program checks the size of each array The
433. nagement Table of error codes and errors values created for EFBs of the Setpoint Management family EFB Error code ENO Error Error Error description name state valuein value in in Dec Hex case of error RAMP W_WARN_OUT_OF_RANGE T 30110 Parameter out of range 16 759E RAMP FP_ERROR F See table Common Floating Point Errors page 637 RAMP Status word values T F For details about the RAMP status word refer to the RAMP description see Unity Pro Control Block Library RATIO FP_ERROR F See table Common Floating Point Errors page 637 RATIO Status word values T F For details about the RATIO status word refer to the RATIO description see Unity Pro Control Block Library SP_SEL W_WARN_OUT_OF_RANGE T 30110 Parameter out of range 16 759E SP_SEL FP_ERROR F See table Common Floating Point Errors page 637 SP_SEL Status word values T F For details about the SP_SEL status word refer to the SP_SEL description see Unity Pro Control Block Library 626 35006144 07 2011 EFB Error Codes and Values Tables of Error Codes for the Motion Library Introduction The following tables show the error codes and error values created for the EFBs of the Motion Library MMF Start Table of error codes and errors values created for EFBs of the MMF Start family EFB name _
434. nagement These words are not available on Safety PLCs SW340 Slot number of Slot number of the processor with the built in Modbus Plus link MB DIOSLOT the processor for connection to the first DIO network The slot number is coded with Modbus from 0 to 15 Plus link This word is not available on Quantum safety PLCs 216 35006144 07 2011 System Objects Word Function Description Initial Symbol state SW341 to SW404 Operating status The words SW341 to SW404 are associated with the MB IOHEALTHi of the distributed distributed stations DIO 64 words associated with the 64 DIO i 1 64 station modules stations of the first network of the first DIO SW341 operating status of the station 1 modules network SW342 operating status of the station 2 modules SW404 operating status of the station 64 modules Bits 0 to 15 of each of these words are associated with the modules located in positions 16 to 1 of these stations The bit is set to 0 if the module is faulty and set to 1 if the module is operating correctly Example SW362 5 0 The module located in station 22 slot 11 of the first DIO network is faulty Note For modules 140 CRA 2 eee the value of this bit is not significant and is always set to 0 These words are not available on safety PLCs and DIO network SW405 Slot number of Slot number of module 140 NAME 2ee for connection to the NOM1DIOSLOT
435. nal situation 3 ADD _ fe EN ENO A 2 4 ADD EN ENO B c J 1 1 1 Nd D 3 4 11 12 ADD ADD p _ env ENO EN ENO _ E 5 13 ADD EN ENO 14 Es ADD EN ENO G In the first network block positions 0 1 and 0 2 are switched In this case common origins for both block inputs the execution sequence of both blocks is switched as well processed from top to bottom The same applies when switching coils c and D in the second network 386 35006144 07 2011 Ladder Diagram LD In the third network block positions 0 4 and 0 5 are switched In this case different origins for the block inputs the execution sequence of the blocks is not switched processed in the sequence that the block outputs are called in The same applies when switching coils G and H in the last network 1 ADD _ EN ENO L A 2 4l ADD EN ENO B Cc EN 1 1 Mood D 3 5 ADD 5 FA p _S nw ENO RS ADD EN ENO 4 6 12 ADD 14 a EN ENO EN ENO G 387 Ladder Diagram LD 388 35006144 07 2011 SFC Sequence Language 13 Overview This chapter describes the SFC sequence language which conforms to IEC 611311 What s in this Chapter This chapt
436. nches the master task with the S0 cold restart and S13 first cycle in RUN bits set to 1 and the SW10 word detection of a cold restart during the first task cycle is set to 0 Resets the SO and S13 bits to 0 and sets each bit of the word SW10 to 1 at the end of this first cycle of the master task Activates the fast task and event processing at the end of the first cycle of the master task Processing a cold start by program It is advisable to test the bit SW10 0 to detect a cold start and start processing specific to this cold start NOTE It is possible to test the bit SO if the parameter Automatic start in RUN has been selected If this is not the case the PLC starts in STOP the bit SO then switches to 1 on the first cycle after restart but is not visible to the program because it is not executed 35006144 07 2011 127 Operating Modes Output Changes As soon as a power outage is detected the outputs are set in the fallback position e either they are assigned the fallback value e or the current value is maintained depending on the choice made in the configuration After power restoral the outputs remain at zero until they are updated by the task 128 35006144 07 2011 Operating Modes Processing on Warm Restart for Modicon M340 PLCs Cause of a Warm Restart Illustration A warm restart may be caused by a power restoral without loss of context CAUTION RISK OF LOSS
437. ndent parameters 659 Error Conditions 662 642 35006144 07 2011 IEC Compliance Common elements Common elements IEC compliance table for common elements Table No Feature No Description of Feature 1 2 Lower case characters 3a Number sign 4a Dollar sign 5a Vertical bar I 1 Upper case and numbers Upper and lower case numbers embedded underlines Upper and lower case numbers leading or embedded underlines h Comments 3a Pragmas Integer literals Real literals Real literals with exponents Base 2 literals Base 8 literals Base 16 literals Boolean zero and one Boolean FALSE and TRUE O ON oJ oO AJ OIN Typed literals wk Single byte character strings Single byte typed string literals Dollar sign Single quote Line feed New line Form feed page Carriage return Tab olo NIIA AIT WwW NM w Double quote 35006144 07 2011 643 IEC Compliance Table No Feature No Description of Feature 7 la Duration literals without underlines short prefix 1b long prefix 2a Duration literals with underlines short prefix 2b long prefix 8 1 Date literals long prefix 2 Date literals short pre
438. ng languages are supported FBD Function Block Diagram LD Ladder Diagram Language IL Instruction List ST Structured Text 35006144 07 2011 41 Presentation Sections Subroutine Sections are autonomous program units in which the logic of the project is created The sections are executed in the order shown in the project browser structural view Sections are connected to a task The same section cannot be belong to more than one task at the same time The following programming languages are supported e FBD Function Block Diagram LD Ladder Diagram Language SFC Sequential Function Chart IL Instruction List ST Structured Text e e e e Subroutines are created as separate units in subroutine sections Subroutines are called from sections or from another subroutine Nesting of up to 8 levels is possible A subroutine cannot call itself not recursive Subroutines are assigned a task The same subroutine cannot be called by different tasks The following programming languages are supported e FBD Function Block Diagram LD Ladder Diagram Language IL Instruction List ST Structured Text 42 35006144 07 2011 Presentation Function Block Diagram FBD Introduction The FBD editor is used for graphical function block programming according to IEC 61131 3 Representation Representation of an FBD section EN Input EN
439. nly be called once Calling the same function block DFB instance more than once makes sense for example in the following cases e f the function block DFB has no internal value or it is not required for further processing In this case memory is saved by calling the same function block DFB instance more than once since the code for the function block DFB is only loaded once The function block DFB is then handled like a Function e lf the function block DFB has an internal value and this is supposed to influence various program segments for example the value of a counter should be increased in different parts of the program In this case calling the same function block DFB means that temporary results do not have to be saved for further processing in another part of the program 360 35006144 07 2011 Ladder Diagram LD EN and ENO One EN input and one ENO output can be used in all FFBs If the value of EN is equal to 0 when the FFB is invoked the algorithms defined by the FFB are not executed and ENO is set to 0 If the value of EN is equal to 1 when the FFB is invoked the algorithms defined by the FFB will be executed After the algorithms have been executed successfully the value of ENO is set to 1 If an error occurs when executing these algorithms ENO is set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB i
440. not available According to the IEC standard mw indicates a memory real type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type SMW lt i gt KW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SQF IF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are not available According to the IEC standard mw indicates a memory word type language object For Premium Atrium PLCs double type instances of located data SMD lt i gt sKD lt i gt or floating SMF lt i gt SKF lt i gt should be located by an integer type SMW lt i gt SKW lt i gt Only I O objects make it possible to locate type instances SMD lt i gt SKD lt i gt QD SID SMF lt i gt SKF lt i gt SQF SIF by using their topological address for example 3MD0 6 0 11 3MFO 6 0 31 For Modicon M340 PLCs double type instances of located data SMD lt i gt SKD lt i gt or floating SMF lt i gt SKF lt i gt are not available According to the IEC standard Q indicates a discrete output type language object 35006144 07 2011 669 Glossary QD According to the IEC standard Mw
441. nstructions must be followed Failure to use Schneider Electric software or approved software with our hardware products may result in injury harm or improper operating results Failure to observe this information can result in injury or equipment damage 2011 Schneider Electric All rights reserved 35006144 07 2011 Table of Contents Part Chapter 1 Part Il Chapter 2 Chapter 3 3 1 Safety Information About the Book General Presentation Presentation Capabilities of Unity Pro User Interface Project Browser of Unity Pro n e eee User Application and Project File Formats Configurator Data Editor Program Editor Function Block Diagram FBD Ladder Diagram LD Language anura eee eee General Information about SFC Sequence Language Instruction ListIL Structured Text ST PLC Simulator Export Import User Documentation Debug Services Diagnostic Viewer Operator Screen Application Structure Description of the Available Functions for Each Type of Functions Available for the Different Types of PLC Application Program Structure 00005 Description of Tasks and ProcessesS 00000e eee eeeeee Presentation of the Master Task
442. nt CCOTF request e 22 Remote drop not reachable 23 Request is rejected by Remote Drop specified in CCOTF request e YY The lower byte of the word is associated with the CCOTF processing status Its values are in hex e 00 Idle e 01 In progress e 02 Completed without detected error additional CCOTF changes allowed e 03 Completed with a detected error additional CCOTF changes not allowed e 04 Completed with a fatal detected error additional CCOTF changes not allowed 35006144 07 2011 211 System Objects Description of Quantum System Words SW98 to SW109 Detailed Description Description system words SW98 to SW109 Word Symbol Function Description Initial state SW98 CRA_COMPAT_LOW CRA compatibility low status register Meaning of the different bits of the word SW98 SW98 0 is not used and is set to 0 by default SW98 1 to SW98 15 e 0 sets the drop 2 to 16 is not compatible e 1 sets the drop 2 to 16 is compatible 0 SW99 CRA_COMPAT_HIGH CRA compatibility high status register Meaning of the different bits of the word SW99 SW99 0 to SW99 15 e 0 sets the drop 17 to 32 is not compatible e 1 sets the drop 17 to 32 is compatible SW100 CCOTF_COUNT CCOTF counting status register Meaning of the different bits of the word SW100 e XXYY e XX increments each time an I O configuration is done in RUN state in a RIO drop e YY increm
443. ntains the following topics Topic Page Multi Token Execution Sequence 433 Alternative String 435 Parallel Strings 438 Jump into a Parallel String 442 Jump out of a Parallel String 444 432 35006144 07 2011 SFC Sequence Language Multi Token Execution Sequence Description The following rules apply for Multi Token The original situation is defined in a number of initial steps 0 to 100 which can be defined A number of steps which can be freely defined can be active at the same time in a sequence string The active signal status processes take place along the directional links triggered by switching one or more transitions The direction of the string process follows the directional links and runs from the under side of the predecessor step to the top side of the successive step A transition is enabled if the steps immediately preceding it are active Transitions whose immediately preceding steps are not active are not analyzed A transition is triggered when the transition is enabled and the associated transition conditions are satisfied Triggering a transition leads to the disabling resetting of all immediately preceding steps that are linked to the transition followed by the activation of all immediately following steps If more than one transition condition in a row of sequential steps has been satisfied then one step is processed per cycle Steps and macro steps can be ac
444. ntial Example 1 34E 12 or 1 34e 12 1 0E 6 or1 0et 6 1 234E6 or1 234e6 688 35006144 07 2011 Glossary RS 232C RS 485 RUN RUN Auto Rung Serial communication standard which defines the voltage of the following service e asignal of 12 V indicates a logical 0 e a signal of 12 V indicates a logical 1 There is however in the case of any attenuation of the signal detection provided up to the limits 3 V and 3 V Between these two limits the signal will be considered as invalid RS 232 connections are quite sensitive to interferance The standard specifies not to exceed a distance of 15 m or a maximum of 9600 bauds bits s Serial connection standard that operates in 10 V 5 V differential It uses two wires for send receive Their 3 states outputs enable them to switch to listen mode when the transmission is terminated Function enabling the startup of the application program of the PLC Function enabling the execution of the PLC application program to be started automatically in the case of a cold start A rung is the equivalent of a sequence in LD other related terms are Ladder network or more generally Network A rung is inscribed between two potential bars of an LD editor and is composed of a group of graphic elements interconnected by means of horizontal or vertical connections The dimensions of a rung are 17 to 256 lines and 11 to 64 columns maximum 35006144 07 2011 6
445. nto account by the application the BA must be stopped then restarted 35006144 07 2011 201 System Objects Word Function Description Initial Symbol state SW146 Fipio bus The least significant byte indicates the status of the producer consumer 0 BASTATUS arbiter function function display The most significant byte indicates the status of the bus arbiter function Byte value e 16 00 the function does not exist no Fipio application e 16 70 the function has been initialized but is not operational in STOP e 16 FO the function is currently being executed normally in RUN UNINTENDED SYSTEM BEHAVIOR Modifying the SW144 and SW145 system words can cause the PLC to stop Failure to follow these instructions can result in injury or equipment damage 202 35006144 07 2011 System Objects Description of System Words SW147 to SW152 Detailed Description Description of system words SW147 to SW152 Word Function Description Initial Symbol state SW147 MAST network A value which is not zero indicates in ms the value of the MAST task 0 TCRMAST cycle time network cycle time TCRMAST SW148 FAST network A value which is not zero indicates in ms the value of the first FAST 0 TCRFAST cycle time task network cycle time TCRFAST SW150 Number of This word indicates the number of frames sent by the Fipio channel 0 NBFRSENT
446. o transfer the values of the DFB to the application program They are accessible for reading by the application program except for ARRAY type parameters Inputs Outputs 32 These parameters may be used to transfer data from the application program to the DFB which can then modify it and return it to the application program These parameters are not accessible by the application program Legend 1 Number of inputs Number of inputs outputs less than or equal to 32 2 Number of outputs Number of inputs outputs less than or equal to 32 NOTE The IODDT related to CANopen devices for Modicon M340 cannot be used as a DFB I O parameter During the analyse build step of a project the following message This IODDT cannot be used as a DFB parameter advises the limitations to the user 562 35006144 07 2011 Description of DFBs Parameters that Can Be Accessed by the Application Program The only parameters that can be accessed by the application program outside the call are output parameters To make this possible the following syntax must be used in the program DFB_Name Parameter_name DFB_Name represents the name of the instance of the DFB used maximum of 32 characters Parameter_Name represents the name of the output parameter maximum 32 characters Example Control Accel indicates the output Acce1 of the DFB instance called Control EN and ENO Parameters EN is an input parameter and
447. ock 0 2 0 0 e eee eee Description of User Function Blocks DFB Definition of DFB Function Block Internal Data DFB Parameters DFB Variables DFB Code Section User Function Blocks DFB Instance Creation of a DFB Instance Execution of a DFB Instance Programming Example for a Derived Function Block DFB Use of the DFBs from the Different Programming Languages Rules for Using DFBs ina Program 0 eee eee eee Use of IODDTs inaDFB Use of a DFB in a Ladder Language Program 45 Use of a DFB in a Structured Text Language Program Use of a DFB in an Instruction List Program 20 05 Use of a DFB in a Program in Function Block Diagram Language User Diagnostics DFB Presentation of User Diagnostic DFBs 0s eae EFB Error Codes and Values 000se0ees Tables of Error Codes for the Base Library 00 0 0 eee Tables of Error Codes for the Diagnostics Library Tables of Error Codes for the Communication Library Tables of Error Codes for the IO Management Library Tables of Error Codes for the CONT_CTL Library Tables of Error Codes for the Motion Library 0 5 Tables of Error Codes for the Obsolete Library Com
448. od overrun SW33 Execution time in ms of the last cycle SW34 Execution time in ms of the longest cycle SW35 Execution time in ms of the shortest cycle 72 35006144 07 2011 Program Structure Presentation of Auxiliary Tasks General Structure Execution Control The auxiliary tasks are intended for slower processing tasks These are the least priority tasks It is possible to program up to 4 auxiliary tasks AUX0 AUX1 AUX2 or AUX3 on the Premium TSX P57 5e e and Quantum 140 CPU 6eeee PLCs Auxiliary tasks are not available for Modicon M340 PLCs The auxiliary tasks AUX are made up of sections and subroutines Each section of the auxiliary task is programmed in one of the following languages LD FBD IL or ST The SFC language is not usable in the sections of an auxiliary task A maximum of 64 subroutines can be programmed in the LD FBD IL or ST language These are called in the task sections The execution of auxiliary tasks is periodic They are the least priority The auxiliary task period can be fixed from 10ms to 2 55s The auxiliary tasks can be controlled by program by bits and system words System objects Description SW2 Period of auxiliary task 0 SW3 Period of auxiliary task 1 SW4 Period of auxiliary task 2 SW5 Period of auxiliary task 3 S32 Activation of auxiliary task 0 S33 Activation of auxiliary task 1 S34 Activatio
449. ode number of the SDO transfert SW153 Index number of the SDO transfert SW154 Sub index number of the SDO transfert SW160 to SW167 PREMRACKO to PREMRACK7 Premium and Modicon M340 Rack 0 to 7 error Words SW160 to SW167 are associated respectively to racks 0 to 7 Bits 0 to 15 of each of these words are associated with the modules located in positions 0 to 15 of these racks The bit is at 0 if the module is in fault and at 1 if the module is operating correctly Example Sw163 5 0 The module located in position 5 on rack 3 is in fault In case of half racks 2 contiguous half racks make a complete normal rack referenced by only one Swi 35006144 07 2011 223 System Objects 224 35006144 07 2011 Data Description In This Part This part describes the different data types that can be used in a project and how to implement them What s in this Part This part contains the following chapters Chapter Chapter Name Page 7 General Overview of Data 227 8 Data Types 235 9 Data Instances 293 10 Data References 307 35006144 07 2011 225 Data Description 226 35006144 07 2011 General Overview of Data Subject of this Chapter This chapter provides a general overview of e the different data types e the data instances e the data references What s in this Chapter This chapter contains the following topics
450. odes 35006144 07 2011 23 Presentation Project Browser Introduction Structural View Functional View The Project Browser displays all project parameters The view can be shown as structural topological and or functional view Project Browser Te Structural View sum Functional View E Station E lt j Proportioning Machine Configuration Proportioning QJ 0 X Bus R Program Derived Data Types Q Table Derived FB Types RA Screen Qj Variables amp FB instances Filling Feedbox i Communication eo Program 5 Programs ladder1 Eg Tasks fq Table E MAST EA Screen 483 Sections ES DEE B process E Program H E Filling Feeding Box ST1 H E Mixing Q Table Mixing_1 ST E Screen E Mixing_2 ST2 E Process oE S SR Sections a cael El Table T e e he project browser offers the following features in the structural view Creation and deletion of elements The section symbol shows the section programming language and if it is protected in case of an empty section the symbol is grey View the element properties Creation of user directories Launching the different editors Start the import export function The project browser offers the following features in functional view Creation of functional modules Insertion of sections animation tables etc using Drag and Drop from the stru
451. of S78 e 16 2258 execution of HALT instruction e 16 DE87 calculation error on floating point numbers S18 these errors are listed in the word SW17 e 16 DEBO Watchdog overflow S11 e 16 DEFO division by 0 S18 e 16 DEF1 character string transfer error S15 e 16 DEF2 arithmetic error S18 e 16 DEF3 index overflow S20 NOTE The following codes 16 8xF4 16 9xF4 and 16 DEF7 indicate an error on Sequencial Function Chart SFC YES YES YES SW126 ERRADDRO SW127 ERRADDR1 Blocking error instruction address Address of the instruction that generated the application blocking error For 16 bit processors TSX P57 1 2ee SW126 contains the offset for this address e SW127 contains the segment number for this address For 32 bit processors e SW126 contains the least significant word for this address e SW127 contains the most significant word for this address YES YES YES 35006144 07 2011 195 System Objects 6 3 Atrium Premium specific System Words Subject of this Section This section describes the system words SW128 to SW167 for Premium and Atrium PLCs A WARNING UNEXPECTED APPLICATION BEHAVIOR Do not use system objects Si SWi as variable when they are not documented Failure to follow these instructions can result in death serious injury or equipment damage What s in this Section This
452. of call Function block call in the informal form of CAL with a list of input parameters Instance Name Actual Parameter Input CAL MY_COUNT varl reset 100 out current Actual Parameter Output Calling the same function block in FBD MY_COUNT cTU val CU QE out rest 7R 100 PV cv current With informal calls it is not necessary to assign a value to all formal parameters see also Parameter see page 478 This is a supplement to IEC 61131 3 and must be enabled explicitly An empty parameter field is used to omit a parameter Call with empty parameter field CAL MY_COUNT varl 100 out current Calling the same function block in FBD MY_COUNT cTU vari CU QF out R 100 PV cv current An empty parameter field does not have to be used if formal parameters are omitted at the end MY COUNT varl reset 35006144 07 2011 483 Instruction List IL Calling the same function block in FBD MY_COUNT CTU vari 4CU Qp reset jR PV CV F CAL and Load Save the Input Parameters Function blocks may be called with an instruction list consisting of loading the actual parameters followed by saving into the formal parameter followed by the CAL instruction The sequence of loading and saving the parameters is not significant Only load and save instructions for the function block currently being configured are allowed betwe
453. of the fourth drop i 4 e the outputs of the second drop i 2 6 Request to update e the inputs of the last drop i 5 e the outputs of the third drop i 3 7 Request to update the outputs of the fourth drop i 4 Adjustment of the Drop Hold Up Time Value In order for the remote outputs to be correctly updated and avoid fallback values to be applied the drop hold up time must be set to at least twice the mast task cycle time Therefore the default value 300 ms must be changed if the MAST period is set to the maximum value 255 ms The adjustment of the Drop Hold Up time see Modicon Quantum Hot Standby System User Manual must be done on all configured drops 88 35006144 07 2011 Program Structure 3 4 Multitasking Execution Subject of this Section This section describes how a multitasking application operates What s in this Section This section contains the following topics Topic Page Multitasking Software Structure 90 Sequencing of Tasks in a Multitasking Structure 92 Task Control 94 Assignment of Input Output Channels to Master Fast and Auxiliary Tasks 97 Management of Event Processing 99 Execution of TIMER type Event Processing 100 Input Output Exchanges in Event Processing 104 How to Program Event Processing 105 35006144 07 2011 89 Program Structure Multitasking Software Structure Tasks and Processing The task structure of this type of a
454. of the indexed object except becomes less than 0 or exceeds the for safety number of objects declared in the PLCs configuration In this case itis as if the index were equal to 0 It must be tested by the user program after each operation where there is a risk of overflow then reset to 0 if there is indeed an overflow When the S20 bit switches to 1 the application stops in error state if the S78 bit has been to set to 1 This bit is not available on Quantum safety PLCs S21 First task Tested in a task Mast Fast Aux0 Aux1 0 YES YES YES 1RSTTASKRUN cycle Aux2 Aux3 the bit S21 indicates the first cycle of this task including after a cold start with automatic start in run anda warm start S21 is set to 1 at the start of the cycle and reset to zero at the end of the cycle Note The bit S21 does not have the same meaning in PL7 as in Unity Pro 156 35006144 07 2011 System Objects Description of System Bits S30 to S59 Detailed Description Description of system bits S30 to S59 Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S30 Activation de Normally set to 1 The master task is 1 YES YES YES MASTACT activation of deactivated when the user sets the bit to 0 except the master This bit is taken into consideration by the for safety task system at the end of each MAST ta
455. oint Errors page 637 624 35006144 07 2011 EFB Error Codes and Values Output Processing Table of error codes and errors values created for EFBs of the Output Processing family EFB Error code ENO Error Error Error description name state valuein value in in Dec Hex case of error MS W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range MS FP_ERROR F See table Common Floating Point Errors page 637 MS Status word values T F For details about the MS status word refer to the MS description see Unity Pro Control Block Library PWM1 WAF_PBM_TMINMAX 30113 16 8A5F t_min lt t_max PWM1 FP_ERROR See table Common Floating Point Errors page 637 SERVO FP_ERROR F See table Common Floating Point Errors page 637 SERVO Status word values T F For details about the SERVO status word refer to the SERVO description see Unity Pro Control Block Library SPLRG W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range SPLRG E_ERR_NULL_INPUT_SCALE F 30121 16 8A57 Null input scale max and min limit must be different SPLRG FP_ERROR F See table Common Floating Point Errors page 637 SPLRG Status word values T F For details about the SPLRG status word refer to the SPLRG description see Unity Pro Control Block Library 35006144 07 2011 625 EFB Error Codes and Values Setpoint Ma
456. ol state M340 Atrium S11 Watchdog Normally at 0 this is set to 1 by the 0 YES YES YES WDG overflow system as soon as the task execution time becomes greater than the maximum execution time i e the watchdog declared in the task properties S12 PLC in RUN This bit is set to 1 by the system when O YES YES YES PLCRUNNING the PLC is in RUN It is set to 0 by the system as soon as the PLC is no longer in RUN STOP INIT etc S13 First cycle Switching the PLC from STOP mode to YES YES YES 1RSTSCANRUN after RUN mode including after a cold start switching to with automatic start in run is indicated RUN by setting system bit S13 to 1 This bit is reset to 0 at the end of the first cycle of the MAST task in RUN mode 35006144 07 2011 153 System Objects Description of System Bits S15 to S21 Detailed Description Description of system bits S15 to S21 Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S15 STRINGERROR Character string fault Normally set to 0 this bit is set to 1 when the destination zone for a character string transfer is not of sufficient size including the number of characters and the end of string character to receive this character string The application stops in error state if the S78 bit has been to set to 1 This bit must be reset to 0 by the application This bit is not available on Quantum safety PLCs
457. olled by the system every second A backup takes place only if the application in RAM is different from the one in the card This bit is set to 0 by the system when the backup is finished Warning Before doing a new backup by setting bit S66 to 1 you must test that bit S66 has been set to 0 by the system meaning that the previous backup has finished Never use 2S 66 if itis set to 1 This may lead to a loss of data Bit S66 is particularly useful after replacement of init value S94 and save param 35006144 07 2011 161 System Objects Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S67 PCMCIABATO State of the application memory card battery This bit is used to monitor the status of the main battery when the memory card is in the upper PCMCIA slot This applies to Atriums Premiums and Quantums CPU 140 CPU 671 60 60S 140 CPU 672 61 140 CPU 651 60 60S 140 CPU 652 60 and 140 CPU 651 50 e set to 1 main voltage battery is low The application is kept but the battery must be replaced following the predictive maintenance see Premium and Atrium using Unity Pro Processors racks and power supply modules Implementation manual procedure e set to 0 main battery voltage is sufficient application always kept e Bit S67 is supported by Unity version 2 02 NOTE With blue PCMCIAs PV gt 04 bit
458. on Initial state Modicon M340 Quantum Premium Atrium SW108 FORCEDIOIM Forced bit counting status register Word SW108 increments each time an discrete bit l Q or M is forced e decrements each time an discrete bit is unforced 0 YES YES YES SW109 FORCEDANA Forced analog channel counting status register Word SW109 e increment each time an analog channel is forced e decrement each time an analog channel is unforced YES NO YES SW116 REMIOERR Fipio I O error Normally set to 0 each bit for this word signifies the Fipio exchange status of the exchange in which it is being tested This word is to be reset to O by the user More details on bits of word SW116 SW116 0 1 explicit exchange error variable has not been exchanged on the bus SW116 1 1 time out on an explicit exchange no reply at the end of time out SW116 2 1 maximum number of explicit exchanges achieved at the same time SW116 3 1 a frame is invalid SW116 4 1 the length of frame received is greater than the length that was declared SW116 5 reserved on 0 SW116 6 1 a frame is invalid or an agent is initializing SW116 7 1 absence of a configured device SW116 8 1 channel fault at least one device channel is indicating a fault SW116 9 to 15 reserved on 0 NO NO YES 35006144 07 2011 193 System Obje
459. on s data area You must identify each DFB instance you create with a name of a maximum 32 characters the authorized characters used depend on the choice made in the Identifiers area of the Language extensions tab in the Project Settings see Unity Pro Operating Modes The first character must be a letter Keywords and symbols are prohibited Creation of an Instance From a DFB type you can create as many instances as necessary the only limitation is the size of the PLC memory Initial Values The initial values of the parameters and public variables that you defined when creating the DFB type can be modified for each DFB instance Not all DFB parameters have an initial value Modification of the initial values of the elements in the DFB instances EDT except String EDT DDT FB ANY_ARRAY IODDT ANY String type Type structure Inputs Yes No No No No No Input Output No No No No No No No Outputs Yes Yes No Yes No Public variables Yes Yes Yes Yes Private Variables No No No No No 572 35006144 07 2011 DFB instance Modification of the initial values of the elements in the DFB type EDT except String Type EDT DDT FB ANY_ARRAY IODDT ANY String type structure Inputs Yes No No No No No Input Output No No No No No No No Outputs Yes Yes No Yes No Public variables Yes Yes Yes Y
460. on evaluations 6a Sequence loop left to right priority of transition evaluations 49 1 CONFIGURATION END CONFIGURATION construction Note 12 page 653 5a Periodic TASK construction 5b Non periodic TASK construction 6a WITH construction for PROGRAM to TASK association Note 9 page 653 6c PROGRAM declaration with no TASK association Note 10 page 653 50 5a Non preemptive scheduling Note 13 page 653 5b Preemptive scheduling Note 14 page 653 Note 1 List of type conversion functions BOOL TO BYTE BOOL TO DINT BOOL TO INT BOOL TO REAL BOOL TO TIME BOOL TO UDINT BOOL TO UINT BOOL TO WORD BOOL TO DWORD BYTE TO BOOL BYTE TO DINT BYTE TO INT BYTE TO REAL BYTE TO TIME BYTE TO UDINT BYTE TO UINT BYTE TO WORD TO DWORD BYTE TO BIT e DINT TO BOOL DINT TO BYTE DINT TO INT DINT TO REAL DINT TO TIME DINT TO UDINT DINT TO UINT DINT TO WORD DINT_ TO DWORD DINT TO DBCD DINT TO STRING e INT TO BOOL INT TO BYTE INT TO DINT INT TO REAL INT TO TIMI T TO _UDINT INT_TO_UINT INT TO WORD INT TO BCD INT TO DBCD NT_TO_DWORD INT TO STRING I I e REAL TO BOOL REAL TO BYTE REAL TO DINT REAL TO INT R R EAL TO TIME REAL TO UDINT REAL TO _UINT REAL TO WORD EAL TO DWORD REAL TO STRING e TIME TO BOOL TIME TO BYTE
461. onnection is established This comparison can produce the following results e Different projects on the PC and the PLC In this case online mode is restricted Only PLC control commands e g start stop diagnostic services and variable monitoring are possible Changes cannot be made to the PLC program logic or configuration However the downloading and uploading functions are possible and run in an unrestricted mode same project on PC and PLC e Same projects on the PC and the PLC There are two different possibilities e ONLINE SAME BUILT The last project generation on the PC was downloaded to the PLC and no changes were made afterwards i e the projects on the PC and the PLC are absolutely identical In this case all animation functions are available and unrestricted e ONLINE EQUAL NOT BUILT The last project generation on the PC was downloaded to the PLC however changes were made afterwards In this case the animation functions are only available in the unchanged project components 35006144 07 2011 55 Presentation Animation Different possibilities are provided for the animation of variables e Section animation All programming languages FBD LD SFC IL and ST can be animated The variables and connections are animated directly in the section ST1 MAST A E TIMER IN NOT pulse t ls Blink timer pulse i 1h 5 Count every pulse IF pulse 1 THEN E e O a END_IF Animate lights accor
462. operator with the next highest rank etc until the evaluation is complete Operators with the same rank are performed from left to right as they are written in the expression This sequence can be altered with the use of parentheses lf for example A B C and D have the values 1 2 3 and 4 and are calculated as follows A B C D the result is 9 In the case of the following calculation A B C D the result is 0 If an operator contains two operands the left operand is executed first e g in the expression SIN A COS B the expression SIN A is calculated first then COS B and only then is the product calculated 500 35006144 07 2011 Structured Text ST Error Behavior IEC Conformity The following conditions are handled as an error when executing an expression e Attempting to divide by 0 e Operands do not contain the correct data type for the operation e The result of a numerical operation exceeds the value range of its data type If an error occurs when executing the operation the corresponding Systembit S is set if supported by the PLC being used For a description of IEC conformity for the ST programming language see IEC Conformity see page 639 35006144 07 2011 501 Structured Text ST Operands Introduction Data Types An operand can be an address a literal a variable a multi element variable an element of a multi element variable a function ca
463. or with the contents of the operand If data type BOOL the contents of the accumulator is less than the BYTE WORD DWORD contents of the operands the result is a Boolean STRING INT DINT 1 If the contents of the accumulator is greater UINT UDINT REAL than equal to contents of the operands the result TIME DATE DT or is a Boolean 0 TOD Example In the example the value of D is 1 if Ais smaller than 10 otherwise the value of D is 0 LD A LT 10 ST D 35006144 07 2011 465 Instruction List IL Call Operators IL programming language call operators type is dependent on procedure Operator Modifier Meaning Operands Description CAL C CN Call of a Instance name of the A function block DFB or subprogram is called up only if the function block function block DFB conditionally or unconditionally with CAL accumulator DFB or or subprogram see also Calling Elementary Function Blocks and contents are subprogram Derived Function Blocks page 478 and of the BOOL Subroutine Call page 468 data type FUNCTIO Executing a Literal variable A function is performed by specifying the name of NNAME function direct address data the function type is dependenton see also Calling Elementary Functions page 473 function PROCEDU Executing a Literal variable A procedure is performed by specifying the name RENAME procedure direct address data of the procedure see also Calling P
464. orl Resultl Error2 Result2 The objects of the FBD programming language Function Block Diagram help to divide a section into a number of e EFs and EFBs Elementary Functions see page 324 and Elementary Function Blocks see page 325 e DFBs Derived Function Blocks see page 326 e Procedures see page 326 and e Control Elements see page 335 These objects combined under the name FFBs can be linked with each other by e Links see page 336 or e Actual Parameters see page 327 Comments regarding the section logic can be provided using text objects see Text Object page 338 322 35006144 07 2011 Function Block Language FBD Section Size One FBD section consists of a window containing a single page This page has a grid background A grid unit consists of 10 coordinates A grid unit is the smallest possible space between 2 objects in an FBD section The FBD programming language is not cell oriented but the objects are still aligned with the grid coordinates An FBD section can be configured in number of cells horizontal grid coordinates and vertical grid coordinates IEC Conformity For a description of the extent to which the FBD programming language conforms to IEC see IEC Conformity see page 639 35006144 07 2011 323 Function Block Language FBD Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures FFBs Introduction FFB is the generic
465. ossary EDT EF EFB EDT is the abbreviation of Elementary Data Type These types are as follows BOOL EBOOL WORD DWORD Is the abbreviation of Elemantary Function This is a block which is used in a program and which performs a predefined software function A function has no internal status information Multiple invocations of the same function using the same input parameters always supply the same output values Details of the graphic form of the function invocation can be found in the Functional block instance In contrast to the invocation of the function blocks function invocations only have a single unnamed output whose name is the same as the function In FBD each invocation is denoted by a unique number via the graphic block this number is automatically generated and can not be altered You position and set up these functions in your program in order to carry out your application You can also develop other functions using the SDKC development kit Is the abbreviation for Elementary Function Block This is a block which is used in a program and which performs a predefined software function EFBs have internal statuses and parameters Even where the inputs are identical the output values may be different For example a counter has an output which indicates that the preselection value has been reached This output is set to 1 when the current value is equal to the preselection va
466. owed Language LD FBD IL ST or SFC Task or Master fast auxiliary event processing Condition A BOOL or EBOOL type bit variable can be used to condition the optional execution of the section Comment 256 characters maximum Protection Write protection read write protection 78 35006144 07 2011 Program Structure Description of SFC sections General Example The sections in Sequential Function Chart language are made up of e a main chart programmed in SFC e macro steps MS programmed in SFC e actions and transitions programmed in LD FBD ST or IL The SFC sections are programmable only in the master task see detailed description of SFC sections The following diagram gives an example of the structure of an SFC section and uses the chart to show the macro step calls that are used CJ MAST Sections Folder Airlock Oven_1 A Sequential processing Chart L g TS MS 11 LL JS MS_2_1 beeen ol MS Unused Macro L G 5 MS_41 Actions rrr a Transitions Dryer 35006144 07 2011 79 Program Structure Description of Subroutines Overview of Subroutines Subroutines are programmed as separate entities either in Ladder language LD Functional block language FBD
467. p becomes active the internal timer is started and the action becomes active after the process of the manually defined time duration The action first becomes inactive again when qualifier R is used for a reset in another step If the step becomes inactive before the internal time has elapsed then the action does not become active Note For this qualifier an additional duration of data type TIME must be defined P1 Pulse rising edge If the step becomes active 0 gt 1 edge the action becomes 1 and this remains for one program cycle independent of whether or not the step remains active Note Independent of their position in the action list field actions with the qualifier P1 are always processed first More information can be found in the Action see page 405 of the SFC sequence language PO Pulse falling edge If the step becomes inactive 1 gt 0 edge the action becomes 1 and this remains for one program cycle Note Independent of their position in the action list field actions with the qualifier PO are always processed last More information can be found in the Action see page 405 of the SFC sequence language 35006144 07 2011 409 SFC Sequence Language 13 4 Transitions and Transition Sections Overview This section describes the transition objects and transition sections of the SFC sequence language What s in this Section This section contains the following topi
468. pee weet 250 The Time of Day TOD Type 0 0 e eee eee eee 251 The Date and Time DT Type 0 cece ee eee 252 8 3 Elementary Data Types EDT in Real Format 4 253 Presentation of the Real Data Type 0 2000 eee eee 253 8 4 Elementary Data Types EDT in Character String Format 258 Overview of Data Types in Character String Format 258 8 5 Elementary Data Types EDT in Bit String Format 261 Overview of Data Types in Bit String Format 5 262 Bit String Types sase erick cece ete eee 263 8 6 Derived Data Types DDT IODDT 00 ce eee eee 265 Arrays oe eT ea e eee wean Bee io Oe ta ee et 266 SUUCIUICS swine Le ioe doko ay deat gina kes ee haa eee 269 Overview of the Derived Data Type family DDT 270 DDT Mapping Rules 0 cece tees 272 Overview of Input Output Derived Data Types IODDT 275 8 7 Function Block Data Types DFB EFB 0 e eee eae 277 Overview of Function Block Data Type Families 278 Characteristics of Function Block Data Types EFB DFB 280 Characteristics of Elements Belonging to Function Blocks 282 8 8 Generic Data Types GDT 0 cee eee 285 Overview of Generic Data Types 0 0 0 cee eee 285 8 9 Data Types Belonging to Sequential Function Charts SFC 287
469. perties of a variable in a separate properties dialog box Hardware Dependent Data Types IODDT IODDTs are used to assign the complete I O structure of a module to an individual variable Assignment of IODDTs aye Data Editor Variables Filter Name Function blocks DFB types LF Name Bl Elementary Derived E Derived VO CH_ERROR W temp_feding_box E E temp_fieding_box STS_IN_PROGR CMD_IN_PROGR _ ADJ_IN_PROGR r CXCII_RPT OSER CMD_ERR The following functions are available Complete I O structures can be assigned with individual variables using IO DDTs After entering the variables addresses all elements of the structure are automatically assigned with the correct input output bit or word Because it is possible to assign addresses later on standard modules can be simply created whose names are defined at a later date An alias name can be given to all elements of an IODDT structure 35006144 07 2011 33 Presentation Derived Data Types DDT The DDT types tab is used for defining derived data types DDTs A derived data type is the definition of a structure or array from any data type already defined elementary or derived Tab DDT types f Data Editor BE Variables DDT types Function blocks DFB types Filter LY Name i Name v_ Type v
470. ple The input parameter Validation may be defined as BOOL and associated with a Mi internal bit of type EBOOL However in the internal code of the DFB type the input parameter actually has BOOL type properties it cannot manage edges 580 35006144 07 2011 Use of DFBs Assignment of Parameters The following table summarizes the different possibilities for assigning parameters in the different programming languages Parameter Type Assignment of the parameter 1 Assignment Inputs EDT 2 Connected value object or Optional 3 expression BOOL Connected value object or Optional expression DDT Connected value or object Compulsory ANY Connected or object Compulsory ANY_ARRAY Connected or object Compulsory Inputs outputs EDT Connected or object Compulsory DDT Connected or object Compulsory IODDT Connected or object Compulsory ANY Connected or object Compulsory ANY_ARRAY Connected or object Compulsory Outputs EDT Connected or object Optional DDT Connected or object Optional ANY_ Connected or object Compulsory ANY_ARRAY Connected or object Optional 1 Connected in Ladder LD or Function Block Diagram FBD language Value or object in Instruction List IL or Structured Text ST language 2 Except BOOL type parameters 3 Except for STRING type parameters that is compulsory Assignment of Parameters The following table summarizes the d
471. ple for Premium and Quantum is as follows e the elements are stored in the order in which they are declared in the structure e the basic element is the byte alignment of data on the memory bytes e each element has an alignment rule e the BOOL and BYTE types are indiscriminately aligned on the odd or even bytes e all the other elementary types are aligned on the even bytes e the structures and tables are aligned according to the alignment rule for the BOOL and BYTE types if they only contain BOOL and BYTE elements otherwise they are aligned on the memory s even bytes A WARNING RISK OF INCOMPATIBILITY AFTER CONCEPT CONVERSION With the Concept programming application the data structures do not handle any shift in offsets each element is set one after the other in the memory regardless of its type Consequently we recommend that you check everything in particular the consistency of the data when using DDTs located on the State RAM risk of shifts or functions for communication with other devices transfers with a different size from those programmed in Concept Failure to follow these instructions can result in death serious injury or equipment damage 272 35006144 07 2011 Data Types Principle for Modicon M340 Examples The storage principle for Modicon M340 PLCs is as follows e elements are stored in the order in which they are declared in the structure e the basic element is the b
472. pplication is as follows Task Processing Designation Description Master MAST Always present may be cyclic or periodic Fast FAST Optional always periodic Auxiliary AUX 0 to 3 Optional and always periodic Event EVTi and Called by the system when an event occurs on an TIMERi input output module or triggered by the event timer see page 99 These types of processing are optional and can be used by applications that need to act on inputs outputs within a short response time Illustration The following diagram shows the tasks in a multitasking structure and their level of priority Auxiliary Master Fast Event task task task processing 7 AUXi MAST FAST EVTi and TIMERi a EEE p Priority ese Description The master MAST task is still the application base The other tasks differ depending on the type of PLC see page 67 Levels of priority are fixed for each task in order to prioritize certain types of processing Event processing can be activated asynchronously with respect to periodic tasks by an order generated by external events It is processed as a priority and requires any processing in progress to be stopped 90 35006144 07 2011 Program Structure Precautions Multitasks golden rules 4 CAUTION UNEXPECTED MULTITASK APPLICATION BEHAVIOR The sharing of Inputs Outputs b
473. pression 35006144 07 2011 587 Use of DFBs Use of EN ENO Parameters Label Element Input assigned by a value Connected input Input assigned by an object address or symbol Input parameters Output parameters o o NIIA A Input output parameters See EN and ENO Parameters page 563 588 35006144 07 2011 Use of DFBs Use of a DFB in a Structured Text Language Program Principle In Structured Text a user function block is called by a DFB call name of the DFB instance followed by a list of arguments Arguments are displayed in the list between brackets and separated by commas The DFB call can be of one of two types e aformal call when arguments are assignments parameter value In this case the order in which the arguments are entered in the list is not important The EN input parameter and the ENO output parameter can be used to control the execution of the function block e an informal call when arguments are values expression object or an immediate value In this case the order in which the arguments are entered in the list must follow the order of the DFB input parameters including for non assigned inputs the argument is an empty field It is not possible to use EN and ENO parameters DFB Name argument 1 argument 2 argument n NOTE The ANY_ARRAY type inputs generic data type outputs ANY_ and input outputs of a DFB must
474. put data 32 maximum 32 maximum 280 35006144 07 2011 Data Types Element EFB DFB Number of interfaces 32 maximum 2 32 maximum 2 Inputs Outputs Inputs Outputs Public data No limits 1 No limits 1 Private data No limits 1 No limits 1 Programming language C language Language Structured Text e Instruction List e Ladder language function block Section A section is defined by aname maximum 32 characters a validation condition a comment maximum 256 characters e a protection e without e read only e read write mode A section cannot access declared variables in the application except for system double words SDi system words SWi e system bits Si 1 the only limit is the size of the PLC s memory 2 the EN input and ENO output are not taken into account 35006144 07 2011 281 Data Types Characteristics of Elements Belonging to Function Blocks What is an element Each element interface data or internal data is defined by e aname see page 234 maximum 32 characters defined by the user e atype which can belong to the following families e Elementary Data Types EDT e Derived Data Type DDT e Function Block data types EFB DFB e an optional comment maximum 1024 characters The authorized characters correspond to the ASCII codes 32 to 255 e an initial value e an access rig
475. puts may not have literals or constants assigned to them e VAR_IN_OUT outputs may not have values assigned to them e VAR_IN_OUT variables cannot be used outside of the procedure call Calling a procedure with VAR_IN_OUT variable in ST PROC2 IN1 V1 IN2 V2 I01 V3 OUT1 gt V4 OUT2 gt V5 548 35006144 07 2011 Structured Text ST Calling the same procedure in FBD PROC2 vV1 INI OUT1 V4 v2 IN2 OUT2 V5 V3 101 101 V3 VAR_IN_OUT variables cannot be used outside of the procedure call The following procedure calls are therefore invalid Invalid call example 1 InOutProc inout V1 Assigning the variables v1 to a VAR_IN_OUT parameter Error The operation cannot be executed since the VAR_IN_OUT parameter cannot be accessed outside of the procedure call Invalid call example 2 V1 InOutProc inout Assigning a VAR_IN_OUT parameter to the v1 variable Error The operation cannot be executed since the VAR_IN_OUT parameter cannot be accessed outside of the procedure call The following procedure calls are always valid Valid call example 1 InOutProc inout V1 Calling a procedure with the VAR_IN_OUT parameter and formal assignment of the actual parameter within the procedure call Valid call example 2 InOutProc V1 Calling a procedure with the VAR_IN_OUT parameter and informal assignment of th
476. r cable A e most significant byte counts the errors detected e least significant byte counts non responses SW544 is the global error totalizer counter for cable B e most significant byte counts the errors detected e least significant byte counts non responses Word Function Description Initial Symbol state SW539 Communication The words SW539 to SW541 are the communication error CBERRCNTO status on cable B words on cable B SW540 SW539 CBERRCNT1 to e most significant byte counts framing errors SW541 e least significant byte counts overruns of the DMA CBERRCNT2 receiver SW540 e most significant byte counts receiver errors e least significant byte counts incorrect station receptions e SW541 SW541 15 1 short frame SW541 14 1 no end of frame SW541 3 1 CRC error SW541 2 1 alignment error e SW541 1 1 overrun error SW541 13 to 4 and 0 are unused SW542 Global The words SW542 to SW544 are the global communication GLOBERRCNTO communication error words SW543 status e SW542 displays the global communication status GLOBERRCNT1 e SW542 15 1 communication operating correctly SW544 SW542 14 1 communication on cable A operating GLOBERRCNT2 correctly SW542 13 1 communication on cable B operating correctly SW545 to SW547 MODUNHEALTH1 IOERRCNT1 IORETRY1 Status of the local station For the PLCs where station 1 is reserved for
477. r describes the operating modes of the PLC in the event of power outage and restoral the impacts on the application program and the updating of inputs outputs What s in this Chapter This chapter contains the following sections Section Topic Page 5 1 Modicon M340 PLCs Operating Modes 122 5 2 Premium Quantum PLCs Operating Modes 133 5 3 PLC HALT Mode 145 35006144 07 2011 121 Operating Modes 5 1 Modicon M340 PLCs Operating Modes Subject of this Section This section describes the operating modes of the Modicon M340 PLCs What s in this Section This section contains the following topics Topic Page Processing of Power Outage and Restoral of Modicon M340 PLCs 123 Processing on Cold Start for Modicon M340 PLCs 125 Processing on Warm Restart for Modicon M340 PLCs 129 Automatic Start in RUN for Modicon M340 PLCs 132 122 35006144 07 2011 Operating Modes Processing of Power Outage and Restoral of Modicon M340 PLCs General If the duration of the outage is less than the power supply filtering time it has no effect on the program which continues to run normally If this is not the case the program is interrupted and power restoration processing is activated Filtering time PLC Alternating Current Direct Current BMX CPS 2000 10ms BMX CPS 3500 BMX CPS 3540T BMX CPS 2010 ims BMX CPS 3020 Illustration The following illustratio
478. r of function block rates messages received per second Can be read by the user program or by the terminal These counters does not include other outgoing requests coming from an IO Scanner for example 188 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW93 Memory card file system format com mand amp status Can be read and written by the user program or the terminal This word is used by the customer to format or clean up the memory card The format operation deletes the web pages To recover them perform one of the two following actions e Use FTP e Before performing the format save the web pages using FTP e After performing the format reload the web pages via FTP e Reinstall the firmware operating system of the processor The clean up operation deletes the content of the data storage directory Formatting or clean up is possible only in Stop mode SW93 0 1 arising edge starts the format operation SW93 1 gives the file system status after a format or a clean Up operation request SW93 1 Oinvalidfile system or command under progress SW93 1 1 valid file system SW93 2 1 arising edge starts the clean up operation 0 YES NO NO SW94 SW95 Applica tion modi fication signature These two words contain a 32
479. r of inputs can be increased 354 35006144 07 2011 Ladder Diagram LD Elementary Function Block Elementary function blocks have internal states If the input values are the same the value on the output can be different each time the function is called e g fora counter the value on the output is incremented An elementary function block is represented graphically as a frame with inputs and outputs The inputs are always represented on the left and the outputs always on the right of the frame The name of the function block i e the function block type is displayed in the center of the frame The instance name is displayed above the frame Function blocks can have more than one output The name of the function block i e the function block type is displayed in the center of the frame The execution number see page 380 for the function block is shown to the right of the function block type The instance name is displayed above the frame The instance name serves as a unique identification for the function block in a project The instance name is created automatically and has the following structure TYPE_n where TYPE is the function block type name TYPE_n e TYPE Function block type name e n sequential number of the function block in the project NOTE Prior to Unity Pro V6 0 the instance name was created automatically with the structure FBI_n where FBI Function Block Instance This automatically
480. r of the current section j internal current sequential macro step number of the current section Input step MS_k 1_IN MS Macro Step k internal current sequential number of the calling section 1 internal current sequential macro step number of the calling section IN Input Step Output step MS_k_1_OUT MS Macro Step k internal current Sequential number of the calling section 1 internal current Sequential macro step number of the calling section OUT Output Step Normal Step within a macro section S Step k internal current Sequential number of the calling section m internal current Sequential step number of the calling section You can change the suggested numbers to give you a better overview Step names maximum 28 characters for macro step names maximum 32 characters for step names must be unique within the entire project i e no other step variable or section with the exception of the name of the macro section assigned to the macro step etc may exist with the same name There are no case distinctions The step name must correspond with the standardized name conventions If the name of the macro step is changed then the name of the respective macro section and the steps within it are changed automatically For example If MS_1_1 is renamed to MyStep then the step names in the macro section are renamed to MyStep IN MyStep 1 MyStep_n MyS
481. ram the DFB types the variables and animation tables the cross references When building the documentation file you can include all or some of these items 676 35006144 07 2011 Glossary Driver A program indicating to your computer s operating system the presence and characteristics of a peripheral device We also use the term peripheral device driver The best known drivers are printer drivers To make a PLC communicate with a PC communication drivers need to be installed Uni Telway XIP Fipway etc DT DT is the abbreviation of Date and Time The DT type coded in BCD in 64 bit format contains the following information The year coded in a 16 bit field the month coded in an 8 bit field the day coded in an 8 bit field the hour coded in a 8 bit field the minutes coded in an 8 bit field the seconds coded in an 8 bit field NOTE The 8 least significant bits are unused The DT type is entered as follows DT lt Year gt lt Month gt lt Day gt lt Hour gt lt Minutes gt lt Seconds gt This table shows the lower upper limits in each field Field Limits Comment Year 1990 2099 Year Month 01 12 The left 0 is always displayed but can be omitted at the time of entry Day 01 31 For the months 01 03 05 07 08 10 12 01 30 For the months 04 06 09 11 01 29 For the month 02 leap years 01 28 For the month 02 non leap years Hour 00 23 Th
482. ram for a mono task application is associated with a single user task the master task see page 71 You can choose the type of master task execution e cyclic e periodic The following illustration shows the operating cycle Acquisition of inputs Program processing Updating of outputs loo Description of the Different Phases The table below describes the operating phases Phase Description Acquisition of Writing to memory of the status of the data on the inputs of the discrete and application specific inputs modules associated with the task These values can be modified by forcing values Program Execution of application program written by the user processing Updating of Writing of output bits or words to the discrete or application specific modules associated with the outputs task depending on the state defined by the application As for the inputs the values written to the outputs can be modified by forcing values NOTE During the input acquisition and output update phases the system also implicitly monitors the PLC management of system bits and words updating of current values of the real time clock updating of status LEDs and LCD screens not for Modicon M340 detection of changes between RUN STOP etc and the processing of requests from the terminal modifications and animation 82 35006144 07 2011 Program Structure Operating
483. rators of the IL programming language Operator Modifier Meaning Operands Description S Sets the Variable direct S sets the operand to 1 when the current content operandto1 address of BOOL of the accumulator is a Boolean 1 when the data type Example In this example the value of A is loaded accumulator to the accumulator If the content of the content is 1 accumulator value of A is 1 then OUT is set to 1 LDA S OUT Usually this operator is used together with the reset operator R as a pair Example This example shows a RS flip flop reset dominant that is controlled through the two Boolean variables A and c LDA S OUT LD C R OUT 460 35006144 07 2011 Instruction List IL Operator Modifier Meaning Operands Description R Sets the Variable direct R sets the operand to 0 when the current content operand to0 address of BOOL of the accumulator is a Boolean 1 when the data type Example In this example the value of A is loaded accumulator to the accumulator If the content of the content is 1 accumulator value of A is 1 then OUT is set to 0 LD A R OUT Usually this operator is used together with the set operator s as a pair Example This example shows a SR flip flop set dominant that is controlled through the two Boolean variables A and c LD A R OUT LD C S OUT Logical Operators IL programming language logic operators
484. re inhibited 1 YES YES YES ACTIVEVT hibition of when the user sets the bit to 0 except events This bit is not available on Quantum safety for safety PLCs PLCs 35006144 07 2011 157 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S39 Saturation in This bit is set to 1 by the system to indicate 0 YES YES YES EVTOVR event that one or more events cannot be except processing processed following saturation of the for safety queues PLCs The user must reset this bit to 0 This bit is not available on Quantum safety PLCs S40 Rack 0 The S40 bit is assigned to rack 0 1 YES YES NO RACKOERR input output Normally set to 1 this bit is set to O when a fault fault occurs on the rack s I Os In this case e the S10 bit is set to 0 the I O processor LED is on e the lr m c Err module bit is set to 1 This bit is reset to 1 when the fault disappears S41 Rack 1 Idem S40 for rack 1 1 YES YES NO RACK1ERR_ input output fault S42 Rack 2 Idem S40 for rack 2 1 YES YES NO RACK2ERR _ input output fault S43 Rack 3 Idem S40 for rack 3 1 YES YES NO RACK3ERR_ input output fault S44 Rack 4 Idem S40 for rack 4 1 YES YES NO RACK4ERR_ input output fault S45 Rack 5 Idem S40 for rack 5 1 YES YES NO RACK5ERR_ input output fault S46 Rack 6 Idem S40 for rack 6 1 YES YES NO RACK6ERR_ input o
485. re read at the start of the task and the outputs are written at the end of the task Remote inputs outputs on Fipio bus In controlled mode the refreshing of inputs outputs is correlated with the task period The system guarantees that inputs outputs are updated in a single period Only the inputs outputs associated with this task are refreshed In this mode the period of the PLC task MAST FAST or AUX must be greater than or equal to the network cycle time In free mode no restriction is imposed on the task period The PLC task period MAST FAST or AUX can be less than the network cycle If this is the case the task can be executed without updating the inputs outputs Selecting this mode gives you the possibility of having the lowest possible task times for applications where speed is critical Reading of Inputs and Writing of Outputs on Quantum Local inputs outputs Each input output module or group of modules can be associated with a single task MAST FAST or AUX 0 3 Remote inputs outputs Remote input output stations can only be associated with the master MAST task The assignment is made for sections see page 87 with 1 remote input station and 1 remote output station per section 35006144 07 2011 97 Program Structure Distributed inputs outputs Distributed input output stations can only be associated with the master MAST task The inputs are read at the start of the master task and the outp
486. reen navigation hyperlinks input field rotating field e Animation elements Bar chart trend diagram dialog date disappear blinking colors variable animation Create a library for managing graphical objects Copying objects Creating a list of all variables used in the operator screen Creating messages to be used in the operator screen Direct access from the operator screen to the animation table or the cross reference table for one or more variables Tooltips give additional information about the variables Managing operator screens in families Import export of individual operator screens or entire families 64 35006144 07 2011 Application Structure In This Part This part describes the application program and memory structures associated with each type of PLC What s in this Part This part contains the following chapters Chapter Chapter Name Page 2 Description of the Available Functions for Each Type of PLC 67 3 Application Program Structure 69 4 Application Memory Structure 107 5 Operating Modes 121 6 System Objects 147 35006144 07 2011 65 Application Structure 66 35006144 07 2011 Description of the Available Functions for Each Type of PLC 2 Functions Available for the Different Types of PLC Programming Languages All the following languages are available for platforms Modicon M340 Premium Atrium and Quantum e e e ST e e L
487. riables and memory protection switch when shifting betweenModsoft NxT Concept and Unity Pro Failure to follow these instructions can result in injury or equipment damage 35006144 07 2011 139 Operating Modes For Quantum 140 CPU 31 41 0 51 These processors have a Flash EPROM memory of 1 435 KB which can be used to save the program and the initial values of variables On power restoral you can choose the desired operating mode using the PLC MEM switch on the processor front panel For detailed information on how this switch works you can consult the Quantum manual see Quantum with Unity Pro Hardware Reference Manual e off position The application contained in this zone is automatically transferred to internal RAM when the PLC processor is powered up cold restart of the application on position The application contained in this zone is not transferred to internal RAM warm restart of the application 140 35006144 07 2011 Operating Modes Processing on Warm Restart for Premium Quantum PLCs Cause of a Warm Restart A warm restart may be caused e by a power restoral without loss of context e by the system bit S1 being set to 1 by the program e by Unity Pro from the terminal e by pressing the RESET button of the power supply module of rack 0 on Premium PLC Illustration
488. ring e the maximum size of a string is 65535 characters The size of the character string can be optimized during the definition of the type using the STRING lt size gt command lt size gt being an unsigned integer UINT capable of defining a string of between 1 and 65535 ASCII characters NOTE The ASCII characters 0 127 are common to all languages but the characters 128 255 are language dependent Be careful is the language of the Unity Pro is not the same as the OS language If the two languages are not the same CHAR MODE communication can be disturbed and sending characters greater than 127 cannot be guaranteed to be correct In particular if the Stop on Reception character is greater than 127 it is not taken into account The entry is preceded by and ends with the quote character ASCII code 16 27 The dollar sign is a special character followed by certain letters which indicate L or I go to the next line line feed N or n go to the start of the next line new line P or p go to the next page R or r carriage return T or t tabulation Tab 258 35006144 07 2011 Data Types Examples STRING Type Variable Declaration e represents the character in a string e represents the quote character in a string The user can use the syntax nn to display in a STRING variable caracters which must not be printed It can be a carriage return ASCII code 16 0D for instance En
489. ro steps within macro steps is to 8 levels e Each macro step is implicitly allocated a variable of data type SFCSTEP_ STATE see SFCSTEP_STATE Variable page 399 e Macro steps can be allocated a variable of data type SFCSTEP TIMES see SFCSTEP_TIMES Variable page 398 e Macro steps can NOT be allocated with actions e Each macro step can be replaced with the sequence string in the allocated macro section Macro steps are a supplement to IEC 61131 3 and must be enabled explicitly Input Step Every macro section begins with an input step Representation of an input step MS_1_1_IN Input steps have the following properties e Input steps are automatically placed in macro sections by the SFC editor e Only 1 individual input step is placed for each macro section e An input step cannot be deleted copied or inserted manually e Each input step is implicitly allocated a variable of data type SFCSTEP_ STATE see SFCSTEP_STATE Variable page 399 e Input steps can be allocated a variable of data type SFCSTEP_ TIMES see SFCSTEP_TIMES Variable page 398 e Input steps can be allocated actions 400 35006144 07 2011 SFC Sequence Language Output Step Every macro section ends with an output step Representation of an output step MS_1_1_0U Output steps have the following properties e Output steps are automatically placed in macro sections by the SFC editor Only 1 individ
490. rocedures Control elements Operation and compare blocks which represent an extension to IEC 61131 3 Subroutine calls Jumps Links Actual Parameters Text objects to comment on the logic 35006144 07 2011 45 Presentation Properties LD sections have a background grid that divides the section into lines and columns The LD programming language is cell oriented i e only one object can be placed in each cell LD sections can be 11 64 columns and 17 2000 lines in size The program can be entered using the mouse or the keyboard Input Aids The LD editor offers the following input aids Objects can be selected from the toolbar the menu or directly using shortcut keys Syntax and semantics are checked as the program is being written e Incorrect objects are displayed in blue e Unknown words e g undeclared variables or unsuitable data types are marked with a red wavy line e Brief description of errors in the Quickinfo Tooltip Information for variables and for elements of an LD section that can be connected to a variable pins contacts coils operation and compare blocks can be displayed in a Quickinfo Tooltip e type name address and comment of a variable expression e type name and comment of FFB pins contacts etc Tabular display of FFBs Actual parameters can be entered and displayed as symbols or topological addresses Different zoom factors Tracking of FFB links Optimizing the link routes
491. rocedures page 489 466 35006144 07 2011 Instruction List IL Structuring Operators IL programming language structuring operators Operator Modifier Meaning Operands Description JMP C CN Jump to label LABEL With JMP a jump to the label can be conditional or only if the unconditional accumulator see also Labels and Jumps page 469 contents are of the BOOL data type RET C CN Return to the RETURN operators can be used in DFBs derived function only if the next highest blocks and in SRs subroutines accumulator program RETURN operators can not be used in the main program contents are organization e Ina DFB a RETURN operator forces the return to the of the BOOL unit program which called the DFB data type e The rest of the DFB section containing the RETURN operator is not executed e The next sections of the DFB are not executed The program which called the DFB will be executed after return from the DFB If the DFB is called by another DFB the calling DFB will be executed after return Ina SR a RETURN operator forces the return to the program which called the SR e The rest of the SR containing the RETURN operator is not executed The program which called the SR will be executed after return from the SR Processing A right bracket starts the processing of the deferred deferred operator The number of right bracket operations must be operations equal to
492. roject Enter a comment about the function block View all parameters inputs outputs of the function block Assignment of an initial value to the function block inputs outputs 35006144 07 2011 35 Presentation DFB Types The DFB types tab is used for the defining derived function block DFBs parameters The creation of DFB logic is carried out directly in one or more sections of the FBD LD IL or ST programming languages Tab DFB types iy Data Editor Variables DDT types Function blocks DFB types lloi Filter LY Name id a Name Nu Type Yalue _ Comment di E lt Inputs gt Open Bool close Bool valid Bool cot opened Bool cotclosed Bool gt H 9 lt Outputs gt O 9 lt Inputs outputs gt Ll lt Public gt imer disc Int M timer opening Int M J The following functions are available Definition of the DFB name Definition of all parameter of the DFB such as e Inputs e Outputs e VAR_IN_OUT combined inputs outputs e Private variables e Public variables Assignment of data types to DFB parameters Own selection dialog box for derived data types Assignment of an initial value Nesting DFBs Use of several sections in a DFB Enter a comment for DFBs and DFB parameters Analyze the defined DFBs Version management Assignment of defined DFBs to a library 36 3
493. ry SAMPLETM E_EFB_SAMPLE_TIME_OVERFLOW F 30184 16 8A18 Internal error 622 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error STEP2 W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range STEP2 FP_ERROR F See table Common Floating Point Errors page 637 STEP2 Status word values T F For details about the STEP2 status word refer to the STEP2 description see Unity Pro Control Block Library STEP3 W_WARN_OUT_OF_RANGE 30110 16 759E Parameter out of range STEP3 FP_ERROR F See table Common Floating Point Errors page 637 STEP3 Status word values T F For details about the STEP3 status word refer to the STEP3 description see Unity Pro Control Block Library Mathematics Table of error codes and errors values created for EFBs of the Mathematics family EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error COMP_DB W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range COMP_DB FP_ERROR F See table Common Floating Point Errors page 637 K_SQRT W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range K_SQRT FP_ERROR F See table Common Floating Point Errors page 637 35006144 07 2011 623 EFB Error Codes and
494. s Subject of this Section This section describes memory structure and detailed description of the memory zones of the Quantum PLCs What s in this Section This section contains the following topics Topic Page Memory Structure of Quantum PLCs 116 Detailed Description of the Memory Zones 119 35006144 07 2011 115 Memory Structure Memory Structure of Quantum PLCs General The PLC memory supports e located application data State Ram e unlocated application data e the program task descriptors and executable code initial values and configuration of inputs outputs Structure without Memory Extension Card The data and program are supported by the internal RAM of the processor module The following diagram describes the memory structure A Located data Unlocated data Internal RAM Program Operating system 1 a Operating system 1 Application backup 1 y 1 Only for 140 CPU 31 43 53 processors Structure with Memory Extension Card Quantum 140 CPU 6 e processors can be fitted with a memory extension card The data is supported by the internal RAM of the processor module The program is supported by the extension memory card The following diagram describes the memory structure Intemal A RAM Located data Unlocated data External T memory card Program 116 35006144 07 2011 Memory Stru
495. s executed same as if links on disabled EF see Unity Pro Operating Modes e Function blocks If ENO is set to 0 caused by 1 EN 0 or an error during execution EN equals to 1 Please refer to Maintain output e EN ENO handling with function blocks that only have one link as an output parameter FUNCBLOCK 1 EN INI1 IN2 ENO OUT FUNCBLOCK 2 EN ENO IN1 IN2 OUT EN of FUNCBLOCK_1 is set to 0 the link on output OUT of FUNCBLOCK 1 maintains the old status it had during the last correctly executed cycle e EN ENO handling with function blocks that have one variable and one link as output parameters FUNCBLOCK_ 1 OUTI EN ENO IN1 OUT IN2 FUNCBLOCK_ 2 ENO OUT EN IN1 IN2 If EN of FUNCBLOCK_1 is set to 0 the link on output OUT of FUNCBLOCK 1 maintains the old status it had during the last correctly executed cycle The OUT1 variable on the same pin either retains its previous status or can be changed externally without influencing the link The variable and the link are saved independently of each other e Functions Procedures As defined in IEC61131 3 the outputs from deactivated functions EN input set to 0 are undefined The same applies to procedures Here nevertheless an explanation of the output statuses in this case 35006144 07 2011 361 Ladder Diagram LD
496. s froms_ 1 2toSs 1 3 is true 442 35006144 07 2011 SFC Sequence Language If Then IfS_1 lands _1 3 are active and transition condition c which belongs to the common transition is true thenasequencerunsfroms 1 lands 1 3 toajumptos 1 1 If S_1_1 is activated by the jump then only the branch from s_1_1 is active The branch from s_1_2 is not active Since S_1_1 ands _1 3 are not active at the same time the string cannot continue The string is blocked This block can removed by e g a second timed token that is set to reactivate step S_1 2 35006144 07 2011 443 SFC Sequence Language Jump out of a Parallel String Introduction Extra tokens are generated in all cases Jump out of a Parallel String Jump out of a Parallel String The ability to jump into a parallel string or out of a parallel string can be enabled optionally with multi token e a b gt S_2_1 S_2_2 S_2_3 D n c d S_2_5 If Then If the transition condition a is true and b is false then a sequence runstoS 2 lands 2 2 IfstepsS 2 lands 2 2 are activated then the strings run independently of one another If the transition condition c is true then a jump is made tos 2 3 A second token is created by the jump out of the parallel string Both tokens are running
497. s located since its memory allocation is known e atopological address defined by the manufacturer in which case we say the data is direct addressing and its memory allocation is known Unlocated Data Instances Unlocated data instances are managed by the PLC operating system and their physical location in the memory is unknown to the user Unlocated data instances are defined using data types belonging to one of the following families e Elementary Data Types EDT e Derived Data Types DDT e Function Block data types EFB DFB e Sequential Function Chart data types SFC Examples Var_1 BOOL Instance of EDT family of Boolean type with 1 byte memory allocation Var_2 UDINT Instance of EDT family of double unsigned integer type with 4 byte memory allocation Var_3 ARRAY 1 10 OF INT Instance of DDT family of table type with 20 byte memory allocation COORD X INT Y INT Var_4 COORD Instance of DDT family of COORD type structure with 4 byte memory allocation NOTE Sequential Function Chart SFC data type instances are created when they are inserted in the application program with a default name that the user can modify 294 35006144 07 2011 Data Instances Located Data Instances Localizing a variable defined by a symbol consists in creating an adress in the variable editor Located data instances have a predefined memory location in the PLC and this location is known by the user e Topolog
498. s mapped to the address sMW100 First Memory Address Description of the structure Modicon M340 Premium Para_PWM1 MW100 15t byte MW100 15t byte t_period TIME MW102 15t byte MW102 15t byte t_min TIME 35006144 07 2011 273 Data Types First Memory Address Description of the structure sMW104 15t byte sMW104 15t byte in_max REAL Mode_TOTALIZER MW100 15t byte MW100 15t byte hold BOOL MW100 2 4 byte MW100 2 9 byte rst BOOL Info_TOTALIZER 2mw100 15t byte 2mw100 15t byte oute REAL 3MW102 15t byte 3MW102 15t byte cter UINT MW103 1 byte MW103 15t byte done BOOL MW103 2 4 byte MW103 2 byte Reserved for the alignment The table below gives two examples of data structures with arrays First Memory Address Description of the structure Modicon M340 Premium EHC105_Out Mw100 15t byte MW100 13t byte Quit BYTE MW100 2 byte MW100 2 byte Control ARRAY 1 5 OF BYTE sMwW104 15t byte 3Mw103 15t byte Final ARRAY 1 5 OF DINT CPCfg_ex sMW100 15t byte MW100 15t byte Profile_type INT MW101 1 byte 2Mw101 15 byte Interp_type INT MW102 1 byte MW102 15t byte Nb_of_coords INT Nb_of_points INT sMW104 1t byte sMW104 15t byte reserved ARRAY 0 4 OF BYTE 3MW103 1 byte
499. s or constants assigned to them e VAR_IN_OUT outputs may not have values assigned to them e VAR_IN_OUT variables cannot be used outside the block call Calling a function block with a VAR_IN_OUT variable in IL CAL MY FBLOCK IN1 V1 IN2 Vv2 I01 V3 OUT1 gt V4 OUT2 gt V5 Calling the same function block in FBD MY_FBLOCK FBLOCK vi IN1 OUT1 v4 v2 IN2 OUT2 V5 V3 101 101 V3 VAR_IN_OUT variables cannot be used outside the function block call 35006144 07 2011 487 Instruction List IL The following function block calls are therefore invalid Invalid call example 1 LD V1 Loading a V1 variable in the accumulator CAL InOutFB Calling a function block with the VAR_IN_OUT parameter The accumulator now contains a reference to a VAR_IN_OUT parameter AND V2 AND operation on accumulator contents and v2 variable Error The operation cannot be performed since the VAR_IN_OUT parameter accumulator contents cannot be accessed from outside the function block call Invalid call example 2 LD V1 Loading a V1 variable in the accumulator AND InOutFB inout AND operation on accumulator contents and a reference to a VAR_IN_OUT parameter Error The operation cannot be performed since the VAR_IN_OUT parameter cannot be accessed from outside the function block call The following function block calls are always valid Valid call example
500. s representing the operations to be executed Operand Operators are used for operands Operands are variables literals FFB inputs outputs etc Instructions Instructions are used to assign the values returned from the expressions to actual parameters and to structure and control the expressions Representation of an ST Section Representation of an ST section Operator Operand Instruction fi D B B 4 A C IF D lt 0 0 THEN NROOTS 0 ELSIF D 0 0 THEN NROOTS 1 XI B 2 0 A Instruction ELSE NROOTS 2 X1 B SQRT D 2 0 A X2 B SQRT D 2 0 A END IF Expression A 35006144 07 2011 499 Structured Text ST Section Size Syntax The length of an instruction line is limited to 300 characters The length of an ST section is not limited within the programming environment The length of an ST section is only limited by the size of the PLC memory Identifiers and Keywords are not case sensitive Exception Not allowed spaces and tabs keywords literals values identifiers variables and limiter combinations e g for comments Execution Sequence The evaluation of an expression consists of applying the operators to the operands in the sequence as defined by the rank of the operators see Table of Operators see page 504 The operator with the highest rank in an expression is performed first followed by the
501. sS67 is not set to 1 when main battery is absent though with green PCMCIAs PV lt 04 bit S67 is set to 1 in the same condition NO YES YES S68 PLCBAT State of processor battery This bit is used to check the operating state of the backup battery for saving data and the program in RAM e setto 0 battery present and operational e setto 1 battery missing or non operational NO YES YES 162 35006144 07 2011 System Objects Bit Symbol Function Description Initial state Modicon M340 Premium Atrium Quantum S75 PCMCIABAT1 State of the data storage memory card battery This bit is supported by Unity Pro equal or greater to version 2 02 It is used to monitor the main battery status when the memory card is in the lower PCMCIA slot For Premium processors S75 is supported by the following processors TSX P57 4ee TSX P57 5e and TSX P57 6e NOTE For all others Premium processors 3S75 shows a low battery level only when the battery is already at a critical level For Quantum processors S75 is supported by the following processors 140 CPU 672 61 140 CPU 671 60 60S 140 CPU 651 60 60S 140 CPU 652 60 and 140 CPU 651 50 S75 is e set to 1 when the main battery voltage is low The application is kept but the battery must be replaced following the predictive maintenance see Premium and Atrium using Uni
502. scheduling you can detect the edge or not 372 35006144 07 2011 Ladder Diagram LD Recognizing Positive Edges A contact to recognize positive edges is used to recognize positive edges With this contact the right connection for a program cycle is 1 when the transition of the associated actual parameter A is from 0 to 1 and at the same time the status of the left connection is 1 Otherwise the status of the right link is O In the example a positive edge of the variable A is supposed to be recognize and B should therefore be set for a cycle A B p y Ai tad Anytime the value bit of A equals 1 and the history bit equals 0 B is set to 1 for a cycle cycle 1 4 and 9 Yo 0 4 8 OM 8B o 1 A Value bit i ad A History Bit i 5 gt B Value bit L E gt Recognizing Negative Edges A contact to recognize negative edges is used to recognize negative edges With this contact the right connection for a program cycle is 1 when the transition of the associated actual parameter A is from 1 to 0 and at the same time the status of the left connection is 1 Otherwise the status of the right link is O In the example a negative edge of the variable A is supposed to be recognize and B should therefore be set for a cycle A B N fi pi Ld 35006144 07 2011 373 Ladder Diagram LD
503. se algorithms ENO is set to 0 If the EN pin is not assigned a value when the FFB is invoked the algorithm defined by the FFB is executed same as if EN equals to 1 If ENO is set to 0 results from EN 0 or an error during execution the outputs of the function block DFB retain the status from the last cycle in which they were correctly executed The output behavior of the function blocks DFBs does not depend on whether the function blocks DFBs are called without EN ENO or with EN 1 486 35006144 07 2011 Instruction List IL If EN ENO are used the function block call must be formal The assignment of variables to ENO must be made using the gt operator CAL MY COUNT EN 1 CU varl R reset PV value ENO gt error Q gt out CV gt current Calling the same function block in FBD MY_COUNT CTU 1 EN ENO error vari CU Q out reset R value PV CV current VAR_IN_OUT Variable Function blocks are often used to read a variable at an input input variables to process it and to output the updated values of the same variable output variables This special type of input output variable is also called a VAR_IN_OUT variable The following special features are to be noted when using function blocks DFBs with VAR_IN_OUT variables e All VAR_IN_OUT inputs must be assigned a variable e VAR_IN_OUT inputs may not have literal
504. sk cycle PLCs This bit is not available on Quantum safety PLCs S31 Activation de Normally set to 1 when the user creates the 1 YES YES YES FASTACT activation of task The task is deactivated when the user except the fast task sets the bit to 0 for safety This bit is not available on Quantum safety PLCs PLCs S32 Activation de Normally set to 1 when the user creates the 0 NO YES YES AUXOACT activation of task The auxiliary task is deactivated when except the auxiliary the user sets the bit to 0 for safety task 0 This bit is not available on Quantum safety PLCs PLCs S33 Activation de Normally set to 1 when the user creates the 0 NO YES YES AUX1ACT activation of task The auxiliary task is deactivated when except the auxiliary the user sets the bit to 0 for safety task 1 This bit is not available on Quantum safety PLCs PLCs S34 Activation de Normally set to 1 when the user creates the 0 NO YES YES AUX2ACT activation of task The auxiliary task is deactivated when except the auxiliary the user sets the bit to 0 for safety task 2 This bit is not available on Quantum safety PLCs PLCs S35 Activation de Normally set to 1 when the user creates the 0 NO YES YES AUX3ACT activation of task The auxiliary task is deactivated when except the auxiliary the user sets the bit to 0 for safety task 3 This bit is not available on Quantum safety PLCs PLCs S38 Enabling in Normally set to 1 Events a
505. ss rights Bit M lt i gt or 3 bits EBOOL M1 R W MX lt i gt Word MW lt i gt 16 bits INT MW10 R W Word extracted MW lt i gt lt j gt 1 bit BOOL MW15 5 R W bit Double word MD lt i gt 1 32 bits DINT MD8 R W Real floating MF lt i gt 1 32 bits REAL MF15 R W point Legend 1 Not available for Modicon M340 lt i gt represents the instance number starts a 0 for Premium and 1 for Quantum For Modicon M340 double type instance double word or floating instance real must be located in an integer type MW The index lt i gt of the MW has to be even NOTE The M lt i gt or MX lt i gt data detect edges and manage forcing 300 35006144 07 2011 Data Instances Memory organization MWO MW FMW2 TMW3 MWA4 MWS MDI TMF 1 MD3 JoMF3 Not available for Modicon M340 NOTE The modification of MW lt i gt involves the corresponding modifications of MD lt i gt and MF lt i gt K Constants Access syntax Syntax Format Program access rights Word constant KW lt i gt 16 bits INT R Double word constant KD lt i gt 1 32 bits DINT R Real floating point KF lt i gt 1 32 bits REAL R constant Legend 1 Not available for Modicon M340 lt i gt represents the instance number NOTE The memory organization is identical to that of internal variables It should be noted that these variabl
506. stem Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SD20 SW20 and SW21 MSCOUNTER Absolute time counter For M340 and Quantum PLCs SD20 is incremented every 1 1000th of a second by the system even when the PLC is in STOP 2SD20 is no longer incremented if the PLC is powered down SD20 can be read by the user program or by the terminal SD20 is reset on a cold start SD20 is not reset on a warm start For Premium TSX P57 1 4M 2e4M 3e4M C024M 0 24M and TSX PCI57 204M 354M PLCs SD20 is incremented by 5 every 5 1000th of a second by the system For all the others Premium PLCs SD20 is time counter at 1 ms like Quantum and M340 PLCs For Quantum safety PLC knowing that the 2 processors must process exactly the same data the value of SD18 is updated at the beginning of the mast task and then frozen during the application execution YES YES YES SW23 Rotary switch value The least significant byte contains the Ethernet processor rotary switch It can be read by the user program or by the terminal YES NO NO SW26 Number of requests processed This system word allows to verifiy on server side the number of requests processed by PLC per second YES NO NO SW27 SW28 SW29 System overhead time e SW27 is the last system overhead time SW28 contains the maximum sys
507. sting Functions page 533 e Functions are only executed if the input EN 1 or the EN input is not used see also EN and ENO page 533 e There are two ways of calling a function e Formal call calling a function with formal parameter names e Informal call calling a function without formal parameter names 530 35006144 07 2011 Structured Text ST Formal Call With formal calls calls with formal parameter names the call consists of the actual parameter of the output followed by the assignment instruction then the function name and then by a bracketed list of value assignments actual parameters to the formal parameter The order in which the formal parameters are enumerated in a function call is not significant EN and ENO can be used for this type of call Calling a function with formal parameter names Actual Parameter Output Formal Parameters out LIMIT MN 0 IN varl MX 5 var 3 xe Function Name Actual Parameters Inputs Calling the same function in FBD LIMIT 0 MN M out vari IN 5 var MX With formal calls it is not necessary to assign a value to all formal parameters see also Parameters page 529 out LIMIT MN 0 IN varl Calling the same function in FBD LIMIT 0 MN OUT out vari IN 35006144 07 2011 531 Structured Text ST Informal Cal
508. strings e STRING The programming software goes beyond the scope of the standard by adding the bit string types BYTE WORD DWORD 308 35006144 07 2011 Data References Examples of Immediate Values This table associates immediate values with types of instance Immediate value Type of instance I am a character string STRING T 1s TIME D 2000 01 01 DATE TOD 12 25 23 TIME_OF_DAY DT 2000 01 01 12 25 23 DATE_AND_TIME 16 FFFO WORD UINT 16 9AF typed value UINT DWORD 16 FFFF typed value DWORD 35006144 07 2011 309 Data References References to Data Instances by Name Introduction What is a data instance reference see page 233 References to Instances of the EDT Family The user chooses a name symbol which can be used to access the data instance Valve_State BOOL Hopper_Content UINT Oven_Temperature INT AT MW100 Encoder Value WORD References to Instances of the DDT Family Tables The user chooses a name symbol which can be used to access the data instance Car Ve Instance name of the Vehicles type table Car 11 5 Ac s to car 11 of the color cor the or_range table onding to element 5 of 310 35006144 07 2011 Data References Structures The user chooses a name symbol which can be used to access the data instance Giving the 2 structur STRING 20 gt UDINT STRING 20 I
509. structions SE TST EP from anon 434 35006144 07 2011 SFC Sequence Language Alternative String Alternative Strings x off n select The user can define the behavior for the evaluation of transition conditions in alternative branches with Multi Token The following are possible e Processing is from left to right with a stop after the first active transition 1 off n select This corresponds with the behavior of alternative strings with Single Token see page 423 e Parallel processing of all transitions of the alternative branch x off n select With Multi Token more than one parallel switch can be made from the transitions 1 off n select The branches to be run are determined by the result of the transition conditions of the transitions that follow the alternative branch The transitions of the branches are all processed All branches with satisfied transitions are activated If none of the transitions are switched the step that is currently set remains set x off n select S_5_10 a a a b S_5_11 512 a c d S_5_13 If Then If S_5 10 is active and transition condition a then a sequence is run from Ss _5_ 10 to is true and b is false SED nii If S_5 10 is active and transition condition a then a sequence is run from s_5_10 to is false and b is true _5 12 35006144 07 2011 435 SFC Sequ
510. t damage 144 35006144 07 2011 Operating Modes 5 3 PLC HALT Mode PLC HALT Mode At a Glance Precaution The following actions switches the PLC to HALT mode e using the HALT instruction e watchdog overflow e Program execution error division by zero overflow etc if the bit S78 see page 160 is set to 1 A WARNING UNEXPECTED APPLICATION BEHAVIOR When the PLC is in Halt all tasks are stopped Check the behavior of the associated I Os to ensure that the consequences of the PLC Halt on the application are acceptable Failure to follow these instructions can result in death serious injury or equipment damage 35006144 07 2011 145 Operating Modes 146 35006144 07 2011 System Objects Subject of this Chapter This chapter describes the system bits and words of Unity Pro language Note The symbols associated with each bit object or system word mentioned in the descriptive tables of these objects are not implemented as standard in the software but can be entered using the data editor They are proposed in order to ensure the homogeneity of their names in the different applications What s in this Chapter This chapter contains the following sections Section Topic Page 6 1 System Bits 148 6 2 System Words 170 6 3 Atrium Premium specific System Words 196 6 4 Quantum specific System Words 208 6 5 Modicon M340 Specif
511. t dimension s of array gt OF lt data type gt ys lt dimension 1 gt lt dimension 2 gt lt dimension n gt oe SAS lt minimum limit gt lt maximum limit gt lt minimum limit gt strictly less than lt maximum limit gt 266 35006144 07 2011 Data Types Defining and Instancing an Array Examples Definition of an array type X ARRAY 1 10 OF BOOL Instancing an array Tab iy xX Tab_2 ARRAY 1 10 OF BOOL The instances Tab_1 and Tab_2 are of the same type and the same dimension the only difference being that during instancing e the Tab_1 type takes the name X e the Tab_2 type must be defined unnamed table NOTE It is beneficial to name the type as any modification that has to be made will only be done so once otherwise there will be as many modifications as there are instances This table presents the instances of arrays of different dimensions Entry Comments Tab_1 ARRAY 1 2 OF BOOL 1 dimensional array with 2 Boolean words Tab_2 ARRAY 10 20 OF WORD 1 dimensional array with 31 WORD type structures structure defined by the user Tab_3 ARRAY 1 10 1 20 OF INT 2 dimensional arrays with 10x20 integers Tab_4 ARRAY O 2 1 1 201 300 0 1 OF 4 dimensional arrays with 3x3x100x2 reals REAL NOTE Many functions READ_VAR WRITE_VAR for example don t recognize the index of an array of words starting by a number different from 0 If you use such a
512. t reported error is reported during programming o 2 e 3 error is reported during analyzing loading linking e 4 error is reported during execution 35006144 07 2011 663 IEC Compliance B 3 Extensions of IEC 61131 3 Extensions of IEC 61131 3 2nd Edition At a Glance In addition to the standardized IEC features listed in the see page 642 the Unity Pro programming environment inherited a number of features from the PL7 programming environment These extensions are optionally provided they can be checked or not in a corresponding options dialog The dialog and the features are described in detail in a chapter of the online help titled Data and Languages see Unity Pro Operating Modes Not included in the options dialog is another extension which is inherited both from the PL7 and the Concept programming environments Unity Pro provides the construct of the so called Section in all programming languages which allows to subdivide a Program Organization Unit POU This construct introduces the possibility to mix several languages e g FBD sections SFC sections in a POU body a feature which if used for this purpose constitutes an extension of the IEC syntax A compliant POU body should contain a single section only Sections do not create a distinct name scope the name scope for all language elements is the POU Purpose of Sections Sections serve different purposes e Sections allow to subdivide large
513. t to 0 results from EN 0 or an error during execution the outputs of the function block DFB retain the status from the last cycle in which they were correctly executed The output behavior of the function blocks DFBs does not depend on whether the function blocks DFBs are called without EN ENO or with EN 1 If EN ENO are used the function block call must be formal The assignment of variables to ENO must be made using the gt operator MY COUNT EN 1 CU varl R reset PV 100 value ENO gt error Q gt out CV gt current Calling the same function block in FBD MY_COUNT CTU 1 EN ENO error yari CU Q out reset R 100 value PV CV current VAR_IN_OUT Variable Function blocks are often used to read a variable at an input input variables to process it and to restate the altered values of the same variable output variables This special type of input output variable is also called a VAR_IN_OUT variable The following special features are to be noted when using function blocks DFBs with VAR_IN_OUT variables e All VAR_IN_OUT inputs must be assigned a variable e VAR_IN_OUT inputs may not have literals or constants assigned to them e VAR_IN_OUT outputs may not have values assigned to them e VAR_IN_OUT variables cannot be used outside of the function block call Calling a function block with VAR_IN_OUT variable in ST MY FBLOCK IN1 V1
514. ted PLC e Name of the loaded project e P address and DNS name of the host PC for the simulator and all connected Client PCs Dialog box for simulating I O events Reset button to reset the simulated PLC simulated cold restart Power Off On button to simulate a warm restart Shortcut menu right mouse button for controlling the Simulator 52 35006144 07 2011 Presentation Export Import Introduction Export Import The export and import functions allow you to use existing data in a new project The XML export import format makes is possible to provide or accept data from external software The following objects can be exported Complete projects including configuration Sections of all programming languages Subroutine sections of all programming languages Derived function blocks DFBs Derived data types DDTs Variable declarations Operator Screen All objects that can be exported can naturally be imported as well There are two types of import e Direct import Imports the object exactly as it was exported e Import with the assistant The assistant allows you to change the variables names sections or functional modules The mapping of addresses can also be modified 35006144 07 2011 53 Presentation User Documentation User Documentation Scope of the user documentation Documentation Be llei Exclude all headings Parameter Structure docum
515. tem overhead time SW29 contains the minimum system overhead time The system overhead time depends on the configuration number of I O and on the current cycle requests communication diagnostics System overhead time Mast Cycle Time User code execution time These can be read and written by the user program or by the terminal YES NO NO 178 35006144 07 2011 System Objects Description of System Words SW30 to SW47 Detailed Description Description of system words SW30 to SW35 Word Function Description Initial Modicon Premium Quantum Symbol state M340 SW30 Master task This word indicates the YES YES YES MASTCURRTIME execution time execution time of the last master task cycle in ms SW31 Maximum This word indicates the longest YES YES YES MASTMAXT IME master task master task execution time execution time since the last cold start in ms SW32 Minimum master This word indicates the shortest YES YES YES MASTMINTIME task execution master task execution time time since the last cold start in ms SW33 Fast task This word indicates the YES YES YES FASTCURRTIME execution time execution time of the last fast except for task cycle in ms safety This word is not available on PLCs Quantum safety PLCs SW34 Maximum fast This word indicates the longest YES YES YES FASTMAXTIME task execu
516. tepOut StepOver 60 35006144 07 2011 Presentation Bookmarks e Show Current Step 2 e Call memory 3 When the step into function is executed several times the call memory enables the display of the entire path starting with the first breakpoint NOTE Running the PLC program in step by step mode as well as entering StepIn in a read write protected section may lead to the inability to read the program and exit from the section The user must switch the PLC in Stop mode to get back to the initial state Bookmarks allow you to select code sections and easily find them again 35006144 07 2011 61 Presentation Diagnostic Viewer Description Unity Pro provides system and project diagnostics Errors which occur are displayed in a diagnostics window The section which caused the error can be opened directly from the diagnostics window in order to correct the error Diagnostic Viewer Acknowledgement 0 a Message Acknowledged Buffer battery error System fe Deleted Buffer battery error System S68 0 Deleted Buffer battery error System S68 0 Deleted Index overflow System S20 MAST 0 System alarm Buffer battery error 28 01 2002 21 10 51 Faulty device rack Faulty device slot 62 35006144 07 2011 Presentation Operator Screen Introduction Operator windows visualize the automation process The operator screen editor makes it easy to
517. tep_ OUT 35006144 07 2011 403 SFC Sequence Language 13 3 Actions and Action Sections Overview This section describes the actions and action sections of the SFC sequence language What s in this Section This section contains the following topics Topic Page Action 405 Action Section 407 Qualifier 408 404 35006144 07 2011 SFC Sequence Language Action Introduction Action Variable Actions have the following properties An action can be a Boolean variable action variable see page 405 or a section action section see page 407 of programming language FBD LD IL or ST A step can be assigned none or several actions A step which is assigned no action has a waiting function i e it waits until the assigned transition is completed If more than one action is assigned to a step they are processed in the sequence in which they are positioned in the action list field Exception Independent of their position in the action list field actions with the qualifier see page 408 P1 are always processed first and actions with the qualifier PO are processed last The control of actions is expressed through the use of qualifiers see page 408 A maximum of 20 actions can be assigned to each step The action variable that is assigned to an action can also be used in actions from other steps The action variable can also be used for reading or writing in any other se
518. term for Elementary Function EF see page 324 e Elementary Function Block EFB see page 325 e DFB Derived Function Block see page 326 e Procedure see page 326 Elementary Function Elementary functions EF have no internal states If the input values are the same the value on the output is the same every time the function is called For example the addition of two values always gives the same result An elementary function is represented graphically as a frame with inputs and one output The inputs are always represented on the left and the output is always on the right of the frame The name of the function i e the function type is displayed in the center of the frame The execution number see page 339 for the function is shown to the right of the function type The function counter is shown above the frame The function counter is the sequential number of the function within the current section Function counters cannot be modified Elementary Function 1 DIV IN1 OUT IN2 With some elementary functions the number of inputs can be increased 324 35006144 07 2011 Function Block Language FBD Elementary Function Block Elementary function blocks EFBs have internal states If the input values are the same the value on the output can be different each time the function is called e g for a counter the value on the output is incremented An elementary function block is r
519. th an Alternative Branch variation 2 If Then If the transition condition a is true then a sequence runstoS 5 lands 5 2 A second token is created by the sequence running on the alternative merge out of the parallel string These two tokens are now running parallel to one another i e S_5 1 and S_5 2 are active at the same time Token 1 S_5_2 Token 2 S_5_1 If Then If Then Step S_5 2 is active Step s_5_1 is active If transition condition b is true then a sequence runs tos 5 2 If S_5 2 is still active token 1 then token 2 is ended and the string is further processed as Single Token If S_5 2 is no longer active token 1 then it is reactivated by token 2 and both tokens continue running parallel Multi Token 440 35006144 07 2011 SFC Sequence Language Using an Alternative Branch in a Parallel String If one single alternative branch is used in a parallel string it may block the string Using an Alternative Branch in a Parallel String a a T T I S71 S72 T ae b c d 7 3 S74 S75 I I EE e If Then If transition condition a is true then a sequence isruntoS 7 lands 7 2 If steps S_7 1 ands 7 2 are activated then the strings run independently of one another If transition condition d is tr
520. the alarm date e DEREG see Unity Pro Diagnostics Block Library to de register the alarm NOTE It is strongly recommended to only program a diagnostic DFB instance once within the application These DFBs enable you to monitor your process They will automatically report the information you will have chosen in the Viewer You can thus monitor changes in state or variations in your process The main advantages inherent in this service are as follows e The diagnostic is integrated in the project and can thus be conceived during development and therefore better meets the user s requirements e The error dating and recording system is done at the source in the PLC which means the information exactly represents the state of the process e You can connect a number of Viewers Unity Pro Magelis Factory Cast which will transcribe the exact state of the process to the user Each Viewer is independent and any action performed on one for example an acknowledgement is automatically viewed on the others 35006144 07 2011 599 Diagnostics DFB 600 35006144 07 2011 Appendices At a Glance The appendix contains additional information What s in this Appendix The appendix contains the following chapters Chapter Chapter Name Page A EFB Error Codes and Values 603 B IEC Compliance 639 35006144 07 2011 601 602 35006144 07 2011 EFB Error Codes and Values A
521. the corresponding program conditional on the test that S1 is set to 1 at the start of the master task program For Quantum PLCs the switch on the front panel of the processor can be used to configure operating modes For further details see Quantum documentation see Quantum with Unity Pro Hardware Reference Manual Output Changes for Premium and Atrium As soon as a power outage is detected the outputs are set in the fallback position e either they are assigned the fallback value or e the current value is maintained depending on the choice made in the configuration After power restoral the outputs remain in the fallback position until they are updated by the task NOTE after a power on while the CPU is not started outputs are in security mode state equal to 0 After the CPU start if the module didn t stay powered on the maintain state is lost and the output stay in state 0 142 35006144 07 2011 Operating Modes Output Changes for Quantum As soon as a power outage is detected e the local outputs are set to zero e the outputs of the remote or distributed extension racks are set in the fallback position After power restoral the outputs remain in the fallback position until they are updated by the task Output Changes for Extension Rack If power outage occurs on rack where CPU is located e Fallback state as soon as CPU loss is detected e Security state during I O configuration e State calculated by CPU
522. the first interface second DIO network module of the The slot number is coded from 0 to 15 DIO network This word is not available on Quantum safety PLCs SW406 to SW469 Operating status The words SW406 to SW469 are associated with the NOM1DIOHEALTHi of the distributed distributed stations DIO 64 words associated with the 64 DIO i 1 64 station modules stations of the second network of the second SW4O06 operating status of the station 1 modules DIO network SW407 operating status of the station 2 modules SW4E69 operating status of the station 64 modules Bits 0 to 15 of each of these words are associated with the modules located in positions 16 to 1 of these stations The bit is set to 0 if the module is faulty and set to 1 if the module is operating correctly Example SW412 5 0 The module located in station 7 slot 11 of the second DIO network is faulty Note For modules 140 CRA 2 eee the value of this bit is not significant and is always set to 0 These words are not available on safety PLCs and DIO network SW470 Slot number of Slot number of module 140 NAME 2 for connection to the third NOM2DIOSLOT the second DIO network interface module The slot number is coded from 0 to 15 of the DIO This word is not available on Quantum safety PLCs network 35006144 07 2011 217 System Objects Word Function Description Initial Symbol state SW471 to SW534 Operating status The words SW4
523. the processing of the application program and the updating of outputs are all carried out periodically over a defined period of 1 to 255 ms At the start of the PLC cycle a time out whose current value is initialized to the defined period starts the countdown The PLC cycle must be completed before this time out expires and launches a new cycle The following diagram shows the execution phases of the PLC cycle Processing the Processing the program program l Q l Q Cycle n E Cycle n 1 mai a gt l Reading of inputs Q Writing of outputs The processor carries out internal processing input acquisition processing of the application program and the updating of outputs in that order e lf the period is not yet over the processor completes its operating cycle until the end of the period by performing internal processing e Ifthe operating time is longer than that assigned to the period the PLC signals a period overrun by setting the system bit S19 of the task to 1 Processing then continues and is executed fully however it must not exceed the watchdog time limit The following cycle is started after the outputs have been implicitly written for the current cycle Two checks are carried out e period overrun see page 86 e by watchdog see page 86 35006144 07 2011 85 Program Structure Control of Cycle Time General The period of master task execution in cyclic
524. tial value has been defined the default value 0 is used Programming Notes Attention should be paid to the following programming notes e Procedures are only executed if the input EN 1 or the EN input is not used see also EN and ENO see page 494 e Special conditions apply when using VAR_IN_OUT variables see page 494 e There are two ways of calling a procedure e Formal call calling a function with formal parameter names In this case variables can be assigned to outputs using the gt operator calling a function block in shortened form e Informal call calling a function without formal parameter names 490 35006144 07 2011 Instruction List IL Formal Call With this type of call call with formal parameter names the procedure is called using an optional CAL instruction sequence followed by the name of the procedure and a bracketed list of actual parameter to formal parameter assignments The assignment of the input formal parameter is made using the assignment and the output formal parameter is made using the gt assignment The order in which the input formal parameters and output formal parameters are listed is not significant The list of actual parameters may be wrapped immediately following a comma EN and ENO can be used for this type of call Calling a procedure with formal parameter names Formal Parameters Inputs Formal Parameters Outputs _ ae PROC IN1 var
525. tion Description Initial Premium Atrium Symbol state SW61 Premium Meaning of the different bits of the word SW61 0 to 0 YES NO HSB STS Hot gt SWE1 6 Standby SW61 0 and SW61 1 Status of local PLC status SW61 1 0 and SW61 0 1 OFFLINE mode register SW61 1 1 and SW61 0 0 Primary mode SW61 1 1 and SW61 0 1 Standby mode SW61 2 and SW61 3 Status of remote PLC SW61 3 0 and SW61 2 1 OFFLINE mode SW61 3 1 and SW61 2 0 Primary mode SW61 3 1 and SW61 2 1 Standby mode SW61 3 0 and SW61 2 0 the remote PLC is not accessible Power off no communication e SW61 4 is set 1 whenever a logic mismatch is detected between the Primary and Standby controllers SW61 5 is set to 0 or 1 depending on the Ethernet copro MAC address e 0 the PLC with the lowest MAC dress becomes PLC A e 1 the PLC with the highest MAC address becomes PLC B SW61 6 this bit indicates if the CPU sync link between the two PLC is valid SW61 6 0 the CPU sync link is valid The content of bit 5 is significant SW61 6 1 the CPU sync link is not valid In this case the contents of the bit 5 is not significant because the comparison of the two MAC addresses cannot be performed 198 35006144 07 2011 System Objects Word Symbol Function Description Initial state Premium Atrium SW61 HSB STS Premium Hot Standby status r
526. tion fast task execution time since except for time the last cold start in ms safety This word is not available on PLCs Quantum safety PLCs SW35 Minimum fast This word indicates the shortest YES YES YES FASTMINTIME task execution fast task execution time since except for time the last cold start in ms safety This word is not available on PLCs Quantum safety PLCs NOTE Execution time is the time elapsed between the start input acquisition and the end output update of a scanning period This time includes the processing of event tasks the fast task and the processing of console requests In Quantum HSBY configuration 3SW30 SW31 and SwW32 includes the time of Copro Data exchange between Primary and Stand By CPU 35006144 07 2011 179 System Objects Description of system words SW36 to SW47 Word Function Description Initial Modicon Quantum Premium Symbol state M340 SW36 Auxiliary Those words indicate the execution NO YES 1 YES 1 AUXOCURRTIME task time of the last cycle of the AUX 0 3 except SW39 execution tasks in ms for safety AUX1CURRTIME time PLCs SW42 1 only on 140 CPU 6 and AUX2CURRTIME TSX P57 5ee PLCs SW45 These words are not available on AUX3CURRTIME Quantum safety PLCs SW37 Maximum Those words indicate the longest NO YES 1 YES 1 AUXOMAXTIME auxiliary task execution time of AUX 0 3 except SW40 task tasks since the last col
527. tion To do this use the DFB editor to define and code all the elements that make up the DFB e Description of the function block name type DFB activation of diagnostics comment e Structure of the function block parameters variables code sections NOTE If you use a DFB that is already in the User Defined Library and modify it the new modified type will be used for any additional instances in the open project However the User Defined Library remains unchanged Description of a DFB Type The following diagram shows a graphic representation of a DFB model Name Inputs Outputs L Inputs Outputs Public variables Private variables Sections The function block comprises the following elements e Name name of the DFB type max 32 characters This name must be unique in the libraries the authorized characters used depend on the choice made in the Identifiers area of the Language extensions tab in the Project Settings see Unity Pro Operating Modes e Inputs input parameters excluding input output parameters e Outputs output parameters excluding input output parameters 556 35006144 07 2011 Overview of DFBs e Inputs Outputs input output parameters e Public variables internal variables accessible by the application program e Private variables nested internal variables or DFBs not accessible by the application program e Sections DFB code sections in LD IL ST or FBD
528. tion block Private variables can not be accessed by user program These type of variables can only be accessed by the animation table NOTE Nested DFBs are declared as private variables of the parent DFB So their variables are also not accessible through programming but trough the animation table Private variables are a supplement to IEC 61131 3 Programming Notes Attention should be paid to the following programming notes e Functions are only executed if the input EN 1 or the EN input is not used see also EN and ENO see page 486 e The assignment of variables to ANY or ARRAY output types must be made using the gt operator see also Formal Form of CAL with a List of the Input Parameters see page 481 Assignments cannot be made outside the function block call The instruction My Var My SAH OUT is invalid if the output OUT of the SAH function block is of type ANY 480 35006144 07 2011 Instruction List IL The instruction Cal My SAH OUT gt My Var is valid e Special conditions apply when using VAR_IN_OUT variables see page 487 e The use of function blocks consists of two parts e the Declaration see page 481 e calling the function block e There are four ways of calling a function block e Formal Form of CAL with a list of input parameters see page 487 call with formal parameter names In this case variables can be assigned to outputs using the gt operator e Informal
529. tion of elements and derived function blocks EFBs DFBs e Definition of derived function block DFBs parameters The following functions are available in all tabs of the data editor Copy Cut Paste Expand collapse structured data Sorting according to Type Symbol Address etc Filter Inserting deleting and changing the position of columns Drag and Drop between the data editor and the program editors Undo the last change Export Import Variables The Variables tab is used for declaring variables Variables tab iy Data Editor Name v Type v Address Value _ Comment M Station Booi Y Filling_up Boo a Mixer_filing_up Bie O O o e End_of filing Date Initial_mixer Dint Initial_filing Dt _Empty_mixer DWord Proportioning EBoot O Filup_A Int Fillup_B Bool Sync_i Dint Sync_2 Dint FilLup_ Bool Start_mixer Bool The following functions are available Defining a symbol for variables e Assigning data types e Own selection dialog box for derived data types e Assignment of an address 32 35006144 07 2011 Presentation Automatic symbolization of I O variables Assignment of an initial value Entering a comment View all pro
530. tivated or deactivated by other non SFC sections or by user operations If an active step is activated and deactivated at the same time then the step remains active The use of macro steps is possible Whereas the macro step section can also contain initial steps More than one branch can be active with alternative branches The branches to be run are determined by the result of the transition conditions of the transitions that follow the alternative branch Branch transitions are processed in parallel The branches with satisfied transitions are activated All alternative branches do not have to be combined at the end by an alternative joint or jumps If jumps are to be made into a parallel branch or out of a parallel branch then this option can be enabled All parallel branches do not have to be combined at the end by a parallel joint in this case Subroutine calls be used in an action section Multiple tokens can be created with e Multiple initial steps e Alternative or parallel branches that are not terminated e Jumps in combination with alternative and parallel strings e Activation of steps using the SFC control block SETSTEP from a non SFC section or with SFC control instructions 35006144 07 2011 433 SFC Sequence Language e Tokens can be ended with e Simultaneous meeting of two or more tokens in a step e Deactivation of steps using the SFC control block RE SFC section or with SFC control in
531. to a VAR_IN_OUT input output e Acombination of variable address and graphical connections is not possible for VAR_IN_OUT outputs e No literals or constants can be connected to VAR_IN_OUT inputs outputs e No negations can be used on VAR_IN_OUT inputs outputs e Different variables variable components can be connected to the VAR_IN OUT input and the VAR_IN_OUT output In this case the value of the variables variable component on the input is copied to the at the output variables variable component 35006144 07 2011 363 Ladder Diagram LD Control Elements Introduction Control elements are used for executing jumps within an LD section and for returning from a subroutine SRx or derived function block DFB to the main program Control elements take up one cell Control Elements The following control elements are available Designation Representation Description Jump NEXT When the status of the left link is 1 a jump is made to a label in the current gt section gt To generate an unconditional jump the jump object must be placed directly on the left power rail To generate a conditional jump a jump object is placed at the end of a series of contacts Label LABEL Labels jump targets are indicated as text with a colon at the end This text is limited to 32 characters and must be unique within the entire section The text must conform to general naming conventions Jump labels ca
532. to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is used If a formal parameter is not assigned a value and the function block DFB is instanced more than once then the following instances are run with the old value In addition to inputs and outputs some function blocks also provide public variables These variables transfer statistical values values that are not influenced by the process to the function block They are used for setting parameters for the function block Public variables are a supplement to IEC 61131 3 The assignment of values to public variables is made via their initial values or via the load and save instructions 35006144 07 2011 479 Instruction List IL Private Variables Example Instance Name Public Variable D_ACT1 is an instance of the function block D_AcT and has the public LD 1 La variables AREA_NR and OP_CTRL ST D_ACT1 OP_CTRL Public variables are read via the instance name of the function block and the names of the public variables Example Instance Name Public Variable NS ee LD D_ACT1 OP_CTRL ST Varl In addition to inputs outputs and public variables some function blocks also provide private variables Like public variables private variables are used to transfer statistical values values that are not influenced by the process to the func
533. top to bottom link to the left power rail Networks that are independent of each other within the section are processed according to their position from top to bottom see also Execution Sequence and Signal Flow page 380 IEC Conformity For a description of IEC conformity for the LD programming language see IEC Conformity see page 639 350 35006144 07 2011 Ladder Diagram LD Contacts Introduction Contact Types A contact is an LD element that transfers a status on the horizontal link to its right side This status is the result of a Boolean AND operation on the status of the horizontal link on the left side with the status of the relevant Boolean actual parameter A contact does not change the value of the relevant actual parameter Contacts take up one cell The following are permitted as actual parameters e Boolean variables e Boolean constants e Boolean addresses topological addresses or symbolic addresses e ST expression see page 499 delivering a Boolean result e g Vara OR VarB ST expressions as actual parameters for contacts are a supplement to IEC 61131 3 and must be enabled explicitly The following contacts are available Designation Representation Description Normally open XXX In the case of normally open contacts the status of the left link is transferred to the right link if the status of the relevant Boolean actual parameter indicated with xxx is ON Other
534. try examples Type Entry Contents of the string e represents the end of string character represents empty bytes STRING ABCD ABCDe 16 characters STRING 4 john johne STRING 10 It s john It s johne STRING 5 g SORS STRING 5 Aiii STRING 5 the number the nos STRING 13 0123456789 0123456789 STRING 5 R L lt cr gt lt If gt e STRING 5 1 00 1 00 A STRING type variable can be declared in two different ways e STRING and e STRING lt Number of elements gt Behavior differs depending on usage Variable Type FFB input parameter EF output parameter FB output declaration parameter STRING Fixed size The size is equal to the actual The size is equal to the actual Fixed size of 16 characters size of the input parameter size of the input parameter 16 characters STRING lt n gt Fixed size The size is equal to the actual The EF writes a maximum of The FB writes a n characters size of the input parameter n characters maximum of limited to n characters n characters 35006144 07 2011 259 Data Types Strings and the ANY Pin When you use a STRING type variable as an ANY type parameter it is highly recommended to check that the size of the variable is less than the maximum declared size Example Use of STRING on the SEL function Selector Stringl STRING 8
535. ts The number of parts to be procured for each type is defined in the words MD10 MD12 and MD14 respectively When the number of parts is reached the counter sends a command to an output Q1 2 1 Q1 2 2 or Q1 2 3 which then stops the procurement system for the corresponding parts 576 35006144 07 2011 DFB instance The application program is entered in Ladder language as follows The 3 DFBs instances Cpt_bolts Cpt_nuts and Cpt_screws are used to count the different parts Cpt_bolts l1 0 Cpt_parts Q2 1 Reset Done MD10 Presel l1 1 Count Cpt_nuts l1 2 Cpt_parts Q2 2 Reset Done MDS Presel l1 3 Count Cpt_screws l1 4 Cpt_parts Q2 3 Reset Done ON Presel 11 5 Count 35006144 07 2011 577 DFB instance 578 35006144 07 2011 Use of the DFBs from the Different Programming Languages 1 9 Subject of this Chapter This chapter provides an overview of DFB instance calls made using the different programming languages What s in this Chapter This chapter contains the following topics Topic Page Rules for Using DFBs in a Program 580 Use of IODDTs in a DFB 584 Use of a DFB in a Ladder Language Program 587 Use of a DFB in a Structured Text Language Program 589 Use of a DFB in an Instruction List Program 592 Use of a DF
536. ts An SFC section provides the following objects for creating a program Step see page 397 Macro Step embedded sub step see page 400 Transition transition condition see page 411 Jump see page 415 Link see page 416 Alternative branch see page 418 Alternative junction see page 418 Parallel branch see page 419 Parallel junction see page 419 Comments regarding the section logic can be provided using text objects related topics Text Object page 420 35006144 07 2011 391 SFC Sequence Language Representation of an SFC Section Appearance gT Link S_4_1 way Initial Step t Transition condition Boolean Variable i Parallel branch S_4_2 S_4_5 Step associated to an action Ta T_4_2 ee Se Alternative branch 110 Mir Transition condition return value of a transition section S _4_3 S_4 6 S_4_9 S_4 7 oe Jump 14 4 lion 1106 Transition condition 44 S47 Topological Boolean address Alternative junction 7s Parallel junction a Li gt Transition condition Boolean Literal MS_4_1 T Macro Step Retur _Var 392 35006144 07 2011 SFC Sequence Language Structure of an SFC Section An SFC section is a Status Machine i e the status is created by the active step and the transitions pass on the switch
537. ts the syntax is CAL Cpt_1 Reset Clear Presel MD10 Count 100 LD Cpt_1 Done ST Q1 2 1 In order to make your application program more legible you can enter a carriage return after the commas that separate the arguments The sequence then takes the following syntax CAL Cpt_1 Reset Clear Presel MD10 Count 100 Done gt Q1 2 1 35006144 07 2011 593 Use of DFBs Elements of the DFB Call Program The following table lists the different elements of the DFB call program Element Meaning CAL DFB call instruction Cpt_1 Name of the DFB instance Reset Presel Count Input parameters Assignment symbol of an input Clear MD10 100 Assignment object or value of the inputs Done Output parameter gt Assignment symbol of an output Q1 2 1 Assignment object of an output Argument separation symbol DFB Call when the Arguments Are Values When the arguments are values the DFB call Cpt_1 is performed with the following syntax CAL Cpt_1 Clear LD Cpt_1 Done ST Q1 2 1 Elements of the DFB Call Program SMD10 100 The following table lists the different elements of the DFB call program Element Meaning CAL DFB call instruction Cpt_1 Name of the DFB instance Clear MD10 100 Assignment object or value of the inputs Argument separation symbol 594 35006
538. ty Pro Processors racks and power supply modules Implementation manual procedure e set to 0 when the main battery voltage is sufficient application always kept Data stored on a memory card in slot B is not processed in safety projects NO YES YES S76 DIAGBUFFCONF Configured diagnostics buffer This bit is set to 1 by the system when the diagnostics option has been configured a diagnostics buffer for storage of errors found by diagnostics DFBs is then reserved This bit is read only YES YES YES 35006144 07 2011 163 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S77 Full This bit is set to 1 by the system when 0 YES YES YES DIAGBUFFFFULL diagnostics the buffer that receives errors from the buffer diagnostics function blocks is full This bit is read only S78 Stop inthe Normally at 0 this bit can be setto1 O YES YES YES HALTIFERROR event of by the user to program a PLC stop on error application fault S15 S18 20 On Quantum safety PLCs the Halt state is replaced by the Error state when you are in Safe mode Note also that S15 and 20 are not available ST9 Modbus This bit change the behavior of the 0 NO NO YES MBFBCTRL forced bit Quantum Modbus server regarding control forced bits e at0 default value standard management bit value is changed even if t
539. ual output step is placed for each macro section An output step cannot be deleted copied or inserted manually Output steps can NOT be allocated with actions Output steps can only be assigned a delay time Assigning supervision times is not possible see Step Times page 398 Macro Section A macro section consists of a single sequence string having principally the same elements as a sequence control section e g steps initial step s macro steps transitions branches joints etc Additionally each macro section contains an input step at the beginning and an output step at the end Each macro step can be replaced with the sequence string in the allocated macro section Therefore macro sections can contain 0 1 or more initial steps see also Step Types page 397 e Single Token e 0 Initial steps are used in macro sections if there is already an initial step in the higher or lower section e 1 Initial step is used in macro sections if there are no initial steps in the higher or lower section e Multi Token A maximum of 100 initial steps can be placed per section including all their macro sections 35006144 07 2011 401 SFC Sequence Language Using macro sections Sequence control section Macro section Macro section MS_1_1 MS_1_2 S
540. ublic variables The backup attribute that defines whether the variable may or may not be saved The types of objects that may be defined for the DFB parameters belong to the following families Elementary data family EDT This family includes the following object types Boolean BOOL EBOOL Integer INT DINT etc Real REAL Character string STRING Bit string BYTE WORD etc etc Derived data family DDT This family includes table ARRAY and structure user or IODDT object types Generic data families ANY_ARRAY_xxx The function block family FB This family includes EFB and DFB object types 560 35006144 07 2011 Description of DFBs Authorized Objects for the Different Parameters For performances reasons the addressing mode of the DFB parameters must be transferred by address for the following object families e Inputs e Inputs Outputs e Outputs The addressing mode of a Function Block element is linked to the element type The addressing modes are passed by Value VAL Relocation table entry RTE Logical address RTE Offset L ADR Logical address and number of elements L ADR LG IO channel structure IOCHS For each of the DFB parameters the following object families may be used with its associated addressing modes Object EDT STRING Anonymous ppt 1 IODDT GDT FB ANY families or DDT array ANY_ARRAY_x Inputs VAL L
541. ue then a sequence runs to S_7_5 If transition condition b is true then a sequence runs to S_7_ 3 Sinces 7 3 S 7 4ands 7 5 arelinked bya parallel merge the parallel string cannot be departed because S_7 3 ands _7 4 can never be active at the same time Either S_7_ 3 is activated with transition condition b or S_7_4 with transition condition c ThereforeS 7 3 S 7 4ands_ 7 5 cannot be active at the same time either The string is blocked This block can be removed for example by a second timed token that runs via transition c 35006144 07 2011 441 SFC Sequence Language Jump into a Parallel String Description The ability to jump into a parallel string or out of a parallel string can be enabled optionally with multi token A jump into a parallel string does not activate all branches Since the transition after the parallel joint is only evaluated if all steps which directly precede the transition are set the parallel string can no longer be departed the string is blocking Jump into a Parallel String Jump into a Parallel String Le n a gt S14 S_1_2 a b S_1_3 c S_1_1 If Then If the transition condition a is true then a sequence runstoS 1 lands 1 2 lf steps S_1 lands _ 1 2 are activated then the strings run independently of one another If S_1 2 is active and transition condition b then a sequence run
542. ulti Token defined by the user increases the degree of freedom This reduces eliminates the restrictions for enforcing unambiguousness and non blocking and must be guaranteed by the user Step chains with Multi Token do not conform to IEC 61131 3 35006144 07 2011 393 SFC Sequence Language Section Size IEC Conformity An SFC section consists of a single page window Because of performance reasons it is strongly recommended to create less than 100 SFC sections in a project makro section are not counted The window has a logical grid of 200 lines and 32 columns Steps transitions and jumps each require a cell Branches and links do not require their own cells they are inserted in the respective step or transition cell A maximum of 1024 steps can be placed per SFC section including all their macro sections A maximum of 100 steps can be active Multi Token per SFC section including all their macro sections A maximum of 64 steps can be set manually at the same time per SFC section Multi Token A maximum of 20 actions can be assigned to each SFC step The nesting depth of macros i e macro steps within macro steps is to 8 levels For a description of the extent to which the SFC programming language conforms to IEC see IEC Conformity see page 639 394 35006144 07 2011 SFC Sequence Language Link Rules Link Rules The table indicates which object outputs can be linked with which object inp
543. uration Project Browser Te Structural View lt 2 Communication faa Network El amp mne R eh 4 Link im Lood Lo Etherneti Increase Modbus Plus_4 Decrease 5 Routing Table Add User Directory Add Hyperlink Ld The network configuration windows allow among others e Creation of networks e Network analysis e Printout of the network configuration A window for configuring a network E Ethernet_1 Be Model family Module address p Module services Rack Module Channel TCP IP 10 100 Regular connection y Yes F VO request Yes v Global data Module IP address Yes v Address server P address Subnet mask Gateway address OORT Cra DOOR IP Configuration Message VO request Global data SNMP Address server Bandwidth IP Address configuration Configured IP address 0 0 00 Subnet mask 0 0 0 0 Gateway address QO 0 0 0 Client Server configuration Ethemet configuration Ethernet I 8023 After configuration the network is assigned a communications module 35006144 07 2011 31 Presentation Data Editor Introduction The data editor offers the following features e Declaration of variable instances e Definition of derived data types DDTs e Instance declara
544. uration does not match hardware configuration AlO330 E _EFB_CURRENT_MODE_ F 30197 16 8A0B EFB error Current mode is not NOT_ALLOWED allowed AMMO90 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ARI030 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ARI030 E_EFB_ILLEGAL_CONFIG_ F 30198 16 8A0A EFB error Illegal configuration data DATA ATI030 E _EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration AVI030 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration AVO020 E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration DROP E _EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration ERT_854_10 ES WRONG_SLOT F 20480 16 5000 ERT_854_10 E_ WRONG_SLOT 30215 16 89F9 Defined as E_EFB_USER_ERROR_16 618 35006144 07 2011 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error ERT_854_10 ES HEALTHBIT F 24576 16 6000 ERT_854 10 E_HEALTHBIT F 30216 16 89F8 Defined as E _EFB_USER_ERROR_17 ERT_854_10 ES_TIMEOUT 32768 16 8000 ERT_854_10 E_TIMEOUT 30210 16 89FE
545. ures according to the specifications given in the Standard e Further on the Standard allows an implementer to use the defined programming language elements in an interactive programming environment Since the Standard explicitely states that the specification of such environments is beyond its scope the implementer has certain degrees of freedom in providing optimized presentation and handling procedures for specific language elements to the benefit of the user e Unity Pro uses these degrees of freedom e g by introducing the notion of Project for the combined handling of the IEC language elements Configuration and Resource It also uses them e g in the mechanisms provided for handling variable declarations or function block instantiations 640 35006144 07 2011 IEC Compliance IEC standards tables The supported features and other implementation specific information is given in the following compliance statement and the subsequent tables as required by the Standard 35006144 07 2011 641 IEC Compliance B 2 IEC Compliance Tables Overview This system complies with the requirements of IEC 61131 3 for the language and feature listed in the following tables What s in this Section This section contains the following topics Topic Page Common elements 643 IL language elements 654 ST language elements 656 Common graphical elements 657 LD language elements 658 Implementation depe
546. us steps must satisfy these conditions Zero or more actions belong to every step Steps without action are known as waiting steps Initial step f The initial status of a sequence string is characterized by the initial step S_1_1 After initializing the project or initializing the sequence string the initial step is active Initial steps are not normally assigned with any actions With Single Token Conforming with IEC 61131 3 only one initial step is allowed per sequence With Multi Token a definable number 0 to 100 of initial steps are possible Macro Step L See Macro Step page 400 MS_1_1 Input step see Input Step page 400 MS_1_1_IN Output step see Output Step page 401 MS_1_1_OU Step Names When creating a step it is assigned with a suggested number The suggested number is structured as follows S_i 4 whereas i is the internal current number of the section and j is the internal current step number in the current section You can change the suggested numbers to give you a better overview Step names maximum 32 characters must be unique over the entire project i e no other step variable or section etc may exist with the same name There are no case distinctions The step name must correspond with the standardized name conventions 35006144 07 2011 397 SFC Sequence Language Step Times Each step can be assigned a minimum supervision time a maximum supervision time and a delay time e Minimum Supervis
547. utput Z 5 2 F Actual parameter required Actual parameter not required not applicable Public Variables FFBs that use actual parameters on the inputs that have not yet received any value assignment work with the initial values of these actual parameters If no value is allocated to a formal parameter then the initial value will be used for executing the function block If no initial value has been defined then the default value 0 is used If a formal parameter is not assigned a value and the function block DFB is instanced more than once then the subsequent instances are run with the old value In addition to inputs outputs some function blocks also provide public variables These variables transfer statistical values values that are not influenced by the process to the function block They are used for setting parameters for the function block Public variables are a supplement to IEC 61131 3 The assignment of values to public variables is made using their initial values Public variables are read via the instance name of the function block and the names of the public variables Example FBL1 Aner The function block has the public variables AREA_NE and OP_CTRL ED ERR DTIMEL ACT DTIMEA TRIGR UNLOCK REACT Instance Name Public Variable EN 1 1 AND FBI_1 0P_CTRL JIN1 OUT Var3 Var2 jIN2
548. utput fault S47 Rack 7 Idem S40 for rack 7 1 YES YES NO RACK7ERR_ input output fault 158 35006144 07 2011 System Objects Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S50 Updating of Normally set to 0 this bit is set to 1 or 0 by 0 YES YES YES RTCWRITE time and the program or the terminal date via e set to 0 update of system words words SW50 to SW53 by the date and time SW50 to supplied by the PLC real time clock SW53 e set to 1 system words SW50 to SW53 are no longer updated therefore making it possible to modify them e The switch from 1 to 0 updates the real time clock with the values entered in words SW50 to SW53 S51 Time lossin This system managed bit set to 1 indicates YES YES YES RTCERR real time that the real time clock is missing or that its clock system words SW50 to SW53 are meaningless In this case the clock must be reset to the correct time S59 Incremental Normally set to O this bit can be set to 1 or 0 YES YES YES RTCTUNING update of the 0 by the program or the terminal time and e set to 0 the system does not manage date via the system word SW59 word e setto 1 the system manages edges on SW59 word SW59 to adjust the date and current time by increment 35006144 07 2011 159 System Objects Description of System Bits S65 to S79 Detail
549. utputs and not on the image bits of the outputs Note On Modicon M340 ethernet I O scanner and Global Data are affected by the S9 bit 1 Note On Modicon M340 inputs outputs distributed via CANopen bus are not affected by the S9 bit On Modicon M340 after an operating mode outputs are in security mode state equal to 0 while the bit is set 0 YES 1 YES NO S10 IOERR Global I O detected error Normally at 1 this bit is set to O when an error on an in rack module or device on a network is detected e g non compliant configuration exchange fault hardware fault etc The S10 bit is reset to 1 by the system when all the detected errors have disappeared e YES YES YES Detected network communication errors with remote devices are not reported on bits 510 S16 and S119 A CAUTION UNEXPECTED APPLICATION BEHAVIOR SPECIFIC VARIABLE BEHAVIOR Manage detected network communication errors with remote devices with a method specific to each type of communication modules NOM NOE NWM CRA CRP or motion modules MMS e communication function blocks status if they are used e communication modules status if they exist Failure to follow these instructions can result in injury or equipment damage 152 35006144 07 2011 System Objects Bit Function Description Initial Modicon Premium Quantum Symb
550. uts From object output of To object input of Step Transition Alternative Branch Parallel joint Transition Step Jump Parallel Branch Alternative joint Alternative Branch Transition Alternative joint Step Jump Parallel Branch Alternative joint Parallel Branch Step Jump Alternative joint only with Multi Token see page 432 Parallel joint Transition Alternative branch only with Multitoken see page 432 Alternative joint 35006144 07 2011 395 SFC Sequence Language 13 2 Steps and Macro Steps Overview This section describes the step and macro step objects of the SFC sequence language What s in this Section This section contains the following topics Topic Page Step 397 Macro Steps and Macro Sections 400 396 35006144 07 2011 SFC Sequence Language Step Step Types The following types of steps exist Type Representation Description Normal Step f A step becomes active when the previous step becomes inactive a delay S12 that may be defined must pass and the upstream transition is satisfied A step normally becomes inactive when a delay that may be defined passes and the downstream transition is satisfied For a parallel joint all previo
551. uts are written at the end of the master task Example on Premium With its 8 successive channel modularity channels 0 to 7 channels 8 to 15 etc the inputs outputs of the Premium discrete modules can be assigned in groups of 8 channels independently of the MAST AUXi or FAST task Example it is possible to assign the channels of a 28 input output module as follows inputs 0 to 7 assigned to the MAST task inputs 8 to 15 assigned to the FAST task outputs 0 to 7 assigned to the MAST task outputs 8 to 15 assigned to the AUXO task 98 35006144 07 2011 Program Structure Management of Event Processing General Event processing take priority over tasks The following illustration describes the 3 defined levels of priority Timer 1 O module O module event lt event 4 event r rq TIMERi EVTi EVTo bey easy es l be pean en Priority 2 Priority 1 Priority 0 j Priority G Management of Priorities e EVTO event processing is the highest priority processing It can itself interrupt other types of event processing e EVTi event processing triggered by input output modules priority 1 take priority over TIMERi event processing triggered by timers priority 2 e On Modicon M340 Premium and Atrium PLCs types of event processing with priority level 1 are stored and processed in order e On Quantum PLC the priority o
552. values only if a save to memory card function Backup Save or S66 rising edge was done The system resets the bit S94 to 0 when the replacement has been made Note this bit must be used with care do not set this bit permanently to 1 and use the master task only This bit is not available on Quantum safety PLCs When used with the TSX MFP e or TSX MCP eflash PCMCIA memory the saving adjustment values is not available YES YES YES except for safety PLCs 166 35006144 07 2011 System Objects or unusable bad format unrecognized type etc or the card content is inconsistent with Internal Application RAM e Set to 1 when the card is correct and the application is consistent with CPU Internal Application RAM Bit Function Description Initial Modicon Premium Quantum Symbol state M340 Atrium S96 Backup This bit is set to 0 or 1 by the system YES NO NO BACKUPPROGOK program OK e Set to 0 when the card is missing 4 CAUTION APPLICATION UPLOAD NOT SUCCESSFUL The bit s94 must not be set to 1 during an upload If the bit S94 is set to 1 then the upload may be impossible Failure to follow these instructions can result in injury or equipment damage A CAUTION LOSS OF DATA The bit 3S94 must not be used with the TSX MFP e or the TSX MCP e flash PCMCIA memory The function of this system bit is not available with th
553. variables only exists on Premium PLCs Constant real SKF lt i gt REAL No mapping because of overlapping between KwW lt i gt and SKD lt i gt and SKF lt i gt This kind of variables only exists on Premium PLCs System bit S lt i gt or SX lt i gt EBOOL EBOOL System word SSW lt i gt INT INT System double word SD lt i gt DINT DINT Flat bit I lt i gt EBOOL EBOOL ARRAY OF EBOOL This kind of variables only exists on Qantum PLCs Flat word SIW lt i gt INT All types are allowed except EBOOL ARRAY OF EBOOL This kind of variables only exists on Qantum PLCs Common word SNWi j k INT INT 652 35006144 07 2011 IEC Compliance Syntax Data type Allowed variable types Topological variables BAS OM Snag ell Ys Same Type On some digital I O modules it is allowed to map arrays of EBOOL on IX lt topo gt and QX lt topo gt objects Extract bits SMWi j BOOL BOOL Note 6 Note 7 Note 8 Note 9 Note 10 Note 11 Note 12 Note 13 Note 14 Only operator for ADD for SUB for MUL or for DIV in ST language This feature is only presented in the expanded view of the chart This feature is presented in the expanded view of the chart but not as concatenated blocks but as a scrollable list of action names with associated qualifiers inside one single block symbol T
554. vice No 1 SW 168 1 device No 2 SW171 15 device No 64 SW172 to SW173 ERIO_ CONNECT STATUS Standalone and Hot Standby Primary Detected Ethernet RIO Communications Drop error status The bits of words SW172 to SW173 are associated with the Ethernet RIO Drop connection status The bit is set to 0 if the connection between the PLC and the Drop is not operating correctly It is set to 1 if the connection is operating correctly SW 172 0 Drop No 1 SW172 1 Drop No 2 SW173 14 Drop No 31 NOTE In a Hot Standby system these are for the Primary CPU SW176 to SW177 SDBY_ERIO CONNECT STATUS Hot Standby Detected Ethernet RIO Communications Drop error status The bits of words SW176 to SW177 are associated with Ethernet RIO Drop connection status The bit is set to 0 if the connection is not operating correctly It is set to 1 if the connection is operating correctly SW176 0 Drop No 1 SW176 1 Drop No 2 SW177 14 Drop No 31 NOTE In a Hot Standby system these are for the Standby CPU They are not significant in a Standalone PLC 35006144 07 2011 215 System Objects Description of Quantum System Words SW180 to SW702 Detailed Description Description of system words SW180 to SW702 Word Function Description Initial Symbol state SW180 to SW339 Health bits of the Words SW180 and SW181 are associated with PLC stations 0 IOH
555. viewer some information are available if the entry is selected to clarify error type on the bus This information can identify the correct remote bus with the bus number RIO DIO NO NO YES except for safety PLCs S122 DIOERRNOM2 DIO bus fault NAME No 2 Normally set to 1 this bit is set to 0 by the system when a fault occurs on a device connected to the DIO bus managed by the second 140 NAME 2ee module This bit is not available on Quantum safety PLCs In the Diagnostic viewer some information are available if the entry is selected to clarify error type on the bus This information can identify the correct remote bus with the bus number RIO DIO NO NO YES except for safety PLCs S123 ADJBX Adjust Bus X This bit is used by the system and cannot be used by the user application YES YES NO 35006144 07 2011 169 System Objects 6 2 System Words Subject of this Section This section describes the Modicon M340 Atrium Premium and Quantum system words 4 WARNING UNEXPECTED APPLICATION BEHAVIOR Do not use system objects Si SWi as variable when they are not documented Failure to follow these instructions can result in death serious injury or equipment damage What s in this Section This section contains the following topics Topic Page Description of System Words
556. w Services Tools Generate PLC Debug Window Help a3 oS 0O S t UN STOP oy I a6 H S PABI mal Toma My_Section MAST Station Initial filling Configuration GJ 0 XBus oo i i Al Cycle OK mrs o Derived Data Types i i s 9 Derived FB Types 3 l Variables DT 7 3 Variables amp FB instan i bor a A r cy 4 E Communication Leela al 2 F S J count count ok valid count Ile JI L ae ame lo of LU Fe 3g i Mixer filling y End offilling E Actions Initial mixer i 55 nial filing 820 OR BOOL emptying f AND BOOL NI outi ae NI OUTI N2 Er Proportioning Proportioning ine E iL Process IL1 Qp Data Editor gro MY_SFC Ah Generate _ Importfexport_ 7 Ready a BUILT 5 6 7 Legend Number Description 1 Menu bar see Unity Pro Operating Modes 2 Toolbar see Unity Pro Operating Modes 22 35006144 07 2011 Presentation Number Description 3 Project Browser see Unity Pro Operating Modes 4 Editor window programming language editors data editor etc 5 Register tabs for direct access to the editor window 6 Information window see Unity Pro Operating Modes provides information about errors which have occurred signal tracking import functions etc 7 Status bar see Unity Pro Operating M
557. w84 Number of telegrams sent by the system e sSws5 Number of telegrams received by the system For Modicon M340 SW84 Number of messages sent to the USB port SW85 Number of messages received by the USB port YES YES NO SW86 MSGCNT6 Message manage ment This word is updated by the system and can also be reset using S80 For Premium e Number of messages refused by the system For Modicon M340 e Number of messages refused by the system not treated because of lack of resources for example If the message is refused by Modbus Server then it corresponds to Modbus exception messages sent by the CPU to the remote Modbus client YES YES NO 35006144 07 2011 185 System Objects Word Function Description Initial Modicon Premium Quan Symbol state M340 Atrium tum SW87 Commu Number of requests processed by 0 YES YES YES MSTSERVCNT nication synchronous server per master MAST flow man task cycle agement The requests processed may come from all communication ports having access to the server Modbus UNI TE each of them having its own limitation This means also that requests from other clients then communication EFs like IO Scanner connected HMI and so on should be counted SW88 Premi For Premium 0 YES YES NO ASNSERVCNT um Com sw88 Number of requests SW89I municatio processed by asynchronous server
558. wed when Multitoken Operation is enabled 35006144 07 2011 353 Ladder Diagram LD Elementary Functions Elementary Function Blocks Derived Function Blocks and Procedures FFBs Introduction FFB is the generic term for e Elementary Function EF see page 354 e Elementary Function Block EFB see page 355 e Derived Function Block DFB see page 356 e Procedure see page 356 FFBs occupy 1 to 3 columns depending on the length of the formal parameter names and 2 to 33 lines depending on the number of formal parameter rows Elementary Function Functions have no internal states If the input values are the same the value on the output is the same every time the function is called For example the addition of two values always gives the same result An elementary function is represented graphically as a frame with inputs and one output The inputs are always represented on the left and the output is always on the right of the frame The name of the function i e the function type is displayed in the center of the frame The execution number see page 380 for the function is shown to the right of the function type The function counter is shown above the frame The function counter is the sequential number of the function within the current section Function counters cannot be modified Elementary Function 1 DIV EN ENO IN1 OUT IN2 With some elementary functions the numbe
559. wing program provides an example of Structured Text code CHR 200 CHR 100 CHR 114 CHR 104 CHR 116 CHR 106 RESET DEMARRE We increment 80 times CHR 100 FOR CHR 102 1 TO 80 DO a INC CHR 100 WHILE CHR 104 CHR 114 lt 100 DO IF CHR 1045400 THEN EXIT B END IF INC CH 04 REPEAT IF CHR 106 gt 300 THEN EXIT END IF INC CHR 106 UNTIL CHR 100 CHR 116 gt 100 END REPEAT END WHILE Toop as long as CHR 106 IF CHR 106 CHR 116 7 THEN EXIT a ELSE CHR 114 CHR 104 CHR 116 CHR 106 END IF INC CHR 200 END FOR 35006144 07 2011 569 Description of DFBs 570 35006144 07 2011 User Function Blocks DFB Instance 18 Subject of this Chapter This chapter provides an overview of the creation of a DFB instance and its execution What s in this Chapter This chapter contains the following topics Topic Page Creation of a DFB Instance 572 Execution of a DFB Instance 574 Programming Example for a Derived Function Block DFB 575 35006144 07 2011 571 DFB instance Creation of a DFB Instance DFB Instance A DFB instance is a copy of the DFB model DFB type e lt uses the DFB type code the code is not duplicated e l tcreates a data zone specific to this instance which is a copy of the parameters and variables of the DFB type This zone is situated in the applicati
560. wise the status of the right link is OFF Normally closed XXX In the case of normally closed contacts the status of the left link is transferred to the right link if the status of the relevant Boolean actual parameter indicated with xxx is OFF Otherwise the status of the right link is OFF Contact for detecting positive transitions XXX With contacts for detection of positive transitions the right link for a program cycle is ON if a transfer of the relevant actual parameter labeled by xxx goes from OFF to ON and the status of the left link is ON at the same time Otherwise the status of the right link is 0 Also see Edge Recognition page 371 Contact for detecting negative transitions With contacts for detection of negative transitions the right link for a program cycle is ON if a transfer of the relevant actual parameter labeled by xxx goes from ON to OFF and the status of the left link is ON at the same time Otherwise the status of the right link is 0 Also see Edge Recognition page 371 35006144 07 2011 351 Ladder Diagram LD Coils Introduction A coil is an LD element which transfers the status of the horizontal link on the left side unchanged to the horizontal link on the right side The status is stored in the respective Boolean actual parameter Normally coils follow contacts or FFBs but they can also be followed by contacts Coils take up one
561. wn to the user Direct addressing data instances are defined using types belonging to the Elementary Data Type EDT family Examples of direct addressing data instances Internal Constant System Input Output Network Mi Si Q Vl MWi KWi SWi QW IW NW MDi 1 KDi 1 QD ID MFi 1 KFi 1 QF IF Legend 1 Not available for Modicon M340 NOTE Located data instances can be used by a direct addressing in the program Example e Var_1 DINT AT smw10 sS MW10 and MW11 are both used MD10 direct adressing can be used or Var_1 in the program 35006144 07 2011 297 Data Instances Data Instance Attributes At a Glance The attributes of a data instance are its defining information This information is e its name see page 234 except for the direct addressing data instances see page 300 e its topological address except for unlocated data type instances e its data type which can belong to one of the following families e Elementary Data Type EDT Derived Data Type DDT Function Block data type EFB DFB Sequential Function Chart data type SFC e an optional descriptive comment 1024 characters maximum Authorized characters correspond to the ASCII codes 32 to 255 Name of a Data Instance This is a symbol 32 characters maximum chosen by the user which is used to reference the instance and must be unique Certain names cannot be used for e
562. wn value for MX_PHYS _SET E_EFB_USER_ERROR_11 F 30210 16 89FE ST_REG not entered _SET E_EFB_USER_ERROR_12 F 30211 16 89FD ST_REG too large _SET E_EFB_USER_ERROR_13 F 30212 16 89FC ST_CH not entered O_FILTER E_EFB_NOT_CONFIGURED F 30188 16 8A14 EFB configuration does not match hardware configuration O_SET E_EFB_USER_ERROR_1 F 30200 16 8A08 The input OUT_REG is not connected with the number of an output word MW O_SET E_EFB_USER_ERROR_2 F 30201 16 8A07 The input OUT_REG is connected with an invalid number of an output word MW O_SET E_EFB_USER_ERROR_3 F 30202 16 8A06 MN_RAW MX_RAW O_SET E_EFB_USER_ERROR_4 F 30203 16 8A05 Unknown value for MN_PHYS 35006144 07 2011 611 EFB Error Codes and Values EFB name Error code ENO Error Error Error description state in value value in case of in Dec Hex error O_SET E _EFB_USER_ERROR_5 F 30204 16 8A04 Unknown value for MX_PHYS O_SET E EFB_USER_ERROR_11 F 30210 16 89FE ST_REG not entered O_SET E EFB_USER_ERROR_12 F 30211 16 89FD ST_REG too large O_SET E EFB_USER_ERROR_13 F 30212 16 89FC ST_CH not entered Analog I O Scaling Table of error codes and errors values created for EFBs of the Analog 1 0 Scaling family EFB name Error code ENO state in case of error Error value in Dec Error value in Hex Error de scription _NORM
563. words implement a bitlist indicating CANopen node error to inhibit e bit 0 of sw142 concerns device at node address 1 e bit 1 of sSw142 concerns device at node address 2 e e bit15 of sw145 concerns device at node address 64 Bit values e lf the bit is at 0 and device not present then an error is raised e Ifthe bit is at 1 and device not present then no error is raised NOTE The default value is 0 NOTE This inhibition can be performed on the fly but in order for it to be taken into account the CANopen Master must be reset by setting bit 5 of the output word QW0 0 2 0 to 1 NOTE The system words SW142 to SW145 are available since SV 2 1 of the CPU OS SW146 and Modicon M340 Those 2 system words contain the unique SD card serial SW147 number 32bits If there is not an SD card or an unrecognized SD card the 2 system words are set to 0 This information can be used to protect an application see Modicon M340 Using Unity Pro Processors Racks and Power Supply Modules Setup Manual against duplication NOTE The system words SW146 and SW147 are available since SV 2 1 of the CPU OS 222 35006144 07 2011 System Objects Word Symbol Function Description Initial State SW150 to SW154 CANopen Modicon M340 Informations concerning the last SDO abort transfert SW150 Low word of the SDO abort code SW151 High word of the SDO abort code SW152 N
564. ws two networks for which the execution sequences are simply defined by their positions within the section without taking into account the fact that blocks 4 5 and 7 8 require a different execution sequence 4 1 3 2 1 AND AND AD 5 3 AND BE gt 6 7 4 5 AND AND EN ENO moa AND 342 35006144 07 2011 Function Block Language FBD Link Instead of Actual Parameters By using a link instead of a variable the two networks are executed in the proper sequence see also Original Situation page 342 JEN Network Positions AND ENO 4 AND 1 AND AD AND AND AND The correct execution sequence can be achieved by changing the position of the networks in the section see also Original Situation page 342 6 EN AND ENO 7 AND AND AND AND Bb AND 35006144 07 2011 343 Function Block Language FBD Explicit Definition FFB Positions The correct execution sequence can be achieved by explicitly changing the execution sequence of an FFB To indicate that which FFB s had their execution order changed the execution number is shown in a black field see also Original Situation page 342
565. ws0 Number of message sent by the system to the terminal port Modbus serial port e Sw8s1 Number of message received by the system to the terminal port Modbus serial port For Quantum e Sws0 Number of Modbus messages sent by the system as client on all communication ports NOTE Modbus messages sent by the system as Master are not counted in this word e SW81 Number of Modbus messages received by the system as client on all communication port NOTE Modbus messages received as response to the requests sent by the system as Master are not counted in this word 184 35006144 07 2011 System Objects Word Symbol Function Description Initial state Modicon M340 Premium Atrium Quan tum SW82 SW83 Message manage ment These words are updated by the system and can also be reset using SS80 For Premium Sw82 Number of messages sent by the system to the PCMCIA module Sw83 Number of messages received by the system from the PCMCIA module For Quantum Sw82 Number of Modbus messages sent or received on serial port 1 Sw83 Number of Modbus messages sent or received on serial port 2 0 NO YES YES SW84 MSGCNT4 SW85 MSGCNT5 Premi um Tele gram manage ment Modicon M340 Message manage ment These words are updated by the system and can also be reset using SS80 For Premium s
566. xample e key words used in text languages e names of program sections e names of data types that are predefined or chosen by the user structures tables e names of DFB EFB data types that are predefined or chosen by the user e names of Elementary Functions EF that are predefined or chosen by the user Names of Instances Belonging to the SFC Family The names of instances are declared implicitly while the user drafts his sequential function chart They are default names supplied by the manufacturer which the user can modify Manufacturer supplied default names SFC object Name Step S_ lt section name gt _ lt step No gt Step of Macro step S_ lt section name gt _ lt macro step No gt _ lt step No gt Macro step MS_ lt section name gt _ lt step No gt Nested macro step MS_ lt section name gt _ lt macro step No gt _ lt step No gt Input step of Macro step S_IN lt section name gt _ lt macro step No gt Output step of Macro step S_OUT lt section name gt _ lt macro step No gt 298 35006144 07 2011 Data Instances SFC object Name Transition T_ lt section name gt _ lt transition No gt Transition of Macro step T_ lt section name gt _ lt macro step No gt _ lt transition No gt Names of Instances Belonging to the Function Block Family Instance names are implicitly declared while the user inserts the instances into the sections of the application program They are d
567. y EFB name Error code ENO Error Error Error description state valuein value in in Dec Hex case of error AUTOTUNE W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range AUTOTUNE E_ERR_NULL_INPUT_SCALE F 30121 16 8A57 Null input scale max and min limit must be different AUTOTUNE W_WARN_AUTOTUNE_FAILED T 30111 16 759F AUTOTUNE has failed AUTOTUNE FP_ERROR F See table Common Floating Point Errors page 637 AUTOTUNE E_ERR_AUTOTUNE_ID_UNKNOWN F 30120 16 8A58 The tuned EFB is not allowed or has not yet been called AUTOTUNE Status word values T F For details about the AUTOTUNE status word refer to the AUTOTUNE description see Unity Pro Control Block Library PI_B W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range PI_B E_ERR_NULL_INPUT_SCALE F 30121 16 8A57 Null input scale max and min limit must be different PI_B FP_ERROR F See table Common Floating Point Errors page 637 PI_B Status word values T F For details about the PI_B status word refer to the PI_LB description see Unity Pro Control Block Library PIDFF W_WARN_OUT_OF_RANGE T 30110 16 759E Parameter out of range PIDFF E_ERR_NULL_INPUT_SCALE F 30121 16 8A57 Null input scale max and min limit must be different PIDFF FP_ERROR F See table Common Floating Point Errors page 637 PIDFF Status word values T F For details about the PIDFF status word refer to the PIDFF description see Unity Pro Control Block Libra
568. yte e one alignment rule and function of the element e the BOOL and BYTE types are aligned on either even or uneven bytes e the INT WORD and UINT types are aligned on even bytes e the DINT UDINT REAL TIME DATE TOD DT and DWORD are aligned on double words e structures and tables are aligned according to the rules of their elements A WARNING BAD EXCHANGES BETWEEN A MODICON M340 AND A PREMIUM OR QUANTUM Check if the structure of the exchanged data have the same alignments in the two projects Otherwise the data will not be exchanged properly Failure to follow these instructions can result in death serious injury or equipment damage NOTE It is possible that the alignment of data are not the same when the project is transferred from the simulator of Unity Pro to a M340 PLC So check the structure of the data of the project NOTE Unity Pro see Unity Pro Operating Modes indicates where the alignment seems to be different Check the corresponding instances in the data editor See the page of Project settings see Unity Pro Operating Modes to know how enable this option The table below gives some examples of data structures In the following examples structure type DDTs are addressed to 2Mwi The word s 1 byte corresponds to the least significant 8 bits and the word s 2 byte corresponds to the most significant 8 bits For all the following structures the first variable i

Download Pdf Manuals

image

Related Search

PLC_2_Unity_Referenc..

Related Contents

SGY-PM900H90 - Pioneer cyclesports  LanDeco for TS 取扱説明書  VERWENDUNG DES TABLETS  Nokia 5530 Cell Phone User Manual    Page 1 Page 2 安趾のご注意 〇〇〇 安全上のご注意 〇〇〇 製品を  Sony SNC-EP580  nirvana-notice  

Copyright © All rights reserved.
Failed to retrieve file