new guy need help understanding FFB's

PLC newbe351

Member
Join Date
Mar 2008
Location
NASHVILLE TN
Posts
20
i am trying understand a program in Concept. and i don't get useing WORD_TO_BIT, BIT_TO_WORD,BIT_TO_BYTE...so on, FFB's. any help on why to use them.

Thanks in advance
 
One example of word to bit would be reading a drive status word and then mapping the status word bits to individual boolean variables (Running, Fault, AtSpeed, Ready etc).
 
One reason to use them is for Messaging or information exchange. It is sometimes easier, and most times more efficent memory use to exchange data between 2 PLC's in word format. Instead of transfering 16 different data points individualy you would pack them into a 16-bit word and send it across as the word. This creates better network use. In my experiance it starts getting very usefull after you have 4 or more PLC's on one network. You will notice slowdown of information to and from your OP's or PV if you dont start using some sort of data management.

Also L D is absolutly correct. Many drives and other such external devices always pack there information into words and send them to you. This can be used in there native form or you can unpack them if you want. That all depends on if you want to train the maint techs or someone without alot of knowledge in programming PLC to understand what the .X means.
 
To give an example regarding devices packing status into words:

When communicating over protocols, such as DeviceNet, a VFD might broadcast it's status on a word. Each individual bit (or groups of bits) would be indicative of some status of the VFD (fault, LCP status, Hand/Off/Auto, etc...).

From there you can buffer each bit in the word to an appropriate tag so you can deal with it individually.

As to what bits do what on the word, that info is usually supplied by the manufacturer of the device.

Conversely, commands to the VFD may be conveyed in word format. So you would toggle a certain bit in a command word to the VFD to turn it off, reset a fault, etc...
 
this makes since....i was confused because when the bits were changed to word it was not used anywhere in the program. so this must be how it is communicating with the servo drive.


next question..

how do i now find in the drive where these words are being used?
using Unilink with Lexium drive.
 
PLC newbe351 said:
this makes since....i was confused because when the bits were changed to word it was not used anywhere in the program. so this must be how it is communicating with the servo drive.


next question..

how do i now find in the drive where these words are being used?
using Unilink with Lexium drive.

In order for us to know that you will have to let us know what Drie and Model # it is. There should be a manual somewhere that will explain where and what they do.
 
xeniaty again, trolling. Maybe this accont should be blocked?

It brings people together as they exchange (link deleted) costume ideas, collaborate on decorating their homes, and organize neighborhood events like haunted houses or trick-or-treating (link deleted) adventures. It's a time when neighborhoods come alive with the spirit of togetherness.


Should this account better be blocked?
 
I did not know about this "report post" feature. I can't see this feature in the lower left of my screen. I am using the normal style.
 

Similar Topics

I am just beginning my journey into plc programming and troubleshooting. I’ve downloaded the Logixpro simulator and I’m already stuck on the...
Replies
12
Views
2,267
Hey all! I recently purchased myself a Panelview Plus off of ebay and i was hoping that i could upgrade the firmware on it to Version 9 or so and...
Replies
7
Views
2,752
The website , www.theplcguy.com will soon be relinquished. It is available for purchase if you wish. I have not continued my interest in a day to...
Replies
18
Views
7,133
Howdy, I'm trying to connect to an SLC 5/04 using an old Toughbook running windows XP over the RS-232 port. Cable 1761-CBL-PM02 RSLinx Classic...
Replies
24
Views
5,623
Hello, I am making changes to a system that has a 5/04 processor and I come from the land of Mitsubishi so I have a question.... I have some...
Replies
26
Views
6,556
Back
Top Bottom