登录

  • 登录
  • 忘记密码?点击找回

注册

  • 获取手机验证码 60
  • 注册

找回密码

  • 获取手机验证码60
  • 找回
毕业论文网 > 毕业论文 > 物流管理与工程类 > 物流工程 > 正文

考虑通道阻塞的配送中心拣货路径优化算法研究毕业论文

 2021-11-06 08:11  

摘 要

作为供应链的一个网络节点,配送中心集仓储、分拣、配送等功能于一体,在物品存储、流通调控等方面发挥了重要作用。拣选作业是配送中心内部的重要环节,承担了近60%的业务量,但由于拣货路径不够优化、多拣货员相互影响等严重制约了拣选效率的提升。本文针对在单区块、矩形仓库中,多拣货员同时作业的情况下,研究如何合理地解决通道阻塞问题,并优化拣货员的行走路径,主要的研究工作包括:

(1)以单区块、矩形仓库类型为对象,确定三阶段的路径规划思路:首先计算相邻两拣货点之间的的最佳拣货距离;接着针对单张订单的拣选,将其视为旅行商问题,建立模型求解出每份订单各自最优的拣货路线;然后根据拣货员与拣货通道之间的相对位置,将同时作业的多条拣选路径从时间和空间两方面判别其通道阻塞情况,以此来约束拣货员的行进方式。在该策略的基础上,建立以最小化拣选时间为目标函数的数学模型。

(2)利用蚁群算法求解拣选路径,并设计基于优先级的冲突消解策略:由于货架对拣货路径的限制,根据货品编码规则与其储位关系,提出拣货距离的计算方法;然后根据蚁群算法求得的每份订单的最佳拣选路径,获知各拣货员即将经过的位置信息,通过冲突发生条件对阻塞情况进行判别;根据各拣货员不同的优先级设置,遇到冲突时,拣货员按优先级顺序先后离开当前通道,从而解决通道阻塞。为进一步验证该路径算法和冲突消解策略的有效性,将蚁群算法与S型算法对比,获得满足拣货时间最短的拣选路径优化方案。

(3)设计算例对算法进行验证:设置单区块、矩形仓库的主要参数,然后在MATLAB软件平台完成考虑通道阻塞的拣货路径规划仿真实验,通过分析仿真结果,得出本文提出的基于蚁群算法的多拣货员通道阻塞消解策略是合理有效的。

关键词:通道阻塞;拣货路径优化;蚁群算法;冲突消解

Abstract

As a network node of the supply chain, the distribution center integrates warehousing, sorting, distributing and other functions, and plays an important role in the storage and circulation control of goods. The order picking work is an important part within the distribution center, which takes up nearly 60% of the business volume. However, the improvement of the picking efficiency is seriously restricted by the insufficient optimization of the picking route and the mutual influence of multiple pickers. This paper focuses on how to solve the problem of aisle congestion and optimize the picking routes when multiple pickers work at the same time. The main research work is as follows:

(1) Taking single block and rectangular warehouse type as the object, a three-stage planning method is determined. Firstly, the optimal picking distance between two adjacent picking points is calculated. Then, the picking of single order is regarded as the TSP model, and the optimal route of each order is solved. Next, according to the relative position between the picker and the picker channel, the multiple simultaneous picking routes are judged from the time and space to determine the picker blocking, so as to restrict the walking way of pickers. On this basis, a mathematical model is established to minimize the whole picking time as the objective function.

(2) The ant colony algorithm is used to solve the picking route, and a conflict resolution strategy based on priority is designed. Due to the shelves affect the walking direction of pickers, according to the relationship between the goods coding rules and the storage space, a method of calculating the picker distance is proposed. Based on ant colony algorithm, finding the best picking route of each order and obtain the location of each picker, then the blocking can be distinguished thorough conflict condition. In the event of a conflict, the picker leaves the current channel in order of priority according to the different priorities previously set for each picker to resolve the channel blockage. In order to further verify the effectiveness of the pick-routing algorithm and the conflict resolution strategy, comparing with the S-shape algorithm to obtain the picking route optimization scheme which satisfies the shortest picking time.

(3) Design examples to verify the algorithm: set the main parameters of single block, rectangular warehouse, and then the simulation of picking route planning considering channel congestion is completed in the MATLAB software platform. By analyzing the simulation results, it can be concluded that the multi-picker aisle congestion resolution strategy based on ant colony algorithm proposed in this paper is reasonable and effective.

Key Words:aisle congestion;picking routes optimization;Ant Colony algorithm;conflict resolution

目 录

摘 要 I

Abstract II

第1章 绪论 1

1.1 研究背景及意义 1

1.1.1 研究背景 1

1.1.2 研究意义 1

1.2 文献综述 2

1.2.1 拣货作业研究综述 2

1.2.2 通道阻塞研究综述 2

1.2.3 路径算法研究综述 3

1.2.4 文献小结 3

1.3 研究内容 3

1.4 论文框架 4

第2章 拣货作业及其路径规划分析 6

2.1 配送中心概述 6

2.1.1 配送中心及其职能 6

2.1.2 配送中心的作业流程 6

2.1.3 配送中心的布局 7

2.2 拣货作业概述 8

2.2.1 拣选及其作业流程 8

2.2.2 影响拣货效率的因素 9

2.2.3 拣货策略 9

2.3 拣货路径优化理论分析 10

2.3.1 拣货路径问题 10

2.3.2 拣货路径启发式算法 10

2.4 本章小结 12

第3章 考虑通道阻塞的拣货路径规划模型构建 13

3.1 问题描述 13

3.2 模型构建 14

3.2.1 模型假设 14

3.2.2 通道阻塞发生条件 14

3.2.3 建立模型 23

3.3 本章小结 26

第4章 拣货路径优化算法与冲突消解策略设计 27

4.1 拣货路径冲突的产生与消解基本思路 27

4.2 拣货距离的计算方法 27

4.2.1 货品编码规则 27

4.2.2 拣货距离计算 29

4.3 拣货路径规划算法及其应用 30

4.3.1 基于蚁群算法的路径规划 30

4.3.2 基于S型算法的路径规划 32

4.3.3 两种算法的拣货路径对比 33

4.4 通道阻塞的识别与消解策略 34

4.4.1 冲突识别方法 34

4.4.2 冲突消解原则 35

4.5 本章小结 36

第5章 案例分析 37

5.1 案例说明 37

5.2 算法演算与结果分析 37

5.2.1 S型算法时单拣货员与多拣货员作业效率对比 38

5.2.2 蚁群算法时单拣货员与多拣货员作业效率对比 38

5.2.3 多拣货员S型与蚁群算法路径策略效果对比 39

5.3 本章小结 41

第6章 总结与展望 42

6.1 总结 42

6.2 经济性与环保性分析 42

6.3 展望 43

参考文献 44

致 谢 46

第1章 绪论

1.1 研究背景及意义

1.1.1 研究背景

作为供应链的一个组成部分,仓库在物品存储、流通调控、质量管理等方面发挥了重要作用。而且在物流行业的迅猛发展下,逐步侧重以衔接、流通为主的中转价值,以配送中心的形式为客户提供更优质、即时的高质量服务。

订单拣选是指根据客户的订单需求将相应物品从指定储位取出的过程,在仓储作业的各环节中占据着重要地位,如同人体之心脏、空调之压缩机[1]。配送中心内频繁的物料流通使得拣选作业具有庞大的工作任务,约占内部业务总量的60%,消耗了大量的人力物力。同时,由于拣选作业成本占仓库运营总成本的50%-75%[2],且是实际作业中最耗时的一个环节,受到国内外该领域学者的广泛关注,进行了大量的理论研究。因此,配送中心管理人员要汲取丰富的研究成果与经验,注重对订单拣选环节的优化,以缩短拣货作业时间,降低物流投入成本,进而提高企业运作效益。

拣选路径优化问题指的是在拣货距离或拣选时间要求最短的前提下,拣货员选择何种先后次序遍历拣货清单上待拣选货物的存储位置,并且最终返回到集货点[3]。如果将所有待拣选货物的储位抽象为点,各拣货点之间的行走路径抽象为线,那么该问题就类似于旅行商问题(Traveling Salesman Problem,TSP)[4]。但是,拣货路径优化问题不同于一般的旅行商问题,还需考虑配送中心内仓库布局等因素的影响,如拣货路线受到货架的限制。因此,根据拣货清单要求和仓库设施布局确定合适的拣货路径是一项重要的研究方向。同时,作为一个NP难题,拣货路径规划时常用的策略为启发式算法,在优化效果上不太明显,需要进一步提出更加优良的路径策略来解决该问题。

您需要先支付 80元 才能查看全部内容!立即支付

企业微信

Copyright © 2010-2022 毕业论文网 站点地图