kcox1980

MrPLC Member
  • Content count

    35
  • Joined

  • Last visited

Community Reputation

2 Neutral

About kcox1980

  • Rank
    Sparky

Profile Information

  • Country United States
  1. Sure, I'll give it a look.
  2. Looking at the description of the ALM instruction I don't know if this will work, though it might. It looks like the Rate of Change for an ALM instruction seems like it is based on a time reference. The example they gave uses a ROC of 2 degrees/second to trigger the alarm. I'm measuring the width of our material on the fly, and the alarm should trigger if we see if we see a sudden change of more than 1/2" off the running average. I was looking at the MAVE instruction too, would it work here?
  3. So I've been asked to trigger an alarm condition when we see a sudden deviation in some data. The numbers themselves don't really matter and are constantly changing. Management has asked me to take a running average of the data over a small period of time and compare it to either the most recent single data point or a smaller running average. I know I can do this by moving the data into a bunch of DINT tags and doing the math, but is there an instruction specifically designed for something like this? Seems like it would be a common thing so I'm hopeful. *Edit* Woops, forgot to mention this is an RSLogix5000 project.
  4. Is there a freeware platform out there that can run on a PC? I only need to monitor about 10-20 tags at the most from a Logix5000 processor.
  5. Our roll winder process uses a mathematical formula called the Pulley Calculation to measure the diameter of our rolls. If you know the speed and diameter of another roller, and the speed at which your spool is turning, you can calculate the diameter of the spool on the fly. We use it to trigger an alarm if the roll gets too big for our machine to handle and it works really well for that. I've also seen this same calculation in the code on our raw material unwinder which sounds like it works exactly like your spool but this was originally intended to be used for an auto-splice mechanism that never really worked so that chunk of code isn't really used for anything. Here's a link that explains the formula And a calculator that might help visualize the concept. The LR-T series all-purpose laser sensors manufactured by Keyence can also be used to measure roll diameter according to our local sales rep but I can't really vouch for that since we couldn't see a way to justify the cost instead of sticking with our existing method. 
  6. Thanks again man. I ran into a couple of snags but I was able to figure it all out. This method worked perfectly.
  7. This is definitely not something I would have thought of on my own. Thanks!
  8. I'm working on integrating a Keyence CV-X400 vision system controller in with our PLC, an Allen Bradley 1756-L62. I have the camera controller set up to recognize a character string and pass this information along to the PLC where I will make a comparison to verify that the data in the string is correct. The string is in the format of "XXX-Y-XXXX" most of the time but occasionally it is in the format "XXX-YY-XXXX" the "Y" characters are the only ones I care about for the sake of comparison as those are the only ones that change from day to day via manual user input. Attached is a screen cap of what I have right now, which works for the first format (The 56 currently stored in the tag represents an 8 in ASCII) but I don't know how I should go about programming for the second format. Basically what I'm doing right now is passing the entire string to the PLC, and then using a NEQ instruction on the 5th character over. This won't work when using the "YY" because in those cases I'll need to compare the 5th and 6th character. The CV-X by default send the characters individually though I can set it up to send 4 at a time. I'm not sure if that would help here though.
  9. Interview Question

    That's one answer I'm looking for, probably the most obvious one. You could also say that there isn't any way to break the seal in circuit. Finally, you shouldn't have a seal in circuit on a latch instruction at all.  I'm kind of winging it here. Never been in a position to conduct an interview for a technician.
  10. I am currently acting as my plants' maintenance supervisor. As such, will be involved in conducting interviews to fill a Tech Level 2 position which requires a basic level of PLC knowledge and troubleshooting ability. While we don't require a formal test, I would like to ask a few technical questions to gauge the candidate's overall technical knowledge. The one PLC related question I came up with was this: "There is an error in the following logic, can you identify it and how would you fix it?" Then I would show them a printout of the logic(attached below) that I wrote specifically for this question. If they get stumped I will offer the hint "The problem is that the motor will not stop running, even when all operating conditions that should make it stop are met". My concern is with the difficulty level of the question. Since I came up with the problem the solution is obvious to me. I don't have anyone else in the plant to run this by because the existing crew are mostly old school mechanics with little to no electrical or PLC experience. I'm not so much concerned with the "correct" answer as I am with getting a feel for how they approach a problem. For example, it stumped on of our engineers who claims to know ladder logic programming but instead of admitting it he tried to BS his way through it saying that the logic didn't make any sense at all and there had to be another routine that I wasn't showing him. That is not the answer I am looking for. So what do you guys think? Is this an appropriate question to ask of someone who would be asked to troubleshoot logic from time to time or is it too much?    
  11. New to PLC's

    We have a local community college that offers different types of training courses for the purpose of developing the skillset of employees that live in the state. This training is state funded so there is no cost to the attendee as long as they live and are employed in the state. The instructors they hire are all experienced experts in their respective fields. The guy that teaches the Allen Bradley courses, for example, was employed by Allen Bradley as a field tech and instructor for years. You might want to see if Ohio has something like that.  Echoing what the above poster said though, you have to really want to learn. I'm responsible for the training of our technical staff here where I work and I tell these guys all the time "if you don't use it, you lose it". PLC programming is not something you can take a class on and not touch it for 6 months then expect to be able to log on and troubleshoot or program. I suggest spending time with the programs and the machines. Go online with one and just watch it run. Try to correlate what you see on the screen with what you see the machine doing.  The best people in this field are not people who took a class and suddenly the skies opened and they knew everything they needed to know. You have to have a real interest in learning how a PLC does what it does.
  12. PanelView Question

    And after all that work it turns out there is a button to bring it out to the Config Menu. It isn't exactly hidden per se, but it is labeled as "PC Reboot", which is a little confusing since that machine has a PC inside it that runs another HMI for for a sonic welder in the same machine.    Thanks for the help anyway guys. This forum is pretty much my first stop when I get stumped on something AB related.
  13. I have a PanelView Plus 1000 Cat # 2711P-RDT10C of which I need to edit the project. However, the integrator did not do me the courtesy of including a "go to config" button anywhere in the project. I'm not sure what firmware version it's running but I did a little bit of research about how to get to the config screen and I know that the firmware is old enough that it doesn't have the little white box during boot up to force the HMI into the config mode. I found an article that said I would have to dismantle the HMI and remove the internal Compact Flash card in order to make changes. Is there any other option?
  14. You're off to a good start to learning PLC's. The fact that you're even a little concerned about doing things the right way and seeking help from outside sources puts you way ahead of the curve.