Journal of Robotics, Networking and Artificial Life

Volume 8, Issue 1, June 2021, Pages 33 - 36

Decision System for Plural Production Lines Layout by Using GA

Authors
Hidehiko Yamamoto1, *, Masato Noda2, Hirohumi Tsuji3, Yasuhisa Terawa3, Yoshinori Nakamura3, Masayuki Tsuchida3, Katsuaki Yamada4, Yukiyasu Kuriyama4
1Department of Mechanical Engineering, Gifu University, Yanagido 1-1, Gifu, Gifu 501-1194, Japan
2KIOXIA Corporation, Shibaura 3-1-21, Tokyo, Japan
3New Business Development Div., InfoFarm Co., Ltd, Yanaizu-cho Distribution Center 1-8-4, Gifu, Gifu 501-6123, Japan
4Production Div., Kai Industries Co., Ltd, Oyana 1110, Seki 501-3992, Japan
*Corresponding author. Email: yam-h@gifu-u.ac.jp
Corresponding Author
Hidehiko Yamamoto
Received 23 October 2020, Accepted 8 April 2021, Available Online 28 May 2021.
DOI
10.2991/jrnal.k.210521.008How to use a DOI?
Keywords
Line layout; genetic algorithm; Chameleon-code; production line; walking time
Abstract

We develop the system to decide the efficient layout of assembly production line by using Genetic Algorithm (GA). We call the system as Decision System of Plural Production-lines-layout by GA (PPG). PPG decides the efficient layout of production line by using GA, work-flow-line acquired by Chameleon code and the machine breakdown data. PPG evaluates the layout efficiency by calculating the operator’s walking time to fix the machine breakdown occurred on the production line. By the evaluation, it is ascertained that PPG was useful.

Copyright
© 2021 The Authors. Published by Atlantis Press B.V.
Open Access
This is an open access article distributed under the CC BY-NC 4.0 license (http://creativecommons.org/licenses/by-nc/4.0/).

1. INTRODUCTION

We need the efficient production line layout. In this study, Decision System of Plural Production-lines-layout by Genetic Algorithm (PPG). PPG determines the layout of plural production lines where some operators work. The determination is carried out by using Genetic Algorithm (GA) and the operators’ walking routes obtained from Chameleon-code. PPG is applied to the razor assembly line to verify whether PPD is effective in improving work efficiency. The efficiency means which kind of layout that plural production lines are working just one operator can manage.

2. CHAMELEON CODE

Chameleon code is the new color barcode whose function has a high speed and precision recognitions as shown in Figure 1. This study puts Chameleon-code on the top of an operator’s hat and obtains the operator’s walking routes data by many cameras that are put on the factory ceiling. The acquired operators’ walking routes data includes the name of the operator, the camera names, the dates and times, and the x- and y-coordinates of the chameleon code.

Figure 1

Chameleon-code.

3. PPG CHARACTERISTICS

Plural production-lines-layout by genetic algorithm is the system to determine the layout of plural production lines using GA. The determination is based on the operators’ walking routes data which are acquired from the chameleon-code and the machine breakdown data. Specifically, PPG calculates the walking time that an operator moves to fix machine breakdowns and determines the better layout where one operator can manage plural production lines. As shown in Figure 2, PPG consists of the condition module and the GA module. Condition module includes the acquired operators’ walking routes data and various parameters for GA. GA module determines the better production line layout by using GA.

Figure 2

PPG outline.

4. INDIVIDUAL REPRESENTATION

The individual representation of our GA used in PPG adopts the structural gene, as shown in Figure 3. We express the x-coordinates, the y-coordinates and the angles indicating the position of one production line as the three consecutive loci. When representing plural production lines, these three loci are connected in series. Figure 3 shows the individuals in the case of three production lines. The x-coordinates, y-coordinates and angles are shown in Figure 4. To secure the moving paths of the operator, we adopt the constraint that the width between each production line is an arbitrary value Z mm. The Z means the width that an operator can walk through. Individuals that do not satisfy the constraints are deleted as lethal genes.

Figure 3

Individuals expression.

Figure 4

How to judge lethal chromosome.

5. HOW TO EVALUATE FITNESS

The GA fitness of PPG adopts the walking time of an operator. If the walking time of individual i is ti and the slowest walking time among the population of a generation is tw, the fitness fi of individual i is expressed by the following equation.

fi=(tw-ti+1)2(i=1,2,3,) (1)

If the time difference between each individual and the slowest individual is adopted as the fitness, the difference between an excellent individual fitness and another individual one becomes small. To make large difference, we give the difference a square [1].

6. GA ALGORITHM

Our GA module function is to improve the efficiency of production line layout by GA. The algorithm of our GA is shown below.

Step 1: Generate the initial population.

Step 2: Calculate the machine breakdown coordinates for each production line.

Step 3: Calculate the walking time of the operator.

Step 4: Calculate the fitness.

Step 5: Judge whether the end condition is satisfied or not. If satisfied, go to Step 8. If not, go to Step 6.

Step 6: Carry out selection, crossover and mutation operations and generate new individuals of the next generation.

Step 7: Carry out Step 2 on the new generation’s individuals.

Step 8: The production line layout of the individual with the shortest walking time is adopted as the satisfying layout and is output as a solution.

We describe the details of the above algorithm as below.

Step 1: Generate the initial population.

The individuals of the initial population are randomly selected from among the spaces coordinates that lines can be placed in the factory. The information of the selected individual has the x- and y-coordinates and angles of the production line. In generating the individuals, there is a possibility that the production line layouts may overlap or be too close. In this case, the individual corresponding to these kinds of layouts becomes a lethal gene. Not to generate the lethal genes in generating individuals, the following operations are carried out.

(1) Whenever generating individuals, calculate the distance between the contour of a production line and the contours of other still acquired production lines as shown in Figure 4. (2) If the calculated distance is less than Z mm, the individuals are deleted as a lethal gene. (3) Return to (1) and regenerate the individual again.

Step 2: Calculate the machine breakdown coordinates for each production line.

The coordinates whose machine gets breakdown in the factory layout change according to the coordinates of the production line layout. That is, since the coordinates of a machine breakdown occurrence for every generated individual are different, it is necessary to calculate each walking time. PPG’s coordinates of machine breakdown occurrences of all individuals are calculated by the following operations.

(1) Find the work flow line data corresponding to the machine breakdown occurrence time from the machine breakdown data and the coordinates of the machine breakdown. (2) By using the acquired coordinates, calculate the machine breakdown occurrence coordinates for other all individuals. For example, if the coordinates and angles of one production line A of an individual generated in Step 1 are (xa, ya, θa) and the machine breakdown coordinates found in (1) are (x_e, y_e), the machine breakdown coordinates (Xe, Ye) of the production line A are expressed as the following equations.

Xe=xa+xe*sinθa(e=1,2,3,) (2)
Ye=ya+ye*cosθa(e=1,2,3,) (3)

Step 3: Calculate the walking time of the operator.

When a machine breakdown occurs, the operator moves from the operator’s standing place to the place where the machine breakdown occurs to fix it. PPG calculates the total walking time to get there and back.

Step 4: Calculate fitness by using Equation (1).

Step 5: Judge whether the end condition is satisfied or not. If satisfied, go to Step 8. If not, go to Step 6.

After the walking time of the operator is updated, if no better individual is acquired after certain generations, GA is finished.

Step 6: Carry out selection, crossover and mutation operations.

Using the fitness calculated in Step 4 and using the fitness proportional method, select a set of the individuals as a crossover target. As the crossover, we adopt the two-point crossover. Mutations occur with a certain probability.

Step 7: Carry out Step 2 on the new generation’s individuals.

Repeat Steps 2–6 for the next generation population.

Step 8: The production line layout of the individual with the shortest walking time is adopted as the satisfying layout and PPG outputs it as a solution.

The coordinate data of the solution individual is output and the best layout is represented by using the acquired coordinates.

7. APPLICATION EXAMPLES

Plural production-lines-layout by genetic algorithm was applied to the razor assembly line of Kai Industries Co., Ltd. Since the shape of the razor assembly line is extremely complicated, we simplified it to the graphic model as shown in Figure 5 and applied it to PPG.

Figure 5

Production line model.

In this case, we acquired the operator walking routes data for 8 h per one shift. The routes data correspond to 3 days. The machine breakdown data of the same time (Table 1) are also acquired. We adopted the GA parameters as follows. The mutation rate is 10%, the population size is 200 individuals and one individual is preserved as an elite. Selection and crossover methods were carried out by the fitness proportional method and two-point crossover. We also adopted b = 500 mm and Z = 800 mm.

Time x-Coordinate y-Coordinate Breakdown name A
411 3513 4046 Whether the blade is abnormal
565 3858 2046 Whether the blade is abnormal
890 4128 881 On standby
1156 2651 3468 Abnormal presence or absence of frame
Table 1

Machine breakdown example

The simulation results are shown below. The simulations were carried out 20 times. The acquired best layout is shown in Figure 6. The layout corresponds to the individual with the minimum walking time. As a comparison, the walking time of the current layout adopted in Kai Industries Co., Ltd. Its current layout is arranged in parallel. The current layout walking time was also calculated. The layout determined by PPG shortened the operator walking time by about 63 min compared to the parallel layout (Table 2). The layout determined by PPG was effective in improving work efficiency.

Figure 6

Parallel layout and PPG layout.

Walking time (s)
PPG layout 2405
Parallel layout 6164
Table 2

Comparison of simulation results

8. CONCLUSION

After application simulations, it is ascertained that PPG using the chameleon code of InfoFarm Co., Ltd. is effective for the decision to find better layouts of plural production lines where one operator works. We will need the more research to find the refined layout of plural production lines because the acquired layout is not beautiful.

CONFLICTS OF INTEREST

The authors declare they have no conflicts of interest.

AUTHORS INTRODUCTION

Dr. Hidehiko Yamamoto

He received his B.S, M.S., and PhD from Nagoya Institute of Technology. After joining Toyota Industrial Corporation and Wakayama University, he works for Gifu University. He is currently a Professor and the fellow of the Japan Society of Mechanical Engineers.

Mr. Masato Noda

He received his Master’s degree from Department of Intelligence Science and Engineering, Gifu University. He is currently working for Xioxia Corporation.

Mr. Hirohumi Tsuji

He is President and Representative Director of InfoFarm Co., Ltd.

Mr. Yasuhisa Terawa

He is Senior Expert of Corporate Planning Department, InfoFarm Co., Ltd.

Mr. Yoshinori Nakamura

He is General Manager of New Business Development Division, InfoFarm Co., Ltd.

Mr. Masayuki Tsuchida

He is Expert of New Business Development Division, InfoFarm Co., Ltd.

Mr. Katsuaki Yamada

He received his B.S. from the Department of Mechanical Engineering, Nagoya Institute of Technology, 1978. Currently, he is a Managing Director of Production Div., Kai Industries Co., Ltd.

Mr. Yukiyasu Kuriyama

He received his B.S. from the Department of Mechanical Engineering, Nippon University, 1986. Currently, he is a Chief Manager Technical Def., Prod. Div. Kai Industries Co., Ltd.

Journal
Journal of Robotics, Networking and Artificial Life
Volume-Issue
8 - 1
Pages
33 - 36
Publication Date
2021/05/28
ISSN (Online)
2352-6386
ISSN (Print)
2405-9021
DOI
10.2991/jrnal.k.210521.008How to use a DOI?
Copyright
© 2021 The Authors. Published by Atlantis Press B.V.
Open Access
This is an open access article distributed under the CC BY-NC 4.0 license (http://creativecommons.org/licenses/by-nc/4.0/).

Cite this article

TY  - JOUR
AU  - Hidehiko Yamamoto
AU  - Masato Noda
AU  - Hirohumi Tsuji
AU  - Yasuhisa Terawa
AU  - Yoshinori Nakamura
AU  - Masayuki Tsuchida
AU  - Katsuaki Yamada
AU  - Yukiyasu Kuriyama
PY  - 2021
DA  - 2021/05/28
TI  - Decision System for Plural Production Lines Layout by Using GA
JO  - Journal of Robotics, Networking and Artificial Life
SP  - 33
EP  - 36
VL  - 8
IS  - 1
SN  - 2352-6386
UR  - https://doi.org/10.2991/jrnal.k.210521.008
DO  - 10.2991/jrnal.k.210521.008
ID  - Yamamoto2021
ER  -