[Notes] Reading Notes on [Adaptive Robot Control – mxautomation J. Braumann 2015]
Reading sources:
1.Johannes Braumann, Sigrid Brell-Cokcan, Adaptive Robot Control (ARC )
Note:
building upon an as of yet unnamed interface from KUKA that utilizes
generic UDP packets to communicate with and control KUKA robots.
use every network-capable device to stream info to the robot and process the return data
While the problem of Windows not being a real-time capable operating system persists, the integrated buffer
give us a much larger leeway(余地) so that brief communication issues do not have an impact on the robot’s tool
path or the stability of the communication. However, the buffer also prohibits any hard-real-time applications, i.e. processes
where millisecond reaction times are needed.
kuka|PRC core solver builds its mathematical and geometric calculations upon
OpenNURBS.
ARC does not have to offer any simulation capabilities by itself, but only accepts data,
interfaces with the robot, and visualizes the position data that gets sent back from
the robot - keeping the software slim and highly performant while allowing the user
to simulate other projects in KUKA|PRC without disturbing the dataflow.
4 interaction strategies:
1.Default Mode
This is the most basic mode whose purpose is simply to transfer commands to the robot.
Once commands are connected to the ARC component they are immediately processed and
sent to the robot. While the robot is already moving, additionally commands are streamed until
the interpreter’s buffer has reached its defined capacity. From then on, executed commands are
culled(剔除) from the buffer and replaced with new commands.(溢出的水就扔掉不要了) If the data
from the ARC components is changed, it immediately wipes the robot’s buffer and starts streaming
new commands.
Adaptive Mode:
In comparison with default mode, adaptive mode users a much shallower buffer that contains only the
bare minimum of commands to cover brief lags(落后时间) in the Ethernet communication. While usually robot
programs only allow the user to set a speed override, adaptive mode attempts to keep the entire robot job
completely parametric for as long as possible.(What does it mean?) Only when a command is committed to
the robot ‘s buffer it cannot be changed anymore. This allow us to incorporate sensoric feedback to continuously
inform the fabrication process and all its parameters.
Iterative mode:
In iterative mode, the ARC behaves mostly like default mode with a similarly larger buffer, but does not accept any
new commands until the robot signals that it is ready for the next iteration, i.e. when the previous commands have
been processed and an optional timeout has passed. The main applications is therefore to switch between fabrication
and evaluation. Essentially, the user only has to define a single operation such as “pick up here and drop off there”
and a set of global rules regarding the placement. Then the robot performs an operation, sensor data – e.g. from a 3D
camera – is processed, and the next iteration adjusted according to the captured data.
Real-time mode:
Similar to the adaptive mode, real-time mode uses a shallow buffer to reduce the reaction time to a minimum within ARC’s
framework. However, while adaptive mode works with the entire parametric toolpath, real-time mode generates each command
on the fly by taking the current robot position, calculating the diff to the target position and then adjusting it according to the
preset step-values. So if the target, e.g. based on live motion capture data, were to move, with a step size set to 5mm and a
buffer to 5 positions, the robot would continue for 25 mm before reacting to the change.
Problem:
- What’s UDP communication?
[Notes] Reading Notes on [Adaptive Robot Control – mxautomation J. Braumann 2015]的更多相关文章
- Reading Notes of Acceptance Test Engineering Guide
The Acceptance Test Engineering Guide will provide guidance for technology stakeholders (developers, ...
- Codeforces346D. Robot Control
D. Robot Control time limit per test 6 seconds memory limit per test 256 megabytes input standard in ...
- Reading Notes : 180214 计算机的总线结构
读书<计算机组成原理>,百度百科 基本上接触过计算机的人,都多少知道计算机的具体构成,但是真正能讲明白的却说了很多,本节将讲解一下计算机的基本硬件构成和一些基本信息,简单认识,以后再深入了 ...
- Reading Notes : 180215 计算机系统
读书<计算机组成原理>,<鸟哥的Linux私房菜 基础篇>百度百科,内容摘自<计算机组成原理>,<鸟哥的Linux私房菜 基础篇> 计算机系统 在前面几 ...
- Evolutionary Computing: [reading notes]On the Life-Long Learning Capabilities of a NELLI*: A Hyper-Heuristic Optimisation System
resource: On the Life-Long Learning Capabilities of a NELLI*: A Hyper-Heuristic Optimisation System ...
- Effective Objective-C 2.0 Reading Notes
1. Literal Syntax NSString *someString = @"Effective Objective-C 2.0"; NSNumber *someNumbe ...
- today reading notes
paminit manager from upstart to systemd/systemctl;Vivid Vervet + openStack kilo;为容器开发者(OpenStack工作环 ...
- Azure Active Directory document ---reading notes
微软利用本地活动目录 Windows Server Active Directory 进行身份认证管理方面具有丰富的经验,现在这一优势已延伸基于云平台的Azure Active Directory.可 ...
- kafka definitive guide - reading notes
一.认识Kafka 1)什么是sub/pub模型, 发布订阅模型 Publish/subscribe messaging is a pattern that is characterized by ...
随机推荐
- 【mysql元数据库】使用information_schema.tables查询数据库和数据表信息
概述 对于mysql和Infobright等数据库,information_schema数据库中的表都是只读的,不能进行更新.删除和插入等操作,也不能加触发器,因为它们实际只是一个视图,不是基本表,没 ...
- c#调用C++DLL参数对应
//c++:Byte(unsigned char) ---- c#:System.Byte //c++:SHORT(short) ---- ...
- Hadoop学习12-配置集群环境
由于之前虚拟机都是用的桥接方式,有时候没有网络可用,想学习的时候,就狠不方便. 于是研究了一下,希望搭建一个多台虚机组成一个局域网的集群,即host-only方式 1.安装VM,网络选择“host-o ...
- server application error应用错误
本地使用IIS测试ASP脚本网页,结果发现提示[Server Application Error The server has encountered an error while loading a ...
- 3. sort命令
转自:http://www.cnblogs.com/51linux/archive/2012/05/23/2515299.html sort是在Linux里非常常用的一个命令,管排序的,集中精力,五分 ...
- E:in-range伪类选择器与E:out-of-range伪类选择器
E:in-range伪类选择器用来指定当元素的有效值被限定在一段范围之内(通常通过min属性值与max属性值来限定),且实际输入值在该范围内时使用的样式.E:out-of-range伪类选择器用来指定 ...
- pageContext对象的用法
(1) pageContext对象 这个对象代表页面上下文,该对象主要用于访问JSP之间的共享数据. pageContext是PageContext类的实例,使用pageContext可以访问page ...
- Karma 5:集成 Karma 和 Angular2
集成 Karma 和 Angular2 我们需要做很多工作,由于需要使用 TypeScript 进行开发,首先需要正确配置 Typescript ,然后正确配置对 Angular2 的引用.还要创建 ...
- VR全景智慧城市-720全景项目行业应用
VR虚拟现实.VR全景概念已成为科技发展热议的焦点.在这样的市场大环境下,全景智慧城市做为一家对大众创新万众创业和用户体验为理念的VR全景城市化信息搜素平台平地而生成为的VR行业领跑者,致力VR全景V ...
- myeclipse自动排版
myeclipse代码排版方式有两种: 1. ctr+f 实现自动排版: 2. myeclipse->Preference->Java->Editor->Sava Action ...