MnDave

MrPLC Member
  • Content count

    12
  • Joined

  • Last visited

Community Reputation

0 Neutral

About MnDave

  • Rank
    Sparky

Profile Information

  • Gender
  • Location Minneapolis
  • Country United States
  • Interests Music, machines, martinis
  1. Proficy and quickpanel

    Red herring. He sent a screen shot. His vars are internal as well. I texted him a while back, no reply yet. 
  2. Proficy and quickpanel

    Hmmm, spoke with the original QP programmer. He can see vars that I cannot, prefixed by QP.xxxxxx. I don't see these, and there is no filter on the variable list. Might be a clue as to this solution.   Do you show QP. prefixed vars at the end of the list in Navigators?
  3. Proficy and quickpanel

    There are two PLC's, part of this project is to marry the programs into a single. The PLC's are 30 feet apart, the DSP was outside in a weatherproof panel, but was getting nailed by nearby lightning strikes. So DSP was talking SNP over 485, and the Versamax is TCP/IP. The DSP is a Versamax cpu-E02. Stands for Discharge Station PLC. The Versamax is an E05. The file that you have is the original configuration for the TCP/IP side of the system
  4. Proficy and quickpanel

    Thanks man!
  5. Proficy and quickpanel

    Hey, was in the car, so typing skills are crimped.  This is a QP by GE, resides in the project itself.  Old ones had different software that you used to set them up.  I did check the toolchest to make sure that a configured ILPB wasn't in there hiding something, but nothing there either.  The PLC is a Versamax, has a couple of analogs, a digital in, and some mixed 110vac digital in/out. There's a bumper power supply in the middle. Dave
  6. Proficy and quickpanel

    The part number is above
  7. Proficy and quickpanel

    Here's a backup.  In the program, the graphical panel Alarms[QP] has variable LevelHigh_Enab, assigned to toggle switch ILPB4441, wetwell high enable.  LevelHigh_Enab is a QP internal var. LevelHigh_Enab is also referenced in ladder TPAlmEmail[QP], rung 50, and in rung 58.  In the PLC, this QP bit fires LVLHISW.bLvlHigh_disAlm, rung 18.  Can't find another reference to how these two bits are married together.   Additional notes to how we got here.  This project was done it 2003. A few years ago, the original operator interface, an Exor, went belly up in a lightning storm.  They hired another company to put in the QP, and upgrade to a CPUE05 to support ethernet. That's what I'm working with now.     Dave   D_Install Export.zip
  8. Proficy and quickpanel

    It's an enable for an alarm.  If the bit is in, the alarm can fire.  I'm now familiar with the program, and have a better understanding of how the original programmer thought.  Each one of us has pet ways of doing things that can be confusing to someone else reading the code.  I'm older, started in PC's back when they were nothing but text and Series 1 PLC's with the plug in programmer on the front. I also have idiosyncracies that some PLC programmers would hate.  I like to loop code in ladder.  I like to write structured text.  But I always document, mostly for myself.   Pretty much have been through the entire program, but have to edit it a bit more.  I married two PLC's into a single one.  Imported the ladder from the one, and created new variables.  There was a routine to scale the variables where he passed the low scale and the high scale magically was inserted into the scaling routine.  Found that he parked high scale right next to low scale, and just specified 2 as the length when he made the move.  Low and high were parked next to each other in the scale code and viola, everything worked.  But that made me suspicious, and I searched out other moves. Now I find that the original writer (2003) spaced variables, sometimes 20 to 30 registers apart, to create quasi-arrays for keeping history in the PLC. No var names, just big blank spaces.  Imported variables were just placed next to each other, so the code is walking over each one. Not sure why he just didn't declare an array, but maybe GE's array functions were nonexistent in 2003.    I'll clean this up and post.   Dave
  9. Proficy and quickpanel

    Hey all, working a PME project, maintaining some code on a Versamax E05 and QP C755C where the original company went out of business some time ago. I've only done a few PME projects. It's taken a bit of sweat, but I seem to have figured out all the ins and outs of the software. I have one that is keeping me stymied though, and that is a simple toggle ILPB on the QP. The variable is listed as an internal QP var, and I can't figure out how it gets to the PLC to save my life. Been through the scripting, been through the ladder (there is ladder running in the QP), can't find where this internal variable is passed to the bit in the PLC.  I've exported the vars from both the  QP and the PLC to try and find references, but no luck. In PME QP programming, the references tab show where the internal var is used in the ILPB and the QP ladder, but that's it.   When I click the contact in the PLC ladder logic code, the References tab  only reports the single instance residing on that rung.   Yet there it is, every time I touch the ILPB on the QP, the bit comes in and out. The ILPB is the coil that drives this bit, nothing else Looked for a word variable where a bunch of bits might pass, but after extensive cross checking, all references to the PLC are accounted for. There is one bit alarm group, but everything there is accounted for as well. No root or word alarm groups, control I/O drivers, message grids, No OPC. Native driver is TCPIP, no Ethernet Global Data component. I generally solve these by checking off everywhere it isn't, but I'm out of ink.  So my question is, how many ways are there to connect a var between the two, or how else can an internal QP var be married to a bit? Any hints as to where I might look?  I think I'm about to lose my "pretty good programmer" moniker.  Dave