Process Control Help

Azazello tylerca at jeld-wen.com
Tue Jul 31 19:09:27 EDT 2007


On Jul 31, 12:45 pm, Walt Leipold <leip... at ace-net.com> wrote:
> Azazello wrote:
>
>  > We're looking to run some industrial machinery from a PC.  Starting
>  > with some basic servo controls and IO port reading for something like
>  > an XYZ table (just X would be a good start!).  Now there is some
>  > existing software out there for PC control but this software is, to my
>  > understanding, largely unnecessary and "black box".  This "black box"
>  > creates a problem when trying to e.g. control servos and IO with the
>  > same program.  And if we want to include an HMI like a touchscreen, or
>  > export the machinery's production into a RSS feed, the web of software
>  > becomes messy and slow.
>
>  > Soo....
>  > I need to find some ethernet friendly IO, serial would be fine but but
>  > it's a leash in many instances.  I know some protocols have been
>  > ported to ethernet, but I am having extreme difficulty figuring out
>  > what these protocols entail. ModBus/TCP is the one I'd like to
>  > choose.
>
>  > I know that people have done this kind of software but it
>  > seems that industrial python remains a bit taboo because of
>  > proprietary issues...
>
> It has nothing to do with 'proprietary issues'.  A lot of it has to do
> with the perception of support -- who will support Python and custom
> Python code if my plant shuts down?  Who will train my developers and
> operators?  Who can I sue?  The rest of it is because of the way the
> industry evolved, and the kinds of programmers and development teams
> that write industrial control packages.
>
>  > If we could consolidate this software into a single, non
>  > "black-box" package, we could see significant improvements
>  > in development time.
>
> You *might* save on development time (although I wouldn't bet on it),
> but you'll lose on testing time.  Heck, you'll even lose because you
> have to document your stuff and train people to use it -- what happens
> to your custom system if you get hit by a bus?
>
>  > Having to program 3 different devices with three
>  > different languages to control your PLC, Servos, and module X is
>  > the status quo we face, but it is quite frustrating and limited.
>
> I share your frustration with the status quo in industrial automation.
> On the other hand, I've been brought in to customer sites a number of
> time to fix their re-invented wheels, and my advice is not to re-invent
> the wheel.
>
> Yes, it's a shame that you have to buy three packages to perform three
> functions, and then buy other 3rd-party packages to tie them together.
> Yes, it's a shame that industrial software is expensive, and
> proprietary, and Windows-only, and generally has a brain-dead scripting
> language (when it has any scriptability at all).  Still, as much as it
> galls me to say it, if your company's primary business isn't writing
> industrial automation software, don't write industrial automation
> software.
>
> For reasons of quality, long-term supportability, manageability,
> insurability, and several other -ilities, the sad facts are:
>
> * Unless you're a hobbyist, if you want to do machine/motion control, do
> it from a PLC.  Windows is not reliable, stable, or real-time enough to
> be trusted to control moving pieces of hardware, and custom software,
> possibly with hand-crafted multithreading, is not as reliable or
> predicatable as ladder logic on a PLC.  (Look up "Therac 25" for some
> reasons why.)  Python is a great language, but it depends on the
> underlying OS for threading, and has a GIL that can bite you too.  The
> first time you see twenty tons of machinery move unexpectedly because
> you inadvertently changed one bit in memory, you become very
> conservative about your software platform.
>
> * Unless you're a hobbyist, if you want to do data acquisition or i/o,
> purchase an i/o server for your particular bus/instrumentation from a
> major manufacturer.  You *can* write your own i/o server, especially for
> simple protocols like Modbus, but the commercial versions have been
> tested more exhaustively than you can manage.  Also, the most common
> protocol these days is OPC, which isn't a protocol at all in the
> conventional sense -- it's a set of APIs to a Windows DLL, with the
> wire-level details completely opaque -- so you'd have to buy a library
> for that anyway.
>
> * Unless you're a hobbyist, if you want an HMI, purchase LabView or
> InTouch or RSView or whatever, and use their tools to draw and
> 'configure' your screens.  (Where 'configure' generally means 'program
> in Visual Basic or some other brain-dead language', but we try not to
> say "program" -- customers and underwriters *hate* "custom" software.)
>
> I personally think it's a tragedy that every manufacturer bases its HMI
> on Visual Basic for Applications rather than a better (and free and Open
> Source!) language like Python.  It's also a tragedy that the dominant
> i/o 'protocol' for industrial automation isn't really a protocol, and is
> Windows-only to boot.  It's horrifying that the primary means of
> communication between process control and data acquisition applications
> is via DDE or ActiveX.  And I find it incredible that people and
> companies will pay large sums of money for some of the industrial
> automation products on the market.  But that's the way the industry
> works, and, as frustrating as the commercial offerings are, using them
> will probably be better for you and your company in the long run.
>
> (Wow, that was a depressing post to write.)
>
> -- Walt
>
> "Eddies in the space-time continuum!"
> "And this is his sofa, is it?"

I really appreciate your post Walt. I started this thread last week
and I have to admit that in the subsequent days the 'option' of using
Python for our control solutions is simply not feasible.  Although the
project I wanted to implement was fairly small scale, no 20 ton pieces
or x-ray machinery, the principle of the matter remains the same,
especially as a large corporation.  As an intern returning to school
in the fall, the underlying responsibility for a Python system was my
original concern and discouragement to my employer for persuing this
path.  It became readily apparent that using the crumby software
packaged with our control devices is surely faster in the long run, as
we are not involved in software development.  (The majority of my
coworkers' formal programming experience is in FORTRAN) It has been a
very discouraging few days.  There's so much room for improvement and
yet...  My 4-day conclusion is unless you're already involved in
controls software you must be crazy to join.  Are many young engineers
entering this field?




More information about the Python-list mailing list