ARCS SDK API  0.25.0
载入中...
搜索中...
未找到
sync_move.h
浏览该文件的文档.
1/** @file sync_move.h
2 * @brief 同步运行
3 *
4 * 1. Independent movements
5 * If the different task programs, and their robots, work independently, no
6 * synchronization or coordination is needed. Each task program is then
7 * written as if it was the program for a single robot system.
8 *
9 * 2. Semi coordinated movements
10 * Several robots can work with the same work object, without synchronized
11 * movements, as long as the work object is not moving.
12 * A positioner can move the work object when the robots are not coordinated
13 * to it, and the robots can be coordinated to the work object when it is not
14 * moving. Switching between moving the object and coordinating the robots is
15 * called semi coordinated movements.
16 *
17 * 3. Coordinated synchronized movements
18 * Several robots can work with the same moving work object.
19 * The positioner or robot that holds the work object and the robots that work
20 * with the work object must have synchronized movements. This means that the
21 * RAPID task programs, that handle one mechanical unit each, execute their
22 * move instructions simultaneously.
23 */
24#ifndef AUBO_SDK_SYNC_MOVE_INTERFACE_H
25#define AUBO_SDK_SYNC_MOVE_INTERFACE_H
26
27#include <vector>
28#include <unordered_set>
29#include <string>
30#include <memory>
31#include <aubo/global_config.h>
32
33namespace arcs {
34namespace common_interface {
35
36typedef std::unordered_set<std::string> TaskSet;
37class ARCS_ABI_EXPORT SyncMove
38{
39public:
41 virtual ~SyncMove();
42
43 /**
44 * syncMoveOn is used to start synchronized movement mode.
45 *
46 * A syncMoveOn instruction will wait for the other task programs. When
47 * all task programs have reached the syncMoveOn, they will continue
48 * their execution in synchronized movement mode. The move instructions
49 * in the different task programs are executed simultaneously, until the
50 * instruction syncMoveOff is executed.
51 * A stop point must be programmed before the syncMoveOn instruction.
52 *
53 * @param syncident
54 * @param taskset
55 * @return
56 *
57 * @par Python函数原型
58 * syncMoveOn(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) -> int
59 *
60 * @par Lua函数原型
61 * syncMoveOn(syncident: string, taskset: table) -> nil
62 * @endcoe
63 */
64 int syncMoveOn(const std::string &syncident, const TaskSet &taskset);
65
66 /**
67 * 设置同步路径段的ID
68 * In synchronized movements mode, all or none of the simultaneous move
69 * instructions must be programmed with corner zones. This means that the
70 * move instructions with the same ID must either all have corner zones, or
71 * all have stop points. If a move instruction with a corner zone and a move
72 * instruction with a stop point are synchronously executed in their
73 * respective task program, an error will occur.
74 *
75 * Synchronously executed move instructions can have corner zones of
76 * different sizes (e.g. one use z10 and one use z50).
77 *
78 * @param id
79 * @return
80 *
81 * @par Python函数原型
82 * syncMoveSegment(self: pyaubo_sdk.SyncMove, arg0: int) -> bool
83 *
84 * @par Lua函数原型
85 * syncMoveSegment(id: number) -> boolean
86 * @endcoe
87 */
88 bool syncMoveSegment(int id);
89
90 /**
91 * syncMoveOff is used to end synchronized movement mode.
92 *
93 * A syncMoveOff instruction will wait for the other task programs. When
94 * all task programs have reached the syncMoveOff, they will continue
95 * their execution in unsynchronized mode.
96 * A stop point must be programmed before the syncMoveOff instruction.
97 *
98 * @param syncident
99 * @return
100 *
101 * @par Python函数原型
102 * syncMoveOff(self: pyaubo_sdk.SyncMove, arg0: str) -> int
103 *
104 * @par Lua函数原型
105 * syncMoveOff(syncident: string) -> nil
106 * @endcoe
107 */
108 int syncMoveOff(const std::string &syncident);
109
110 /**
111 * syncMoveUndo is used to turn off synchronized movements, even if not
112 * all the other task programs execute the syncMoveUndo instruction.
113 *
114 * syncMoveUndo is intended for UNDO handlers. When the program
115 * pointer is moved from the procedure, syncMoveUndo is used to turn off
116 * the synchronization.
117 *
118 * @return
119 *
120 * @par Python函数原型
121 * syncMoveUndo(self: pyaubo_sdk.SyncMove) -> int
122 *
123 * @par Lua函数原型
124 * syncMoveUndo() -> nil
125 * @endcoe
126 */
128
129 /**
130 * waitSyncTasks used to synchronize several task programs at a special
131 * point in the program.
132 *
133 * A waitSyncTasks instruction will wait for the other
134 * task programs. When all task programs have reached the waitSyncTasks
135 * instruction, they will continue their execution.
136 *
137 * @param syncident
138 * @param taskset
139 * @return
140 *
141 * @par Python函数原型
142 * waitSyncTasks(self: pyaubo_sdk.SyncMove, arg0: str, arg1: Set[str]) ->
143 * int
144 *
145 * @par Lua函数原型
146 * waitSyncTasks(syncident: string, taskset: table) -> nil
147 * @endcoe
148 */
149 int waitSyncTasks(const std::string &syncident, const TaskSet &taskset);
150
151 /**
152 * isSyncMoveOn is used to tell if the mechanical unit group is in synchron-
153 * ized movement mode.
154 *
155 * A task that does not control any mechanical unit can find out if the
156 * mechanical units defined in the parameter Use Mechanical Unit Group are
157 * in synchronized movement mode.
158 *
159 * @return
160 *
161 * @par Python函数原型
162 * isSyncMoveOn(self: pyaubo_sdk.SyncMove) -> bool
163 *
164 * @par Lua函数原型
165 * isSyncMoveOn() -> boolean
166 * @endcoe
167 */
169
170 /**
171 *
172 * @return
173 *
174 * @par Python函数原型
175 * syncMoveSuspend(self: pyaubo_sdk.SyncMove) -> int
176 *
177 * @par Lua函数原型
178 * syncMoveSuspend() -> nil
179 * @endcoe
180 */
182
183 /**
184 *
185 * @return
186 *
187 * @par Python函数原型
188 * syncMoveResume(self: pyaubo_sdk.SyncMove) -> int
189 *
190 * @par Lua函数原型
191 * syncMoveResume() -> nil
192 * @endcoe
193 */
195
196 /**
197 * Add a frame with the name name initialized at the specified pose
198 * expressed in the ref_frame coordinate frame. This command only adds a
199 * frame to the world, it does not attach it to the ref_frame coordinate
200 * frame. Use frameAttach() to attach the newly added frame to ref_frame if
201 * desired.
202 *
203 * @param name: name of the frame to be added. The name must not be the same
204 * as any existing world model object (frame, axis, or axis group),
205 * otherwise an exception is thrown
206 * @param pose: initial pose of the new object
207 * @param ref_frame: name of the world model object whose coordinate frame
208 * the pose is expressed in. If nothing is provided here, the default is the
209 * robot “base” frame.
210 *
211 * @return
212 */
213 int frameAdd(const std::string &name, const std::vector<double> &pose,
214 const std::string &ref_name);
215
216 /**
217 * Attaches the child frame to the parent world model object. The relative
218 * transform between the parent and child will be set such that the child
219 * does not move in the world when the attachment occurs.
220 *
221 * The child cannot be “world”, “flange”, “tcp”, or the same as parent.
222 *
223 * This will fail if child or parent is not an existing frame, or this makes
224 * the attachments form a closed chain.
225 *
226 * If being used with the MotionPlus, the parent argument can be the name of
227 * an external axis or axis group.
228 *
229 * @param child: name of the frame to be attached. The name must not be
230 * “world”, “flange”, or “tcp”.
231 * @param parent: name of the object that the child frame will be attached
232 * to.
233 *
234 * @return
235 */
236 int frameAttach(const std::string &child, const std::string &parent);
237
238 /**
239 * Delete all frames that have been added to the world model.
240 *
241 * The “world”, “base”, “flange”, and “tcp” frames cannot be deleted.
242 *
243 * Any frames that are attached to the deleted frames will be attached to
244 * the “world” frame with new frame offsets set such that the detached
245 * frames do not move in the world.
246 *
247 * @return
248 */
250
251 /**
252 * Delete the frame named frame from the world model.
253 *
254 * The “world”, “base”, “flange”, and “tcp” frames cannot be deleted.
255 *
256 * Any frames that are attached to the deleted frame will be attached to the
257 * “world” frame with new frame offsets set such that the detached frame
258 * does not move in the world.
259 *
260 * This command will fail if the frame does not exist.
261 *
262 * @param name: name of the frame to be deleted
263 *
264 * @return
265 */
266 int frameDelete(const std::string &name);
267
268 /**
269 * Changes the placement of the coordinate frame named name to the new
270 * placement given by pose that is defined in the ref_name coordinate frame.
271 *
272 * This will fail if name is “world”, “flange”, “tcp”, or if the frame does
273 * not exist. Note: to move the “tcp” frame, use the set_tcp() command
274 * instead.
275 *
276 * If being used with the MotionPlus, the ref_name argument can be the name
277 * of an external axis or axis group.
278 *
279 * @param name: the name of the frame to move
280 * @param pose: the new placement
281 * @param ref_name: the coordinate frame that pose is expressed in. The
282 * default value is the robot’s “base” frame.
283 *
284 * @return
285 */
286 int frameMove(const std::string &name, const std::vector<double> &pose,
287 const std::string &ref_name);
288
289 /**
290 * Get the pose of the name frame relative to the rel_frame frame but
291 * expressed in the coordinates of the ref_frame frame. If ref_frame is not
292 * provided, then this returns the pose of the name frame relative to and
293 * expressed in the same frame as rel_frame.
294 *
295 * This will fail if any arguments are not an existing frame.
296 *
297 * If being used with MotionPlus, all three arguments can also be the names
298 * of external axes or axis groups.
299 *
300 * @param name: name of the frame to query.
301 * @param rel_frame: short for “relative frame” is the frame where the pose
302 * is computed relative to
303 * @param ref_frame: short for “reference frame” is the frame to express the
304 * coordinates of resulting relative pose in. If this is not provided, then
305 * it will default to match the value of rel_frame.
306 *
307 * @return The pose of the frame expressed in the ref_frame coordinates.
308 */
309 std::vector<double> frameGetPose(const std::string &name,
310 const std::string &rel_frame,
311 const std::string &ref_frame);
312
313 /**
314 * Convert pose from from_frame to to_frame.
315 *
316 * This will fail if either coordinate system argument is not an existing
317 * frame.
318 *
319 * If being used with MotionPlus, all three arguments can also be the names
320 * of external axes or axis groups.
321 *
322 * @param pose: pose to be converted
323 * @param from_frame: name of reference frame at origin of old coordinate
324 * system
325 * @param to_frame: name of reference frame at origin of new coordinate
326 * system
327 *
328 * @return Value of pose expressed in the coordinates of to_frame.
329 */
330 std::vector<double> frameConvertPose(const std::vector<double> &pose,
331 const std::string &from_frame,
332 const std::string &to_frame);
333
334 /**
335 * Queries for the existence of a frame by the given name.
336 *
337 * @param name: name of the frame to be queried.
338 *
339 * @return Returns true if there is a frame by the given name, false if not.
340 */
341 bool frameExist(const std::string &name);
342
343 /**
344 * Get the parent of the frame named name in the world model.
345 *
346 * If the frame is not attached to another frame, then “world” is the
347 * parent.
348 *
349 * @return name: the frame being queried
350 *
351 * @return name of the parent as a string
352 */
353 std::string frameGetParent(const std::string &name);
354
355 /**
356 * Returns a list of immediate child object frame names. Parent-child
357 * relationships are defined by wold model attachments. If being used with
358 * MotionPlus, the child objects may also be an axis group or an axis.
359 *
360 * @param name: the name of the parent object.
361 *
362 * @return a list of immediate child object frame names
363 */
364 std::vector<std::string> frameGetChildren(const std::string &name);
365
366 /**
367 * Adds a new axis group with the given name to the world model. It is
368 * placed at the given pose in the reference coordinate frame defined by
369 * ref_frame.
370 *
371 * An axis group can only be attached to the world coordinate frame.
372 *
373 * Each axis group has a coordinate frame attached to its base, which can be
374 * used as an argument to other world model functions by referring the name
375 * of the group.
376 *
377 * At most 6 axis groups can be added to the world model.
378 *
379 * @param name: (string) Name of the axis group to add. The name cannot be
380 * an empty string. Names used by world model objects (e.g., frame, axis
381 * group, axis, etc.) must be unique.
382 *
383 * @param pose: (pose) Pose of the axis group’s base, in the reference
384 * coordinate frame.
385 *
386 * @param ref_frame (optional): (string) Name of the reference coordinate
387 * frame that pose is defined in. This can be any world model entity with a
388 * coordinate system (e.g., frame, axis group, axis, etc.). The default
389 * value "base" refers to the robot’s base frame.
390 *
391 * @return
392 */
393 int axisGroupAdd(const std::string &name, const std::vector<double> &pose,
394 const std::string &ref_frame);
395
396 /**
397 * Deletes the axis group with the given name from the world model.
398 *
399 * All attached axes are also disabled (if live) and deleted.
400 *
401 * This function will fail, if this axis group is under control by another
402 * URScript function.
403 *
404 * @param name: (string) Name of the axis group to delete. Axis group with
405 * such name must exist.
406 *
407 * @return
408 */
409 int axisGroupDelete(const std::string &name);
410
411 /**
412 * Adds an external axis with the given name to the axis group named
413 * group_name. The axis is attached at the given pose in the reference
414 * coordinate frame defined by parent when it axis position is 0. The type,
415 * max velocity, max acceleration, position limits, and index of this axis
416 * are defined by type, v_limit, a_limit, q_limits, and axis_index,
417 * respectively.
418 *
419 * The pose parameter is typically obtained from a calibration process when
420 * the external axis is commissioned. See here for a guide on a basic
421 * routine for calibrating a single rotary axis.
422 *
423 * This function will fail, if this axis group is under control of another
424 * URScript function.
425 * This function will fail, if the kinematic chain created by the attachment
426 * forms a closed chain.
427 *
428 * @param group_name: (string) Name of the axis group this new axis is added
429 * to. The axis group would have been created using axis_group_add(). Axis
430 * group with such name must exist.
431 *
432 * @param name: (string) Name of the new axis. The name cannot be an empty
433 * string. Names used by world model objects (e.g., frame, axis group, axis,
434 * etc.) must be unique.
435 *
436 * @param parent: (string) Name of the parent axis. If it’s empty or the
437 * same as group_name, the new axis will be attached to the base of the axis
438 * group. Axis with such name must exist in the axis group.
439 *
440 * @param pose: (pose) the zero-position pose, in the parent coordinate
441 * frame, this axis will be placed and attached to. This is the pose the
442 * axis will be (relative to its parent) when its axis position is 0. If
443 * type is 0 (rotary), then the z axis of the frame corresponds to the axis
444 * of rotation. If type is 1 (linear), then the z axis is the axis of
445 * translation.
446 */
447 int axisGroupAddAxis(const std::string &group_name, const std::string &name,
448 const std::string &parent,
449 const std::vector<double> &pose);
450
451 /**
452 * Updates the corresponding properties of axis with name. The pose
453 * parameter is typically obtained from a calibration process when the
454 * external axis is commissioned. See here for a guide on a basic routine
455 * for calibrating a single rotary axis.
456 *
457 * This function will fail, if the axis group the axis attached to is
458 * already being controlled by another URScript command.
459 * This function will fail, if any attached axis of the axis group is live
460 * and enabled.
461 *
462 * @param name: (string) Name of the axis to update. Axis with such name
463 * must exist.
464 *
465 * @param pose (optional): (pose) New zero-position pose, in the coordinate
466 * frame of the parent axis (or axis group), of the axis. This is the pose
467 * of the axis when its axis position is 0.
468 */
469 int axisGroupUpdateAxis(const std::string &name,
470 const std::vector<double> &pose);
471
472 /**
473 * Returns the index of the axis with given axis_name in the RTDE target
474 * positions and actual positions arrays.
475 *
476 * @param axis_name: (string) Name of the axis in query.
477 * Axis with such name must exist.
478 *
479 * @return integer: Index of the axis in the RTDE target positions and
480 * actual positions arrays.
481 */
482 int axisGroupGetAxisIndex(const std::string &name);
483
484 /**
485 * Returns the name of the axis with the given axis_index.
486 *
487 * @param axis_index: (integer) Index of the axis in query.
488 * Axis with such index must exist.
489 *
490 * @eturn string: Name of the axis.
491 */
492 std::string axisGroupGetAxisName(int index);
493
494 /**
495 * Returns the current target positions of the axis group with group_name.
496 * If group_name is not provided, the target positions of all external axes
497 * will be returned.
498 *
499 * This function will fail, if the external axis bus is disabled.
500 *
501 * @param group_name (optional): (string) Name of the axis group in query.
502 * Axis group with such name must REALLY exist.
503 *
504 * @return Double[]: Target positions of the involved axes, in the order of
505 * their external axis indices.
506 */
507 std::vector<double> axisGroupGetTargetPositions(
508 const std::string &group_name);
509
510 /**
511 * Returns the current actual positions of the axis group with group_name.
512 * If group_name is not provided, the actual positions of all external axes
513 * will be returned.
514 *
515 * This function will fail, if the external axis bus is disabled.
516 *
517 * @param group_name (optional): (string) Name of the axis group in query.
518 * Axis group with such name must exist.
519 *
520 * @return Double[]: Actual positions of the involved axes, in the order of
521 * their external axis indices.
522 */
523 std::vector<double> axisGroupGetActualPositions(
524 const std::string &group_name);
525
526 /**
527 * Shifts the target and actual positions of the axis group group_name by
528 * the given offset.
529 *
530 * This is a software shift that happens in the controller only, it does not
531 * affect external axis drives. The shift is also applied to any streamed
532 * target and actual positions published on RTDE.
533 *
534 * @param group_name: (string) Name of the axis group to apply the offset
535 * positions to. Axis group with such name must exist.
536 *
537 * @param offset: (float[]) Offsets that the target and actual positions
538 * should be shifted by. The size of offset must match the number of axes
539 * attached to the given group.
540 *
541 * @return
542 */
543 int axisGroupOffsetPositions(const std::string &group_name,
544 const std::vector<double> &offset);
545
546 /**
547 * Moves the axes of axis group named group_name to new positions q, using a
548 * trapezoidal velocity profile. Factor a specifying the percentage of the
549 * max profile accelerations out of the acceleration limits of each axes.
550 * Factor v specifying the percentage of the max profile velocities out of
551 * the velocity limits of each axes.
552 *
553 * The actual accelerations and velocities are determined by the most
554 * constraining axis, so that all the axes complete the acceleration,
555 * cruise, and deceleration phases at the same time.
556 *
557 * @param group_name: (string) Name of the axis group to move.
558 * Axis group with such name must exist.
559 *
560 * @param q: (float[]) Target positions in rad (rotary) or in m (linear). If
561 * the target exceeds the position limits, then it is set to the nearest
562 * limit. The involved axes are ordered increasingly by their axis indices.
563 * The size of q must match the number of axes attached to the given group.
564 *
565 * @param a: (float) Factor specifying the max accelerations of this move
566 * out of the acceleration limits. a must be in range of (0,1].
567 *
568 * @param v: (float) Factor specifying the max velocities of this move out
569 * of the velocity limits. v must be in range of (0,1].
570 *
571 * Return: n/a
572 */
573 int axisGroupMoveJoint(const std::string &group_name,
574 const std::vector<double> &q, double a, double v);
575
576 /**
577 * Accelerates the axes of axis group named group_name up to the target
578 * velocities qd. Factor a specifying the percentage of the max
579 * accelerations out of the acceleration limits of each axes. The function
580 * will run for a period of t seconds.
581 *
582 * @param group_name: (string) Name of the external axis group to control.
583 * Axis group with such name must exist.
584 *
585 * @param qd: (float[]) Target velocities for the axes in the axis group. If
586 * the target exceeds the velocity limits, then it is set to the limit. The
587 * involved axes are ordered increasingly by their axis indices. The size of
588 * qd must match the number of axes attached to the given group.
589 *
590 * @param a: (float) Factor specifying the max accelerations of this move
591 * out of the acceleration limits. a must be in range of (0,1].
592 *
593 * @param t (optional): (float) Duration in seconds before the function
594 * returns. If t < 0, then the function will return when the target
595 * velocities are reached. if t ≥ 0, then the function will return after
596 * this duration, regardless of what the achieved axes velocities are.
597 */
598 int axisGroupSpeedJoint(const std::string &group_name,
599 const std::vector<double> &qd, double a, double t);
600
601protected:
602 void *d_;
603};
604
605using SyncMovePtr = std::shared_ptr<SyncMove>;
606} // namespace common_interface
607} // namespace arcs
608#endif // AUBO_SDK_SYNC_MOVE_INTERFACE_H
int axisGroupSpeedJoint(const std::string &group_name, const std::vector< double > &qd, double a, double t)
Accelerates the axes of axis group named group_name up to the target velocities qd.
int frameAttach(const std::string &child, const std::string &parent)
Attaches the child frame to the parent world model object.
std::vector< double > frameConvertPose(const std::vector< double > &pose, const std::string &from_frame, const std::string &to_frame)
Convert pose from from_frame to to_frame.
std::string axisGroupGetAxisName(int index)
Returns the name of the axis with the given axis_index.
std::string frameGetParent(const std::string &name)
Get the parent of the frame named name in the world model.
bool frameExist(const std::string &name)
Queries for the existence of a frame by the given name.
int frameDelete(const std::string &name)
Delete the frame named frame from the world model.
int frameMove(const std::string &name, const std::vector< double > &pose, const std::string &ref_name)
Changes the placement of the coordinate frame named name to the new placement given by pose that is d...
int axisGroupMoveJoint(const std::string &group_name, const std::vector< double > &q, double a, double v)
Moves the axes of axis group named group_name to new positions q, using a trapezoidal velocity profil...
int axisGroupDelete(const std::string &name)
Deletes the axis group with the given name from the world model.
std::vector< double > frameGetPose(const std::string &name, const std::string &rel_frame, const std::string &ref_frame)
Get the pose of the name frame relative to the rel_frame frame but expressed in the coordinates of th...
int syncMoveOn(const std::string &syncident, const TaskSet &taskset)
syncMoveOn is used to start synchronized movement mode.
int axisGroupAdd(const std::string &name, const std::vector< double > &pose, const std::string &ref_frame)
Adds a new axis group with the given name to the world model.
std::vector< double > axisGroupGetTargetPositions(const std::string &group_name)
Returns the current target positions of the axis group with group_name.
int waitSyncTasks(const std::string &syncident, const TaskSet &taskset)
waitSyncTasks used to synchronize several task programs at a special point in the program.
bool isSyncMoveOn()
isSyncMoveOn is used to tell if the mechanical unit group is in synchron- ized movement mode.
int axisGroupOffsetPositions(const std::string &group_name, const std::vector< double > &offset)
Shifts the target and actual positions of the axis group group_name by the given offset.
int syncMoveOff(const std::string &syncident)
syncMoveOff is used to end synchronized movement mode.
int axisGroupUpdateAxis(const std::string &name, const std::vector< double > &pose)
Updates the corresponding properties of axis with name.
int frameDeleteAll()
Delete all frames that have been added to the world model.
std::vector< double > axisGroupGetActualPositions(const std::string &group_name)
Returns the current actual positions of the axis group with group_name.
int axisGroupGetAxisIndex(const std::string &name)
Returns the index of the axis with given axis_name in the RTDE target positions and actual positions ...
bool syncMoveSegment(int id)
设置同步路径段的ID In synchronized movements mode, all or none of the simultaneous move instructions must be ...
int frameAdd(const std::string &name, const std::vector< double > &pose, const std::string &ref_name)
Add a frame with the name name initialized at the specified pose expressed in the ref_frame coordinat...
int axisGroupAddAxis(const std::string &group_name, const std::string &name, const std::string &parent, const std::vector< double > &pose)
Adds an external axis with the given name to the axis group named group_name.
std::vector< std::string > frameGetChildren(const std::string &name)
Returns a list of immediate child object frame names.
int syncMoveUndo()
syncMoveUndo is used to turn off synchronized movements, even if not all the other task programs exec...
std::shared_ptr< SyncMove > SyncMovePtr
Definition sync_move.h:605
std::unordered_set< std::string > TaskSet
Definition sync_move.h:36