Return to site

Allen Bradley Slc 500 4 Slot Rack

broken image


There are a number of addressing schemes used by PLC manufacturers. Let's take a quick look at how memory locations (including hardware I/O) are accessed with RSLogix 500. Along the way, let's define some terms.

INSTRUCTION – RSLogix's command language is comprised of 'instructions'. An XIC (it looks like a normally open contact –] [– ) is an instruction. A timer is an instruction. A few of the most common instructions are described below.

Our Bulletin 1746 SLC™ I/O Modules are part of our SLC 500 control platform. Rockwell Automation announces that as of August 31, 2018, additional Bulletin 1746 I/O modules will be discontinued and no longer available for sale. Customers are encouraged to migrate to our Compact 5000™ I/O modules used with the Logix control platform.

  • SLC 500 Allen Bradley Programmable Logic Controls. 1746-A4 Series B 4-Slot Rack - Replacement. Southland Electrical Supply is not an authorized distributor for.
  • The 1746-A4 serves as an expansion module to the SLC 500 series. A thermocouple module fits into any single-slot, except the processor slot (0), in either an SLC 500 modular system or an SLC 500 fixed system expansion chassis (1746-A4), as well as other components.
  • Allen Bradley SLC 500 Combo 1746P2 1746A4 Date Varies. Power Supply AC Chassis Rack Mount 120/240 VAC 5A 120 or 220V AC Nominal Input Voltage 18-30V DC Output Voltage Range 4 Slot Slots Rack Chassis. Catalog Number: 1746-P2 and 1746-A4 OEM Product Description: SLC RACK MOUNTING POWER SUPPLY and SLC 4 SLOTS CHASSIS Parent Company: Rockwell.
  • Allen Bradley Slc 500 4 Slot Rack w/5/03 Processor.

BIT – an address within the PLC. It can be an input, output or internal coil, among others.

In RSLogix, there are a couple of ways to show the address of a bit. The default is:

[type]:[word]/[bit]

For example, an address that references an output of a MicroLogix 1100 is O:0/0. That is:

O:0/5 means that it is a physical output.
O:0/5 means that it uses Slot 0 (in the case of the 1100, this output is onboard)
O:0/5 means that it is the fifth output on the PLC.

By the way, don't get the capital 'O' confused with a zero.

Allen

RUNG – A section of the PLC ladder program that terminates in an output function of some type. Just like in an electrical ladder diagram, a rung has some type of output that is turned on or turned off by the preceding entities in the rung. The first rung in a ladder program is always 0000.

HARDWIRED INPUT – a physical connection to the PLC from an input device (switch or sensor, etc.).

Allen-Bradley uses the capital letter 'I' to designate a hardwired input. An address that describes an input on an SLC 500 is I:4/0.

Similar to the output structure,

Bradley

I:4/0 means that it is a physical input.
I:4/0 means that it uses Slot 4 (the 5th slot in the rack).
I:4/0 means that it is the first input on the card.

Don't get the capital 'I's' confused with ones.

Allen Bradley Slc 500 4 Slot Rack

HARDWIRED OUTPUT – a physical connection from the PLC to an output device (relay or pilot light, etc.) As was said above, an address that references an output of an SLC 500 is O:5/0.

INTERNAL COIL
This is a programmable bit used to simulate a relay within the PLC. The internal coil has no connection to the outside world. It does not connect to an output card. Internal coils are used to store information. The 'contacts' of this 'relay' can then be used multiple times in other parts of the program.

In RSLogix, the 'B3' (binary) file is commonly used for all the internal coils. There are many other words in other files that have bits you can use as internal coils, but we are going to stick with the B3 file for our application.

B3:0/0 means that it references an internal Binary file
B3:0/0 means that it uses the first word in the table
B3:0/0 means that it is the first bit in the word.

Note that, unlike the Output and Input files, you have to use the file number in the address. In this case, the default file number is 3.

TIMER
A timer is a programmable instruction that lets you turn on or turn off bits after a preset time.

The two primary types of timers are TON for 'timer on delay' and TOF for 'timer off delay'.

Timers in A-B SLC and MicroLogix processors use file 4 for their timers.

Allen Bradley Slc 500 4 Slot Rack

T4:0 means that it references an internal Timer file
T4:0 means that it uses the first timer in the table

The address T4:0 simply refers to the timer. Each timer has bits that turn on after the timing function is complete. You can address this bit by simply putting a '/DN' after the timer address. DN stands for 'done'.

For example, if timer T4:0 is a TON (timer on delay), then the bit T4:0/DN will turn on after the timer has reached its preset value.

COUNTER
A counter is a programmable instruction that lets you turn on or turn off bits after a preset count has been reached.

There are different types of counters available in the RSLogix, but the CTU (counter up) instruction covers everything we will talk about here.

Counters in A-B SLC and MicroLogix processors use file 5.

C5:0 means that it references an internal Counter file
C5:0 means that it uses the first counter in the table

The address C5:0 simply refers to the counter. Each counter has bits that turn on after the counting function is complete. You can address this bit by simply putting a '/DN' after the counter address. DN stands for 'done'.

Skagit Valley Casino Resort is your destination for the best headline entertainment and live music. Enjoy the intimate theater-style setting of The Pacific Showroom, featuring our excellent acoustical sound system; capacity 460-seats. Skagit valley casino pacific showroom seating chart. Skagit Valley Casino Seating Chart Details. Skagit Valley Casino is located in Bow, WA and is a great place to catch live entertainment. SeatGeek provides everything you need to know about your seating options, including sections, row and even obstructed views. View detailed seating charts and maps for Skagit Valley Casino with row numbers. Finding Skagit Valley Casino seating charts with seat views or 3D views from your seat has proven to be a difficult task – until now. Event Tickets Center provides fans with unbiased Skagit Valley Casino reviews on our venue guides, including information on Skagit Valley Casino seat numbers, row numbers, and tips on how to find great seats!

For example, if counter C5:0 is a CTU (counter up), then the bit C5:0/DN will turn on after the counter has reached its preset value.

–] [– Normally Open Contact
When used with a hardwired input, this instruction is off until there is a voltage applied to the input. The bit address then goes high, or on, and the instruction becomes 'true.' It works the same way when it has the same address as an internal coil, except that the coil must be turned on by logic in the program.

Allen-Bradley calls these normally open contacts 'XIC', or 'eXamine If Closed' instruction.

An XIC instruction can reference a hardwired input, a hardwired output, an internal coil or a timer done bit, among others.

–]/[– Normally Closed Contact
This is an inverted normally open contact.

When used with a hardwired input, this instruction is 'true' until there is a voltage applied to the input. It then goes low, or off, and becomes 'false.'

It also can be used with an internal coil, becoming true when the coil is off and becoming false when the coil is on.

Allen-Bradley calls these normally closed contacts 'XIO', or 'eXamine If Open' instructions.

Allen Bradley Slc 500 4 Slot Rack Hitch

-( )- Output Coil
When used with a hardwired output, this function is off until the logic in the program allows it to turn on. It then becomes 'true', and will energize the device that is wired to the respective output.

If it is used as an internal coil, it will toggle the instructions associated with it. That is, it will close a normally open instruction and open a normally closed instruction.

Allen-Bradley calls these outputs 'OTE', or 'OutpuT Energize'.

An OTE may be used with a hardwired output or an internal coil.

TRUE – A state that indicates an instruction is allowing logic to 'flow' through it.

Also, if the logic in a rung turns on the output of the rung, then the rung is said to be true.

Allen Bradley Slc 500 4 Slot Rack Bracket

Allen bradley slc 500 4 slot rack hitch

RUNG – A section of the PLC ladder program that terminates in an output function of some type. Just like in an electrical ladder diagram, a rung has some type of output that is turned on or turned off by the preceding entities in the rung. The first rung in a ladder program is always 0000.

HARDWIRED INPUT – a physical connection to the PLC from an input device (switch or sensor, etc.).

Allen-Bradley uses the capital letter 'I' to designate a hardwired input. An address that describes an input on an SLC 500 is I:4/0.

Similar to the output structure,

I:4/0 means that it is a physical input.
I:4/0 means that it uses Slot 4 (the 5th slot in the rack).
I:4/0 means that it is the first input on the card.

Don't get the capital 'I's' confused with ones.

HARDWIRED OUTPUT – a physical connection from the PLC to an output device (relay or pilot light, etc.) As was said above, an address that references an output of an SLC 500 is O:5/0.

INTERNAL COIL
This is a programmable bit used to simulate a relay within the PLC. The internal coil has no connection to the outside world. It does not connect to an output card. Internal coils are used to store information. The 'contacts' of this 'relay' can then be used multiple times in other parts of the program.

In RSLogix, the 'B3' (binary) file is commonly used for all the internal coils. There are many other words in other files that have bits you can use as internal coils, but we are going to stick with the B3 file for our application.

B3:0/0 means that it references an internal Binary file
B3:0/0 means that it uses the first word in the table
B3:0/0 means that it is the first bit in the word.

Note that, unlike the Output and Input files, you have to use the file number in the address. In this case, the default file number is 3.

TIMER
A timer is a programmable instruction that lets you turn on or turn off bits after a preset time.

The two primary types of timers are TON for 'timer on delay' and TOF for 'timer off delay'.

Timers in A-B SLC and MicroLogix processors use file 4 for their timers.

T4:0 means that it references an internal Timer file
T4:0 means that it uses the first timer in the table

The address T4:0 simply refers to the timer. Each timer has bits that turn on after the timing function is complete. You can address this bit by simply putting a '/DN' after the timer address. DN stands for 'done'.

For example, if timer T4:0 is a TON (timer on delay), then the bit T4:0/DN will turn on after the timer has reached its preset value.

COUNTER
A counter is a programmable instruction that lets you turn on or turn off bits after a preset count has been reached.

There are different types of counters available in the RSLogix, but the CTU (counter up) instruction covers everything we will talk about here.

Counters in A-B SLC and MicroLogix processors use file 5.

C5:0 means that it references an internal Counter file
C5:0 means that it uses the first counter in the table

The address C5:0 simply refers to the counter. Each counter has bits that turn on after the counting function is complete. You can address this bit by simply putting a '/DN' after the counter address. DN stands for 'done'.

Skagit Valley Casino Resort is your destination for the best headline entertainment and live music. Enjoy the intimate theater-style setting of The Pacific Showroom, featuring our excellent acoustical sound system; capacity 460-seats. Skagit valley casino pacific showroom seating chart. Skagit Valley Casino Seating Chart Details. Skagit Valley Casino is located in Bow, WA and is a great place to catch live entertainment. SeatGeek provides everything you need to know about your seating options, including sections, row and even obstructed views. View detailed seating charts and maps for Skagit Valley Casino with row numbers. Finding Skagit Valley Casino seating charts with seat views or 3D views from your seat has proven to be a difficult task – until now. Event Tickets Center provides fans with unbiased Skagit Valley Casino reviews on our venue guides, including information on Skagit Valley Casino seat numbers, row numbers, and tips on how to find great seats!

For example, if counter C5:0 is a CTU (counter up), then the bit C5:0/DN will turn on after the counter has reached its preset value.

–] [– Normally Open Contact
When used with a hardwired input, this instruction is off until there is a voltage applied to the input. The bit address then goes high, or on, and the instruction becomes 'true.' It works the same way when it has the same address as an internal coil, except that the coil must be turned on by logic in the program.

Allen-Bradley calls these normally open contacts 'XIC', or 'eXamine If Closed' instruction.

An XIC instruction can reference a hardwired input, a hardwired output, an internal coil or a timer done bit, among others.

–]/[– Normally Closed Contact
This is an inverted normally open contact.

When used with a hardwired input, this instruction is 'true' until there is a voltage applied to the input. It then goes low, or off, and becomes 'false.'

It also can be used with an internal coil, becoming true when the coil is off and becoming false when the coil is on.

Allen-Bradley calls these normally closed contacts 'XIO', or 'eXamine If Open' instructions.

Allen Bradley Slc 500 4 Slot Rack Hitch

-( )- Output Coil
When used with a hardwired output, this function is off until the logic in the program allows it to turn on. It then becomes 'true', and will energize the device that is wired to the respective output.

If it is used as an internal coil, it will toggle the instructions associated with it. That is, it will close a normally open instruction and open a normally closed instruction.

Allen-Bradley calls these outputs 'OTE', or 'OutpuT Energize'.

An OTE may be used with a hardwired output or an internal coil.

TRUE – A state that indicates an instruction is allowing logic to 'flow' through it.

Also, if the logic in a rung turns on the output of the rung, then the rung is said to be true.

Allen Bradley Slc 500 4 Slot Rack Bracket

Allen Bradley Slc 500 4 Slot Racks

FALSE – Without stating the obvious, this is the opposite of true.

Allen Bradley Slc 500 4 Slot Rack Box

Excerpted from PLC Programming with RSLogix 500





broken image