CN104570735B - A kind of robot palletizer arcuate movement Trajectory Arithmetic - Google Patents

A kind of robot palletizer arcuate movement Trajectory Arithmetic Download PDF

Info

Publication number
CN104570735B
CN104570735B CN201410806960.7A CN201410806960A CN104570735B CN 104570735 B CN104570735 B CN 104570735B CN 201410806960 A CN201410806960 A CN 201410806960A CN 104570735 B CN104570735 B CN 104570735B
Authority
CN
China
Prior art keywords
coordinate
point3
dist
robot palletizer
point1
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.)
Expired - Fee Related
Application number
CN201410806960.7A
Other languages
Chinese (zh)
Other versions
CN104570735A (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 Wisdom 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 Wisdom Technology Co Ltd filed Critical Foshan Wisdom 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

A kind of robot palletizer arcuate movement Trajectory Arithmetic, comprises the following steps:(2)Obtain the coordinate P1 of robot palletizer current location(X1, y1, z1)Coordinate P3 with target location(X3, y3, z3);(3)Robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 are converted into world coordinates;(4)Current position coordinates P1, target location coordinate P3 after by conversion and height parameter H are substituted in underlying algorithm function and are obtained interim coordinate P2;(5)The interim coordinate P2 for asking for is converted into coordinate under world coordinate system, and application layer is sent to by interface;(6)Circular motion track is planned in the user application layer of robot palletizer using Circle instruction operations.By the Motion trajectory of robot palletizer parabolically, robot motion's distance is reduced so as to reduce the movement time in each cycle, while making its motor process more flexible flexibly.

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, its most distinct issues Seek to beat fast, energy-conservation, flexibility etc..As shown in figure 1, traditional piling action is essentially all based on " door " font mechanism Movement locus.Course of action is divided into three steps, and first step straight line is captured downwards, then pulls up translation, to vertical during target location Put down, then according to contrary action is returned, continue next beat.Due to be every time through linear motion interpolation when machine Compared with mechanization, not flexible enough, in addition walking path is that have two flex points in the middle of right angle to people's motion ratio, will have three times in half period Acceleration and deceleration, the time-consuming speed of action is slow in this way for institute, not flexible enough.
Content of the invention
The technical problem to be solved is to provide a kind of robot palletizer arcuate movement Trajectory Arithmetic, reduces machine People's travel so as to reduce the movement time in each cycle, while make its motor process more flexible flexibly, and by reducing Run time reduces electricity usage cost.
For solving above-mentioned technical problem, the technical scheme is that:A kind of robot palletizer arcuate movement Trajectory Arithmetic, Comprise the following steps:
(1)Set the coordinate P1 of robot palletizer current location(X1, y1, z1), the coordinate P3 of target location(X3, y3, z3), the coordinate P2 of transition point(X2, y2, z2);Starting point of coordinate points P1 for arcuate movement track, coordinate points P3 are arcuate movement The terminal of track, coordinate points P2(X2, y2, z2)Transition point for coordinate points P1 to coordinate points P3;Coordinate points P2 are reached by coordinate The vertical height of the straight line that point P1, P3 are formed is H;
(2)Obtain the coordinate P1 of robot palletizer current location(X1, y1, z1)Coordinate P3 with target location(X3, y3, z3);
(3)Robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 are turned Turn to world coordinates;
(4)Current position coordinates P1, target location coordinate P3 after by conversion and height parameter H substitute into underlying algorithm function In obtain interim coordinate P2;
(5)The interim coordinate P2 for asking for is converted into coordinate under world coordinate system, and application layer is sent to by interface;
(6)Circular motion track is planned in the user application layer of robot palletizer using Circle instruction operations.
One plane can determine by three dimensional space coordinate point, and a circular curve is planned in this plane.Such as P1 (X1, y1, z1), P2 (x2, y2, z2), P3 (x3, y3, z3), if it is known that the coordinate of three points, as long as three points are not at one Then can be with algorithm simultaneously through the space circular arc of three points on straight line, P2 points are transition point, and P1 is starting point, and P3 points are to terminate Point, the direction of motion of arc track by P1 through P2 to P3, angle according to three-point shape into the circular arc center of circle to P1 and P3 unit Vector dot is tried to achieve.Crawl point P1 during onsite application robot palletizer is, it is known that set-point P3 is, it is known that be now to be reached according to P2 Vertical height H of the straight line that P1P3 is formed asks for the coordinate of P2 points.Then according to P1, the coordinate planning parabola rail of P2, P3 point Mark, the track that is planned using the Circle instruction operations of robot.
As improvement, the step(4)In, underlying algorithm function function P2=FuncSolve(P1, P3, h), According to P1, P3 points obtain the coordinate of centre:dist=(P1+P3)/2;Dist includes three element dist(1)X-axis coordinate, dist (2)Y-axis coordinate, dist(3)Z axis coordinate;The 4th axle of robot palletizer hangs down perpendicular to horizontal plane, the parabolic path of TCP operations Straight in XOY plane, it is assumed that a side vector perpendicular to this plane is(1, k, 0), then k=(P1 (1) P3 (1))/( P3(2) - P1(2) );Then P2 (2) the i.e. seats of intermediate point Y-axis are asked for further according to circular curve in the distance that XOY plane is projected Mark;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)
Wherein FSOLVE is to seek variable for y, the value of y during fun=1;
Then according to known k, the value of P2 (2) asks for the value of P2 (1), and formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
P2 (3) is finally obtained:
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)).
Used as improvement, the algorithm is applied to parallel rod stacker crane device people, and such as one kind of Publication No. 103010764A is put down Hang Gan stacking machines robot.
The beneficial effect brought compared with prior art of the present invention is:
By the Motion trajectory of robot palletizer parabolically, robot motion's distance is reduced so as to reduce each week The movement time of phase, while making its motor process more flexible flexibly, and reduces electricity usage cost by reducing run time.
Description of the drawings
Fig. 1 is existing robot palletizer movement locus.
Fig. 2 is robot palletizer movement locus of the present invention.
Fig. 3 is inventive algorithm flow chart.
Specific embodiment
With reference to Figure of description, the invention will be further described.
As shown in Figure 2,3, a kind of robot palletizer arcuate movement Trajectory Arithmetic, the robot palletizer are parallel rod stacker crane Device people, algorithm comprise the following steps:
(1)Set the coordinate P1 of robot palletizer current location(X1, y1, z1), the coordinate P3 of target location(X3, y3, z3), the coordinate P2 of transition point(X2, y2, z2);Starting point of coordinate points P1 for arcuate movement track, coordinate points P3 are arcuate movement The terminal of track, coordinate points P2(X2, y2, z2)Transition point for coordinate points P1 to coordinate points P3;Coordinate points P2 are reached by coordinate The vertical height of the straight line that point P1, P3 are formed is H;
(2)Obtain the coordinate P1 of robot palletizer current location(X1, y1, z1)Coordinate P3 with target location(X3, y3, z3);
(3)Robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 are turned Turn to world coordinates;
(4)Current position coordinates P1, target location coordinate P3 after by conversion and height parameter H substitute into underlying algorithm function In obtain interim coordinate P2;
(5)The interim coordinate P2 for asking for is converted into coordinate under world coordinate system, and application layer is sent to by interface;
(6)Circular motion track is planned in the user application layer of robot palletizer using Circle instruction operations.
Underlying algorithm function function P2=FuncSolve(P1, P3, h), according to P1, P3 points obtain the seat of centre Mark:dist=(P1+P3)/2;Dist includes three element dist(1)X-axis coordinate, dist(2)Y-axis coordinate, dist(3)Z axis are sat Mark;, perpendicular to horizontal plane, the parabolic path of TCP operations is perpendicular to XOY plane for the 4th axle of robot palletizer, it is assumed that perpendicular to One side vector of this plane is(1, k, 0), then k=(P1 (1) P3 (1))/(P3 (2)-P1 (2));Then again P2 (2) the i.e. coordinates of intermediate point Y-axis are asked in the distance that XOY plane is projected according to circular curve;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)
Wherein FSOLVE is to seek variable for y, the value of y during fun=1;
Then according to known k, the value of P2 (2) asks for the value of P2 (1), and formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
P2 (3) is finally obtained:
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 (2)

1. a kind of robot palletizer arcuate movement Trajectory Arithmetic, it is characterised in that comprise the following steps:
(1)Set the coordinate P1 of robot palletizer current location(X1, y1, z1), the coordinate P3 of target location(X3, y3, z3), mistake Cross coordinate P2 a little(X2, y2, z2);Starting point of coordinate points P1 for arcuate movement track, coordinate points P3 are arcuate movement track Terminal, coordinate points P2(X2, y2, z2)Transition point for coordinate points P1 to coordinate points P3;Coordinate points P2 are reached by coordinate points P1, P3 The vertical height of the straight line of formation is H;
(2)Obtain the coordinate P1 of robot palletizer current location(X1, y1, z1)Coordinate P3 with target location(X3, y3, z3);
(3)Robot palletizer reads the height parameter H of input, and current position coordinates P1 and target location coordinate P3 are converted into World coordinates;
(4)Current position coordinates P1, target location coordinate P3 after by conversion and height parameter H are substituted into and are asked in underlying algorithm function Go out interim coordinate P2;
(5)The interim coordinate P2 for asking for is converted into coordinate under world coordinate system, and application layer is sent to by interface;
(6)Circular motion track is planned in the application layer of robot palletizer using Circle instruction operations;
The step(4)In, underlying algorithm function function P2=FuncSolve(P1, P3, h), according to P1, P3 points are asked Go out the coordinate of centre:dist=(P1+P3)/2;
Dist includes three element dist(1)X-axis coordinate, dist(2)Y-axis coordinate, dist(3)Z axis coordinate;Robot palletizer , perpendicular to horizontal plane, the parabolic path of TCP operations is perpendicular to XOY plane, it is assumed that perpendicular to a direction of this plane for four axles Amount is(1, k, 0), then k=(P1 (1) P3 (1))/(P3 (2)-P1 (2));Then further according to circular curve in XOY The distance of plane projection asks for P2 (2) the i.e. coordinates of transition point Y-axis;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)
Wherein FSOLVE is to seek variable for Y, the value of Y during fun=1;
Then according to known k, the value of P2 (2) asks for the value of P2 (1), and formula is as follows:
P2(1) = point3(1)+k*point3(2)-k*Y
P2 (3) is finally obtained:
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)).
2. a kind of robot palletizer arcuate movement Trajectory Arithmetic according to claim 1, it is characterised in that:The algorithm should For 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 CN104570735A (en) 2015-04-29
CN104570735B true 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)

Families Citing this family (13)

* 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
CN106403950B (en) * 2016-06-24 2019-06-21 电子科技大学 A kind of robot palletizer method for planning track based on reference information
CN106272429B (en) * 2016-09-14 2018-12-07 上海大学 Additional shaft motion planning method in a kind of planer-type lifting machine people working cell
CN108064197B (en) * 2016-12-30 2021-04-06 深圳配天智能技术研究院有限公司 Method and device for determining position information of 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
CN107479581B (en) 2017-09-21 2021-01-26 北京京东尚科信息技术有限公司 Container stacking control device, system, 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
CN111989193A (en) * 2018-04-25 2020-11-24 Abb瑞士股份有限公司 Method and control system for controlling motion trail of robot
CN110587576A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot based on single chip microcomputer
CN110587598A (en) * 2019-08-08 2019-12-20 南通大学 Stacking robot path optimization algorithm based on single-chip microcomputer
CN110815230B (en) * 2019-11-21 2022-02-22 广东力生智能有限公司 Six-axis palletizing robot pose adapting method based on virtual sampling
CN113547525B (en) * 2021-09-22 2022-01-14 天津施格机器人科技有限公司 Control method of robot controller special for stacking
CN113878574B (en) * 2021-09-28 2023-09-29 浙江大学 Robot palletizing 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
码垛机器人的轨迹规划与仿真分析;叶辰雷,等;《机械研究与应用》;20131231;第26卷(第5期);摘要、第26-30及图5-7 *

Also Published As

Publication number Publication date
CN104570735A (en) 2015-04-29

Similar Documents

Publication Publication Date Title
CN104570735B (en) A kind of robot palletizer arcuate movement Trajectory Arithmetic
JP6501921B2 (en) Walking control method and walking control device for two-legged robot
CN105171743B (en) Movement track planning method for tail end of stacking manipulator
CN104062902B (en) Delta robot time optimal trajectory planning method
CN105353725B (en) Auxiliary magnet configuration space circular interpolation method is crossed for industrial robot
CN107848005B (en) Bending follows method for planning track, apparatus and system
CN103970139B (en) Robot continuous point position motion planning method
CN108089578B (en) Walking motion planning method for biped walking robot
CN102662350B (en) Track teaching and planning method of master-slave mode multi-robot cooperative system
CN108890644B (en) Multi-axis synchronous trajectory planning method and system and computer readable storage medium
CN106227154B (en) A kind of synchronous error compensation method of two-axle interlocking manipulator motion control
CN105892402A (en) Point-to-point motion control method for mechanical arm
CN106950923B (en) A kind of speed planning method for determining interpolation cycle
CN110076754A (en) A kind of mobile parallel connection mechanism and its control method of multi-locomotion mode
CN103760908A (en) Inspecting device closed loop tracking control method
CN103970019A (en) Space robot jitter suppression trajectory planning method based on accelerated speed dynamic configuration
CN111580453A (en) PLC-based implementation method for improving precision of two-dimensional circular interpolation track
CN108256175A (en) A kind of design method of cam profile
CN110162053A (en) The adaptive behavior fusion method that the more unmanned boats of isomery are formed into columns
CN109032128B (en) Triangular formation control method of discrete multiple AGV non-particle system
CN102423737A (en) Control method of numerical control spraying device for flat plate spraying
CN113830197A (en) Balance control method applied to dynamic walking of biped robot
CN101488178A (en) Method for dynamically optimizing wash-out coefficient and fully performing overload capacity of movement platform
CN109278041B (en) Transition error controllable mechanical arm linear track self-adaptive linking planning method
JP6297169B2 (en) Drawing apparatus and drawing method

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
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.

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

Granted publication date: 20170315

Termination date: 20201223