0:00
Benchwork 1 is a great way
to practice PLC programming
0:07
We will use the Do More Designer simulator to
program this scene from the Machine Simulator
0:12
Software Suite. The suite was previously called Easy PLC
but has changed its name to describe the industry-leaning
0:19
learning software better. The Machine Simulator suite
comprises several machines that can be programmed or you can
0:25
design your own. One such machine is Benchwork 1, which transfer.
red pills from the collection area to the exit belt conveyor
0:34
Using the Do More Designer PLC software, we can practice programming by connecting
the Do More Designer PLC simulator to the machine simulator bench one machine
0:43
Communication will be done using ModBus TCP Ethernet. The Benchwork
One machine incorporates a manual and automatic mode to operate
0:52
Automatic will incorporate a sequencer
using a counter in the PLC program
0:56
This is the easiest way to program sequencers. The five steps
for developing PLC programs will be used to program this machine
1:04
Let's get started. Detailed information contained
in this video can be found at ACCautomation.ca
1:11
A link has been put in description below. If you have not watched the other videos
yet, there will be links in the description below that will start you at video 1
1:18
There will be links to the rest of the videos
in the series as well. Step 1, define the task
1:26
The first step in PLC development for
any project is defining the required task
1:33
We need to understand what needs to be done. Launch
the machine simulator 4 and access the machines menu
1:40
The Benchwork 1 Practice 401 option will be
seen from all the pre-configured machines
1:46
This will be the machine that we will program. As you move the mouse over
the picture of the machine, you can select the icon on the top right side
1:54
This will show you the machine's description. machine's description. The object
is to transfer the red pills from the collection area to the exit belt conveyor
2:04
To do this, you must use the pneumatic clamp of
the linear loader to collect the tablet from
2:08
the loading area and deposit on the axial
movement carriage to take it to the Turner area
2:14
which must activate the aspiration system
to transfer the tablet to the table
2:19
Two operating modes must be programmed, manual
and automatic. When selection is in the manual
2:24
position, pressing each button should allow you
to move the system to the positions manually
2:29
indicated on the button labels. In automatic
mode, pressing the start button should
2:34
automatically carry out the sequence explained
above. Correctly program the stop and emergency
2:42
stop buttons to stop the system. The machine simulator
bench one has a demonstration mode. This mode
2:48
shows you the operation so you can better
understand what needs to be accomplished. Take some
2:55
time to explore the 3D virtual environment using
the navigation menu at the top of the window
3:00
The default selection allows you to move freely
without colliding with any components, while
3:04
the first person and third person provides
different perspectives. By exploring the demo mode
3:11
you can better understand how Benchwork One
operates in manual and automatic modes. This will
3:16
help you to develop the PLC program to control
the Benchwork One machine's actions effectively
3:20
Once we understand the task and we have familiarized
ourselves with the Benchwork 1 operation
3:27
we can proceed to the next step in developing the Do More PLC program. By following
these steps in gaining hands-on experience with machine simulator learning suite
3:35
and the DoMore simulator, you will be well
on your way to mastering PLC programming
3:40
and applying your knowledge to real-world applications and scenarios. So
let's continue our journey and move on to the next step in the process
3:50
Step 2, define the inputs and outputs. Defining the inputs and
outputs is critical to effectively programming the Benchburg 1 PLC
4:00
Inputs are signals or data received by the PLC, while outputs
are signals or data sent by the PLC to control external devices
4:08
By understanding the inputs and outputs, you can develop a program that
reads the status of the inputs and activates the appropriate outputs
4:16
While still in demo mode, select VUIO to display
the inputs and outputs required for this machine
4:20
This PLC programming example will require
15 digital outputs and 23 digital inputs
4:26
These PLC IO are for the machine's physical running and do not
include additional registers or bits required for programming
4:33
In the case of the Benchwork 1 PLC, the inputs include the status of
the push buttons on the control console for all the manual operations
4:43
These inputs will determine the machine's control. The
outputs include signals to move and create the red pills
4:49
pills. If you are unsure what an output or
input is doing, start the Benchwork 1 machine in
4:55
start mode Select the UIO at the bottom of the Benchwork 1 machine simulator
window You can manually run Benchwork 1 without any control or PLC connection
5:21
Select the outputs on the left side to turn
on and monitor the inputs on the right side
5:26
side. Defining the inputs and output establishes the
communication between the PLC and external devices
5:35
This allows the PLC program to monitor the inputs
and continuously decide based on their status
5:41
The program can then activate the appropriate
outputs to control the benchwork one operation
5:46
The machine simulator will communicate to the Do
More designer PLC simulator using Modbus TCP or
5:52
Ethernet. The Do More series of PLCs use a fixed ModBes memory area. This area
can be seen in the following chart. Step 3, develop the logical sequence of
6:09
operation. Developing a logical sequence of operation
is critical in programming any PLC. To ensure a smooth
6:17
and efficient program, it is important to create a
flow chart, sequence table, or detailed information
6:22
that thoroughly outlines the process that needs to be controlled. This will
help answer questions about what happens during a power and pneumatic air loss
6:31
or if any output or devices fail. Also, it is
essential to determine if redundancy is necessary
6:40
By understanding all aspects of the operation up
front, you can save yourself a lot of time and work
6:46
and prevent the need to rewrite the PLC program logic continuously. As a PLC programmer, it is vital to have a
comprehensive understanding of the sequence and operation of the machine before starting the programming process
7:00
This can be achieved by asking questions or reviewing existing
documentation to ensure a clear understanding of the logical steps involved
7:08
Our system has two operating modes, manual and automatic. In manual mode, the
Benchwork One machine can be controlled manually through the push button console
7:17
If a push button for the pick, left, and right
are held, the Tumblr stays in that position
7:24
If the button is released, the Tumblr returns to the home position. Since we can only manually turn on one
item at a time, if the suction is on and the tumbler is in a left position, it will turn off the suction
7:38
In automatic mode, selector switch, the start
button flashes, indicating how to start the machine
7:44
Once this start button is pressed, the stop button
lights up. indicating how to stop the operation
7:50
When the machine initially goes into
automatic mode, the control sequencer resets
7:55
Here is a sequence of steps for the
automatic mode of the Benchwork 1 machine
8:01
Step 0, initialization. Grip is open
and the X axis is positioned left
8:06
Step 2, a part is created for the red pill. Step 2, grip closes
to take hold the pill and the gear advances or the carriage
8:17
Step 3. The X-axis is positioned right.
Step 4, grip opens and releases the part
8:27
Step 5, the gear reverses the carriage. Step 6, suction
turns on, and the tumbler moves right, picking up the pill
8:36
Step 7, tumbler moves left. Step 8, the suction turns
off, and the tumbler returns to the home position
8:45
Step 9, the conveyor turns on for two seconds. advancing the red pill. The sequence will then reset after the time delay. By developing a logical
sequence of operation, you can create a PLC program that effectively controls the Benchwork 1 PLC and ensures it smooth and reliable functionality
9:04
This step sets the foundation for the subsequent development of
the Do More PLC program, which will be covered in the next section
9:17
Program. Developing the Do More PLC program is
the next step in learning how to program the
9:23
Benchwork One machine. This step involves translating
the logical sequence of operation developed
9:28
in the previous section into the program the
PLC can execute. It is important to understand
9:33
the programming language used by the PLC. The Domore
PLC uses latter logic, a graphical programming
9:40
language representing the control logic in a
series of rungs. Each rung comprises inputs
9:45
outputs, and logical functions that determine the system's behavior. You can start
building the latter logic program by using the logical sequence of operation as a guide
9:55
Start the free Do More designer software. We have already started programming the machine by selecting the new icon on the main page to start a new
project Using the documentation editor from the main menu tools we map the Benchwork 1 machine inputs and outputs to the corresponding PLC addresses
10:13
The first rung of the program will handle the
operating modes of the Benchwork 1 machine
10:18
Everything is allowed to operate when the emergency button is on. The start button
will flash if the manual automatic input is on and the automatic start C0 is not on
10:29
The stop button light will be
on if the automatic start is on
10:34
Selecting the start button and not selecting the
stop button will start the automatic start bit
10:40
This is used to steal the start button. The manual
start bit is set C1 if the selector is not on
10:50
The next few rungs list all the outputs. Conditions
from manual and automatic operation are shown
10:56
The first output is the conveyor advanced. It will be on if
the manual button is selected and the mode is manual, C1
11:02
When an automatic and the sequencer count equals
9, the output and timer will be on for 2 seconds
11:08
The conveyor light on the panel will operate when the
conveyor advanced output is on, manual or automatic
11:17
In manual mode, the tumblers on the left
and right are activated with manual buttons
11:21
If the buttons are not pressed, the tumbler home will be activated.
Automatic mode moves the tumbler right at counter-sexual
11:28
sequence 6 and left at counter sequence 7,
which the sequencer reaches the value of 8
11:33
the tumbler returns home. The tumbler suction will
pick up the red pill in manual mode. The push
11:39
button will turn on the suction. The suction
automatically turns off if the tumbler is moved to the
11:45
left above the conveyor. This will allow the red pill
to drop onto the conveyor belt since you can only
11:50
press one button. In automatic mode, the tumbler's
suction will be on on step 6 and 7. The push button
11:58
light will activate manually and
automatically if the tumbler suction is on
12:04
Gear advance and retract will carry the red pill
from the x-axis to the tumbler. It is in the
12:10
x-axis when advanced and a tumbler when
reversed. The claw is attached to the x-axis and
12:17
helps transfer the red pill from the axis to
the gear. Manual buttons on the control panel
12:22
include a claw open and claw-closed button.
In the manual mode, a start-stop circuit
12:27
controls the claw. Since the claw has no
sensor, timers determine whether it is fully
12:33
opens or closes when in automatic mode. Rungs
13 and 14 control the X-axis left and right
12:41
like all the program's other rungs that
can be controlled manually or automatically
12:47
The Red Pell Creator also includes a
timer to ensure the part has been created
12:54
Once our logic accounts for all the outputs, we can use a counter-examiner. control
the sequencer. The counter-up input will use the counter accumulator as the reference
13:04
for the next step. Conditions for advancing to the
next step are put in series. Step zero looks for the
13:11
claw open timer and the X-axis left sensor to be
done before advancing the step one. Step one looks
13:17
for the part creation timer to be done before
advancing the step two. This continues until
13:23
you reach the end of the sequence.
The counter sequence will then be
13:27
reset when a selector is first set to automatic
or when the conveyor's last step timer is
13:32
completed. An end statement will indicate that
this is where the program ends and to repeat the
13:40
scan. Save your program. It is important to
always save your program during programming
13:46
Select the Do More Sim icon. This will start the
PLC simulator. The Do More Designer simulator
13:53
will run independent of the Do More Designer
programming software. When returning to the
13:57
the DoMore Designer software, you can then see
we are connected by the simulator by the icon
14:02
and the status bar at the bottom of the window.
Select the right PLC icon. This will transfer our
14:08
program to the PLC simulator. The mode icon on the
main menu will allow you to change the PLC mode
14:15
from the program to run. This also shows the PLC
switch position. Select the run mode for the PLC
14:22
The DoMore simulator will have a switch
position that can also be changed
14:27
the control of the mode of the PLC. Select system
configuration under the Tools menu of the project browser
14:36
This will display the system configuration window.
Under the internal Ethernet port configuration
14:42
you will see the IP address of the PLC simulator.
Besides this section, there will also be a Modbus TCP IP
14:49
Modbus TCP server configuration. Ensure that this is
enabled. This PLC simulator will act as a Modbus TCP server
14:57
server to the EasyPLC Modbus TCP client A Modbus client will send requests and the modbus server will
respond Make a note of the IP address We will need this to set up our modbus client in the next step
15:13
By following a systematic approach and
referring to a logical sequence of operation
15:17
you can develop your robust and efficient Do
More PLC program for the Benchwork One machine
15:23
This program will serve as the machine's brain, controlling
its movements, and ensuring it safe and reliable operation
15:31
Step 5, test the PLC program. To ensure the functionality and
accuracy of the Do More PLC program for the Benchwork 1 machine
15:42
it is essential to test the program thoroughly.
Utilizing machine simulator MS is an efficient way
15:50
Using the MS, you can simulate the operation of the
Benchwork 1 machine without the needing physical hardware
15:56
and you minimize the risk of damaging during the testing phase. We will use Modbus
TCP on our Do More PLC simulator to communicate with the Easy PLC machine simulator
16:08
Call up the Benchwork 1 machine simulator in start mode. The current
status of the machine simulator will be at the bottom of the screen
16:19
Currently we have no PLC connected. Select
I-O drivers on the bottom middle of the screen
16:27
The machine simulator I.O. will be displayed. Ensure we select
more I.O. than a number required for our Benchwork 1 machine
16:35
The Easy PLC driver is selected by default. Under
the driver pull-down menu, select Modbus driver
16:42
This driver will communicate Modbus
TCP or Ethernet and Modbus RTU serial
16:49
Select the configure button. We can now
enter the information for our Modbus driver
16:55
Select TCP IP. This means the Ethernet
port on your computer will communicate
16:59
to the Dumor-PLC simulator. The digital inputs
from MS to the Dumor-PLC will be MI-1 to MI-15
17:07
This will start at address 0 due to the offset of 1. Digital
outputs from the MS to the Dumor-PLC will be MC1 to MC-23
17:15
This will begin also at address
0 due to the offset of 1
17:20
Select the OK button. You will now see the inputs
and outputs specified for the Modbus driver
17:26
We can now manually assign the driver outputs. to the
PLC inputs and the driver inputs to the PLC outputs
17:33
However, the automatic assignment works well and will save you time.
Select automatic assignment from the driver option in the main menu
17:43
This will automatically assign the PLC
simulator I.O. to the machine simulator I
17:48
Select Start Driver and exit the main menu. On the bottom left side of the window,
the driver communicates with the Duhmore PLC simulator with the green light
17:57
Select Vue I.O. to see the machine
simulars input and output status
18:05
Ensure that Domore PLC is in run mode. We can
see the operation of a Benchwork One machine
18:11
The inputs and outputs of the MS
will respond to the PLC controller
18:19
Using the Data View window of the Do More Designer programming
software, we can also watch the inputs and outputs operation
18:25
We can now manually move the red
pill or do this automatically
18:33
Using machine simulator or MS to test the
program will ensure that our program works
18:39
Troubleshooting is quickly done without damage to any physical hardware. This testing
phase is critical in ensuring the safe and reliable operation of a benchwork one machine
18:49
You can practice your modification and debug by modifying
the Benchwork 1 machine operation in the following
18:55
way. Change the automatic sequence to transfer
five red pills and then stop. After stopping
19:02
the conveyor should also run into all the pills
that are off of it. Calculate the rate of red
19:07
pills transferred for this machine in number per
hour. Let me know how you made it in the comments
19:13
below. If you enjoyed this video, please hit
the like button below. If you have any questions
19:23
about the video, please leave a comment below
and I'll do my best to answer it. If you want
19:27
more information about us or you want our free
ebooks on numbering systems or robust data
19:31
logging, please click on the link in the
description below to get it. A new video is put
19:35
it every Monday, so make sure you hit the subscribe
button so you have more videos like this in the future
19:40
Remember to click the bell beside your subscription
to actually receive those notifications
19:45
Thanks so much for watching. I'll
see you next time. Stay safe