CN104570735A - Arc-shaped movement-track algorithm for palletizing robot - Google Patents

Arc-shaped movement-track algorithm for palletizing robot Download PDF

Info

Publication number
CN104570735A
CN104570735A CN201410806960.7A CN201410806960A CN104570735A CN 104570735 A CN104570735 A CN 104570735A CN 201410806960 A CN201410806960 A CN 201410806960A CN 104570735 A CN104570735 A CN 104570735A
Authority
CN
China
Prior art keywords
coordinate
point3
dist
robot palletizer
robot
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
CN201410806960.7A
Other languages
Chinese (zh)
Other versions
CN104570735B (en
Inventor
刘远强
杨文发
郭伟越
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Foshan wisdom Technology Co., Ltd.
Original Assignee
FOSHAN VANTA ROBOT TECHNOLOGY Co Ltd
GUANGZHOU VANTA INTELLIGENT EQUIPMENT TECHNOLOGY Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by FOSHAN VANTA ROBOT TECHNOLOGY Co Ltd, GUANGZHOU VANTA INTELLIGENT EQUIPMENT TECHNOLOGY Co Ltd filed Critical FOSHAN VANTA ROBOT TECHNOLOGY Co Ltd
Priority to CN201410806960.7A priority Critical patent/CN104570735B/en
Publication of CN104570735A publication Critical patent/CN104570735A/en
Application granted granted Critical
Publication of CN104570735B publication Critical patent/CN104570735B/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Abstract

The invention provides an arc-shaped movement-track algorithm for a palletizing robot. The arc-shaped movement-track algorithm comprises the following steps: (2) acquiring the coordinate P1( x1, y1, z1) of the current position of the palletizing robot, and the coordinate P3 (x3, y3, z3) of the target position of the palletizing robot; (3) enabling the palletizing robot to read an input height parameter H, and converting the current-position coordinate P1 and the target-position coordinate P3 into a world coordinate; (4) bringing the current-position coordinate P1, the target-position coordinate P3 and the height parameter H into a basic arithmetic function so as to obtain an interim coordinate P2; (5) converting the obtained interim coordinate P2 into a coordinate under the world coordinate, sending the obtained coordinate to an application layer through a port; (6) using a Circle command to plan an arc-shaped movement track at a user application layer of the palletizing robot. Because the movement track of the palletizing robot is planned into a parabola, the movement distance of the robot is shortened, so that the movement time of the robot in each period is shortened, and besides, the movement of the robot is more flexible.

Description

A kind of robot palletizer arcuate movement Trajectory Arithmetic
Technical field
The present invention relates to robot palletizer, especially a kind of robot palletizer arcuate movement Trajectory Arithmetic.
Background technology
Robot palletizer is mainly used in heavy load, and high velocity environment substitutes the occasion of manual work, and its most distinct issues are exactly want beat fast, energy-conservation, flexible etc.As shown in Figure 1, traditional piling action is all the movement locus based on " door " font mechanism substantially.Course of action is divided into three steps, and first step straight line captures downwards, then pulls up translation, vertically puts down to during target location, then returns according to contrary action, continues next beat.Because when being all through rectilinear motion interpolation, robot motion compares mechanization at every turn, flexible not, walking path has two flex points in the middle of right angle in addition, will have three acceleration and deceleration in half period, and institute in this way action speed consuming time is slow, flexible not.
Summary of the invention
Technical matters to be solved by this invention is to provide a kind of robot palletizer arcuate movement Trajectory Arithmetic, reduce robot travel, make it reduce the run duration in each cycle, make its motion process more flexibly flexible simultaneously, and reduce electricity usage cost by reducing working time.
For solving the problems of the technologies described above, technical scheme of the present invention is: a kind of robot palletizer arcuate movement Trajectory Arithmetic, comprises the following steps:
(1) the coordinate P1(x1 of robot palletizer current location is set, y1, z1), the coordinate P3(x3 of target location, y3, z3), the coordinate P2(x2 of transition point, y2, z2); Coordinate points P1 is the starting point of arcuate movement track, and coordinate points P3 is the terminal of arcuate movement track, coordinate points P2(x2, y2, z2) be the transition point of coordinate points P1 to coordinate points P3; The vertical height that coordinate points P2 arrives the straight line formed by coordinate points P1, P3 is H;
(2) the coordinate P1(x1 of robot palletizer current location is obtained, y1, z1) and the coordinate P3(x3 of target location, y3, z3);
(3) robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 is converted into world coordinates;
(4) interim coordinate P2 is obtained by current position coordinates P1, the target location coordinate P3 after conversion and height parameter H substitution underlying algorithm function;
(5) the interim coordinate P2 asked for is converted into coordinate under world coordinate system, and is sent to application layer by interface;
(6) Circle instruction operation planning circular motion track is used at the user application layer of robot palletizer.
A plane can be determined by three dimensional space coordinate point, this plane plans a circular curve.Such as P1(x1, y1, z1), P2 (x2, y2, z2), P3 (x3, y3, z3), if the coordinate of known three points, if three points not point-blank then can algorithm simultaneously through the space circular arc of three points, P2 point is transition point, P1 is starting point, P3 point is terminating point, and the direction of motion of arc track is by P1 through P2 to P3, and the circular arc center of circle that angle becomes according to three-point shape is tried to achieve to the vector of unit length dot product of P1 and P3.Capture some P1 during onsite application robot palletizer known, set-point P3 is known, will arrive according to P2 the coordinate that the vertical height H of straight line that P1P3 formed asks for P2 point now.Then according to the coordinate planning parabolic path of P1, P2, P3 point, the track of the Circle instruction operation planning of robot is used.
As improvement, in described step (4), underlying algorithm function f unction P2=FuncSolve(P1, P3, h), obtain middle coordinate according to P1, P3 point: dist=(P1+P3)/2; Dist comprises three element dist(1) X-axis coordinate, dist(2) Y-axis coordinate, dist(3) Z axis coordinate; Robot palletizer the 4th axle is perpendicular to surface level, the parabolic path that TCP runs is perpendicular to XOY plane, suppose that a side vector perpendicular to this plane is (1, k, 0), then k=(P1 (1) – P3 (1))/(P3 (2)-P1 (2)); And then ask for P2 (2) the i.e. coordinate of intermediate point Y-axis according to circular curve in the distance that XOY plane projects; Concrete formula is as follows:
fun = (y)(point3(1)+k*point3(2)-k*y-dist(1))^2+(y-dist(2))^2+...
(((point3(1)+k*point3(2)-k*y-dist(1))*(point3(1)-point1(1))+(y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3)))^2-high^2
P2(2)= FSOLVE(fun,1)
The value of wherein FSOLVE is changes persuing amount when being y, fun=1 y;
Then ask for the value of P2 (1) according to the value of known k, P2 (2), formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
Finally obtain P2 (3):
P2(3)=dist(3)-((point3(1)+k*point3(2)-k*Y-dist(1))*(point3(1)-point1(1))+(Y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3))。
As improvement, described algorithm application in parallel rod stacker crane device people, if publication number is a kind of parallel rod stacker crane robot of 103010764A.
The beneficial effect that the present invention is compared with prior art brought is:
By the Motion trajectory of robot palletizer parabolically, reduce robot travel, make it reduce the run duration in each cycle, make its motion process more flexibly flexible simultaneously, and reduce electricity usage cost by reducing working time.
Accompanying drawing explanation
Fig. 1 is existing robot palletizer movement locus.
Fig. 2 is robot palletizer movement locus of the present invention.
Fig. 3 is algorithm flow chart of the present invention.
Embodiment
Below in conjunction with Figure of description, the invention will be further described.
As shown in Figure 2,3, a kind of robot palletizer arcuate movement Trajectory Arithmetic, this robot palletizer is parallel rod stacker crane device people, and algorithm comprises the following steps:
(1) the coordinate P1(x1 of robot palletizer current location is set, y1, z1), the coordinate P3(x3 of target location, y3, z3), the coordinate P2(x2 of transition point, y2, z2); Coordinate points P1 is the starting point of arcuate movement track, and coordinate points P3 is the terminal of arcuate movement track, coordinate points P2(x2, y2, z2) be the transition point of coordinate points P1 to coordinate points P3; The vertical height that coordinate points P2 arrives the straight line formed by coordinate points P1, P3 is H;
(2) the coordinate P1(x1 of robot palletizer current location is obtained, y1, z1) and the coordinate P3(x3 of target location, y3, z3);
(3) robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 is converted into world coordinates;
(4) interim coordinate P2 is obtained by current position coordinates P1, the target location coordinate P3 after conversion and height parameter H substitution underlying algorithm function;
(5) the interim coordinate P2 asked for is converted into coordinate under world coordinate system, and is sent to application layer by interface;
(6) Circle instruction operation planning circular motion track is used at the user application layer of robot palletizer.
Underlying algorithm function f unction P2=FuncSolve(P1, P3, h), obtain middle coordinate according to P1, P3 point: dist=(P1+P3)/2; Dist comprises three element dist(1) X-axis coordinate, dist(2) Y-axis coordinate, dist(3) Z axis coordinate; Robot palletizer the 4th axle is perpendicular to surface level, the parabolic path that TCP runs is perpendicular to XOY plane, suppose that a side vector perpendicular to this plane is (1, k, 0), then k=(P1 (1) – P3 (1))/(P3 (2)-P1 (2)); And then ask for P2 (2) the i.e. coordinate of intermediate point Y-axis according to circular curve in the distance that XOY plane projects; Concrete formula is as follows:
fun = (y)(point3(1)+k*point3(2)-k*y-dist(1))^2+(y-dist(2))^2+...
(((point3(1)+k*point3(2)-k*y-dist(1))*(point3(1)-point1(1))+(y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3)))^2-high^2
P2(2)= FSOLVE(fun,1)
The value of wherein FSOLVE is changes persuing amount when being y, fun=1 y;
Then ask for the value of P2 (1) according to the value of known k, P2 (2), formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
Finally obtain P2 (3):
P2(3)=dist(3)-((point3(1)+k*point3(2)-k*Y-dist(1))*(point3(1)-point1(1))+(Y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3))。

Claims (3)

1. a robot palletizer arcuate movement Trajectory Arithmetic, is characterized in that, comprises the following steps:
(1) the coordinate P1(x1 of robot palletizer current location is set, y1, z1), the coordinate P3(x3 of target location, y3, z3), the coordinate P2(x2 of transition point, y2, z2); Coordinate points P1 is the starting point of arcuate movement track, and coordinate points P3 is the terminal of arcuate movement track, coordinate points P2(x2, y2, z2) be the transition point of coordinate points P1 to coordinate points P3; The vertical height that coordinate points P2 arrives the straight line formed by coordinate points P1, P3 is H;
(2) the coordinate P1(x1 of robot palletizer current location is obtained, y1, z1) and the coordinate P3(x3 of target location, y3, z3);
(3) robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 is converted into world coordinates;
(4) interim coordinate P2 is obtained by current position coordinates P1, the target location coordinate P3 after conversion and height parameter H substitution underlying algorithm function;
(5) the interim coordinate P2 asked for is converted into coordinate under world coordinate system, and is sent to application layer by interface;
(6) Circle instruction operation planning circular motion track is used at the user application layer of robot palletizer.
2. a kind of robot palletizer arcuate movement Trajectory Arithmetic according to claim 1, is characterized in that: in described step (4), underlying algorithm function f unction P2=FuncSolve(P1, P3, h), middle coordinate is obtained according to P1, P3 point: dist=(P1+P3)/2;
Dist comprises three element dist(1) X-axis coordinate, dist(2) Y-axis coordinate, dist(3) Z axis coordinate; Robot palletizer the 4th axle is perpendicular to surface level, the parabolic path that TCP runs is perpendicular to XOY plane, suppose that a side vector perpendicular to this plane is (1, k, 0), then k=(P1 (1) – P3 (1))/(P3 (2)-P1 (2)); And then ask for P2 (2) the i.e. coordinate of intermediate point Y-axis according to circular curve in the distance that XOY plane projects; Concrete formula is as follows:
fun = (y)(point3(1)+k*point3(2)-k*y-dist(1))^2+(y-dist(2))^2+...
(((point3(1)+k*point3(2)-k*y-dist(1))*(point3(1)-point1(1))+(y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3)))^2-high^2
P2(2)= FSOLVE(fun,1)
The value of wherein FSOLVE is changes persuing amount when being y, fun=1 y;
Then ask for the value of P2 (1) according to the value of known k, P2 (2), formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
Finally obtain P2 (3):
P2(3)=dist(3)-((point3(1)+k*point3(2)-k*Y-dist(1))*(point3(1)-point1(1))+(Y-dist(2))*(point3(2)-point1(2)))/(point3(3)-point1(3))。
3. a kind of robot palletizer arcuate movement Trajectory Arithmetic according to claim 1, is characterized in that: described algorithm application is in parallel rod stacker crane device people.
CN201410806960.7A 2014-12-23 2014-12-23 A kind of robot palletizer arcuate movement Trajectory Arithmetic Expired - Fee Related CN104570735B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201410806960.7A CN104570735B (en) 2014-12-23 2014-12-23 A kind of robot palletizer arcuate movement Trajectory Arithmetic

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201410806960.7A CN104570735B (en) 2014-12-23 2014-12-23 A kind of robot palletizer arcuate movement Trajectory Arithmetic

Publications (2)

Publication Number Publication Date
CN104570735A true CN104570735A (en) 2015-04-29
CN104570735B CN104570735B (en) 2017-03-15

Family

ID=53087105

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201410806960.7A Expired - Fee Related CN104570735B (en) 2014-12-23 2014-12-23 A kind of robot palletizer arcuate movement Trajectory Arithmetic

Country Status (1)

Country Link
CN (1) CN104570735B (en)

Cited By (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105415372A (en) * 2015-12-09 2016-03-23 常州汉迪机器人科技有限公司 Multi-joint robot track planning method under constraint of safety space
CN106272429A (en) * 2016-09-14 2017-01-04 上海大学 Additional shaft motion planning method in a kind of planer-type lifting machine people working cell
CN106403950A (en) * 2016-06-24 2017-02-15 电子科技大学 A robotic palletizer path planning method based on reference information
CN107479581A (en) * 2017-09-21 2017-12-15 北京京东尚科信息技术有限公司 Container piles up control device, system, method and storage medium
CN107571258A (en) * 2017-08-31 2018-01-12 广州泰行智能科技有限公司 A kind of operating path planning method and device based on mechanical arm
CN107972035A (en) * 2018-01-02 2018-05-01 北京翰辰自动化系统有限公司 A kind of industrial robot programmed set of instructions and its graphic processing method
WO2018120210A1 (en) * 2016-12-30 2018-07-05 深圳配天智能技术研究院有限公司 Method and device for determining position information about stacking point, and robot
CN110587598A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot path optimization algorithm based on single-chip microcomputer
CN110587576A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot based on single chip microcomputer
CN110815230A (en) * 2019-11-21 2020-02-21 广东力生智能有限公司 Six-axis palletizing robot pose adapting method based on virtual sampling
US20210245364A1 (en) * 2018-04-25 2021-08-12 Abb Schweiz Ag Method And Control System For Controlling Movement Trajectories Of A Robot
CN113547525A (en) * 2021-09-22 2021-10-26 天津施格机器人科技有限公司 Control method of robot controller special for stacking
CN113878574A (en) * 2021-09-28 2022-01-04 浙江大学 Robot stacking process programming method

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6216058B1 (en) * 1999-05-28 2001-04-10 Brooks Automation, Inc. System of trajectory planning for robotic manipulators based on pre-defined time-optimum trajectory shapes
CN101508113A (en) * 2009-03-11 2009-08-19 哈尔滨工业大学 Robot track programming method based cosine second-order
CN202163920U (en) * 2011-07-01 2012-03-14 广西大学 Controllable mechanism type stacking robot mechanism
CN103029124A (en) * 2012-12-27 2013-04-10 广西大学 Multi-degree-of-freedom controllable mechanism type stacking robot

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6216058B1 (en) * 1999-05-28 2001-04-10 Brooks Automation, Inc. System of trajectory planning for robotic manipulators based on pre-defined time-optimum trajectory shapes
CN101508113A (en) * 2009-03-11 2009-08-19 哈尔滨工业大学 Robot track programming method based cosine second-order
CN202163920U (en) * 2011-07-01 2012-03-14 广西大学 Controllable mechanism type stacking robot mechanism
CN103029124A (en) * 2012-12-27 2013-04-10 广西大学 Multi-degree-of-freedom controllable mechanism type stacking robot

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
叶辰雷,等: "码垛机器人的轨迹规划与仿真分析", 《机械研究与应用》 *

Cited By (20)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN105415372B (en) * 2015-12-09 2017-04-12 常州汉迪机器人科技有限公司 Multi-joint robot track planning method under constraint of safety space
CN105415372A (en) * 2015-12-09 2016-03-23 常州汉迪机器人科技有限公司 Multi-joint robot track planning method under constraint of safety space
CN106403950A (en) * 2016-06-24 2017-02-15 电子科技大学 A robotic palletizer path planning method based on reference information
CN106403950B (en) * 2016-06-24 2019-06-21 电子科技大学 A kind of robot palletizer method for planning track based on reference information
CN106272429A (en) * 2016-09-14 2017-01-04 上海大学 Additional shaft motion planning method in a kind of planer-type lifting machine people working cell
CN106272429B (en) * 2016-09-14 2018-12-07 上海大学 Additional shaft motion planning method in a kind of planer-type lifting machine people working cell
WO2018120210A1 (en) * 2016-12-30 2018-07-05 深圳配天智能技术研究院有限公司 Method and device for determining position information about stacking point, and robot
CN107571258A (en) * 2017-08-31 2018-01-12 广州泰行智能科技有限公司 A kind of operating path planning method and device based on mechanical arm
CN107479581A (en) * 2017-09-21 2017-12-15 北京京东尚科信息技术有限公司 Container piles up control device, system, method and storage medium
US11446824B2 (en) 2017-09-21 2022-09-20 Beijing Jingdong Qianshi Technology Co., Ltd. Palletizing control device, system and method and storage medium
CN107972035A (en) * 2018-01-02 2018-05-01 北京翰辰自动化系统有限公司 A kind of industrial robot programmed set of instructions and its graphic processing method
US20210245364A1 (en) * 2018-04-25 2021-08-12 Abb Schweiz Ag Method And Control System For Controlling Movement Trajectories Of A Robot
CN110587598A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot path optimization algorithm based on single-chip microcomputer
CN110587576A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot based on single chip microcomputer
CN110815230A (en) * 2019-11-21 2020-02-21 广东力生智能有限公司 Six-axis palletizing robot pose adapting method based on virtual sampling
CN110815230B (en) * 2019-11-21 2022-02-22 广东力生智能有限公司 Six-axis palletizing robot pose adapting method based on virtual sampling
CN113547525A (en) * 2021-09-22 2021-10-26 天津施格机器人科技有限公司 Control method of robot controller special for stacking
CN113547525B (en) * 2021-09-22 2022-01-14 天津施格机器人科技有限公司 Control method of robot controller special for stacking
CN113878574A (en) * 2021-09-28 2022-01-04 浙江大学 Robot stacking process programming method
CN113878574B (en) * 2021-09-28 2023-09-29 浙江大学 Robot palletizing process programming method

Also Published As

Publication number Publication date
CN104570735B (en) 2017-03-15

Similar Documents

Publication Publication Date Title
CN104570735A (en) Arc-shaped movement-track algorithm for palletizing robot
CN103147577B (en) Control method, equipment, system and construction machinery for multi-joint mechanical arm support
CN105171743B (en) Movement track planning method for tail end of stacking manipulator
CN104062902B (en) Delta robot time optimal trajectory planning method
CN109822579A (en) Cooperation robot security's control method of view-based access control model
CN109650089B (en) Anti-collision method for material piling and taking machine and material pile of storage yard
CN106227154B (en) A kind of synchronous error compensation method of two-axle interlocking manipulator motion control
CN108890644B (en) Multi-axis synchronous trajectory planning method and system and computer readable storage medium
CN103676787B (en) A kind of center of circle model space circular interpolation method for kinetic control system
CN111580453B (en) PLC-based implementation method for improving precision of two-dimensional circular interpolation track
CN104331542A (en) Painting robot position planning method for large-scale free-form surface
CN102662350A (en) Track teaching and planning method of master-slave mode multi-robot cooperative system
CN107558530B (en) Method for realizing auxiliary slope repairing operation function of telex excavator
CN113062601B (en) Q learning-based concrete distributing robot trajectory planning method
CN105174061A (en) Double-pendulum crane global time optimal trajectory planning method based on pseudo-spectral method
CN106777475A (en) A kind of injection machine arm dynamics synergy emulation method of confined space constraint
CN109108983A (en) Manipulator method for planning track based on sort process
CN109927031A (en) A kind of combination joint and cartesian space six-shaft industrial robot paths planning method
CN110162053A (en) The adaptive behavior fusion method that the more unmanned boats of isomery are formed into columns
CN105773602A (en) Control system for palletizing robot
CN104772755B (en) 3-PRS parallel institution velocity optimization method
CN102385386B (en) Line-heating intelligent robot path planning method
CN102490083A (en) Real-time display method for space profile track errors of numerical control device
CN107435349B (en) Implementation method for auxiliary sweeping operation function of telex excavator
CN107553485A (en) The generation method of dynamic virtual fixture in a kind of interactive process

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
TA01 Transfer of patent application right

Effective date of registration: 20170209

Address after: Room A308 scientific research building in the town of Nanhai District, Nanhai Software Technology Park high-tech center for Buddhist A block 510800 in Guangdong city of Foshan Province

Applicant after: Foshan wisdom Technology Co., Ltd.

Address before: Huaxing Xinhua Town, Huadu District Huaxing Industrial Zone 510800 Road, Guangdong city of Guangzhou province No. 3

Applicant before: GUANGZHOU VANTA INTELLIGENT EQUIPMENT TECHNOLOGY CO., LTD.

Applicant before: FOSHAN VANTA ROBOT TECHNOLOGY CO., LTD.

TA01 Transfer of patent application right
C14 Grant of patent or utility model
GR01 Patent grant
CF01 Termination of patent right due to non-payment of annual fee

Granted publication date: 20170315

Termination date: 20201223

CF01 Termination of patent right due to non-payment of annual fee