Speed vs. Position

hamdep

Member
Join Date
Sep 2011
Location
ct
Posts
6
I have a AB-SLC500/03 processor. I need to read in a DCV proportional to a speed, and output a DCV signal to a control valve. So in other words run a speed Vs. valve position profile. As the speed changes, the valve (oil flow control) must follow based on a predetermined map. The valve output is not linear, so it sounds like a table may be required. I looked at the instruction set, but saw nothing obvious such as a lookup table function. Any ideas?
 
A lookup table does sound like the way to go, but you should not need anything special (aside from good understanding of indirect addressing) to set this up in a data table of your choosing in the 5/03.

I would expect that your table would consist of a data file set to the type floating point, and each entry would be a value from 0.0 to 1.0 that would be applied to the value in the SLC which is being sent to the valve.

If your table needs more than 256 entries, then more than one data file will be required along with a selection mechanism.

If you are new to RSLogix500 or how to use indirect addressing with a/b PLCs, there are many threads on the subject or just ask questions here.
 
Good!

Micky, can you put this equation in a compute block?
Code:
    v0*sqrt((x1-x)/(x1-x0))
v(x)=v0*sqrt((x1-x)/(x1-x0)) is the velocity as a function of position
v0 is the initial velocity
x1 is the position at where v(x) = 0
x0 is the initial position
x is the current position

This equation is for a second order ( constant deceleration ) ramp
Third order ramps are MUCH more complicated.
 

Similar Topics

Seems like this should be a simple thing but I’m struggling with it. The basis is that I am trying to detect if a linear assembly is stopped or...
Replies
6
Views
3,089
  • Poll
good day all the automation engineers in the forum. i am new to this forum and a plc beginner. i have a project to work on, which i have to...
Replies
16
Views
5,502
Hi every one, Im trying to understand a logic of beer keg position through conveyor system. I´d like know why to find the linear velocity (meter...
Replies
2
Views
2,100
I'm working on a system with Kinetix 6000 (2094-AMP5S) with ControlLogix 1756-M08SE. I have a continuous rotary stage for which I have set up...
Replies
2
Views
3,918
any info to match 2 conveyers to an encoder. Conveyer 1 would lead 2. Encoder scaled and outputed to 2 (4-20ma).To syncronize the analog out...
Replies
2
Views
2,485
Back
Top Bottom