I am looking for any recommendations for a good PLC class to take for beginners. Not so much for programming but more for how they operate and troubleshooting. I will want to get into programming after I get more experience with the basics. I have many years in the commercial/ industrial field but I just know the basics when it comes to PLC's. I would prefer a class that you can actually go to with an instructor but if it is a good online class then i'm up for that too.
I'm in southern CA but can fly anywhere for a good class.
well, for field work, you verify the inputs, and force the outputs.
that tells you that your physical install is ok.
if you've been in the field, you can figure out how to get that done.
dynamic logic is moving parts, contacts, and timers. stuff that moves,
with continuity paths that perform the logic, subject to all the whims of
physical controls... backfeeds, open circuits, etc.
plc's are static logic. each rung on the ladder is a logic statement,
true or false.
if this, and this, and not that, then the output is 1.
otherwise, it's zero. it's all true false stuff.
you can have registers in the program that values can be input into
from inputs fed by encoders, switches, prox sensors, all sorts of stuff.
those values, which can represent anything about the process that you
need to monitor, or that will affect the process, can be used to control
outputs or moved with register shifts to other places in the program
to accomplish whatever you need to do.
so, now you need to look for a programming class. simple plc's use
RLL, or relay ladder logic. looks like a schematic. others use OOP, or
object oriented programming, and a number of others exist.