0:00
Hello and welcome to our tech tutorial channel. Today we're diving into a fascinating topic for
0:05
all you automation enthusiasts out there. A PLC programming example focusing on delaying the start
0:11
of seven motors. Whether you're a beginner or have some experience under your belt, this video aims
0:17
to enhance your understanding of PLC programming using a practical and straightforward solution
0:23
So let's get started. Imagine you have seven motors and you need to program them so that
0:28
when one starts, any subsequent motors will only start after a five-second delay
0:33
maintaining the sequence in which they were activated. Sounds challenging, right? Well
0:38
thanks to a solution by Peter Steinhoff, we have a clear and effective approach to tackle this
0:44
using Do-more designer software. First, let's define our task. We have seven motors, each
0:50
connected to a switch. The goal is to ensure that after the first motor starts immediately upon
0:54
activation, any additional motors will only start after a five-second delay, preserving the order of
1:00
activation. Our inputs will be the switches for each motor, all normally open. The outputs naturally
1:07
are the motors themselves. The key here is ensuring a five-second delay between each motor starting
1:13
following the sequence they were turned on. Peter's solution involves using one timer for each motor
1:19
labeled as on delay in, on delay off, and so on, plus an additional down counter timer
1:25
This down counter doesn't control anything directly, but keeps track of the time between
1:29
motor starts. Let's say you want to start motor four. You would take the current value of the
1:34
down counter, assign it to on delay four, and then add five seconds to the down counter
1:40
If motor four is the first, it starts immediately since the down counter is at zero
1:45
If another motor is started shortly after, its delay is set based on the down counter's current
1:50
value, ensuring a five-second gap. By mapping this out in a spreadsheet, you can visualize the timing
1:56
and sequence. This method is not only simple, but also scalable, allowing for more motors to be added
2:03
without complicating the logic. Plus, it ensures motors start in the order activated by the operator
2:10
After developing the PLC program, testing is crucial, either through a simulator or on actual
2:15
machinery. This ensures the program runs as expected and allows for any necessary adjustments
2:22
To summarize, by using individual timers for each motor and a down counter, we can effectively delay
2:28
the start of each motor by five seconds, maintaining the sequence of activation
2:33
This solution is not only efficient, but also adaptable for different scenarios and additional
2:38
motors. And that wraps up our tutorial on delaying the start of seven motors using PLC
2:44
programming. We hope this video has provided you with valuable insights and a clear understanding
2:49
of how to approach similar automation challenges. If you have any questions or need further
2:55
information, feel free to reach out. Thank you for watching and see you in the next video