forked from corlab/dslzoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
system-deployment-phase.html
202 lines (182 loc) · 13.6 KB
/
system-deployment-phase.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="images/favicon.png">
<title>System Deployment – Robotics DSL Zoo</title>
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="sortable/bootstrap-sortable.css">
<link rel="stylesheet" type="text/css" href="dist/css/custom.css">
<script language="javascript" type="text/javascript" src="flot/jquery.js"></script>
<script language="javascript" type="text/javascript" src="flot/jquery.flot.js"></script>
<script language="javascript" type="text/javascript" src="flot/jquery.flot.categories.js"></script>
<script type="text/javascript" src="dist/d3-cloud/lib/d3/d3.js"></script>
<script type="text/javascript" src="dist/d3-cloud/d3.layout.cloud.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</head>
<body><nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="./index.html">Robotics DSL Zoo</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./subdomains.html">Subdomains</a></li>
<li><a href="./architectures-and-programming-disciplines.html">A&P Disciplines</a></li>
<li class="active"><a href="./phases.html">Development Phases</a></li>
<li><a href="./all.html">Index</a></li>
<li><a href="./contribute.html">Contribute</a></li>
<li><a href="http://www.dslrob.org">DSLRob</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="starter-template">
<h1>Robotics DSL Zoo</h1>
<h2>Development Phase „System Deployment“</h2>
<p>In the System Deployment phase, top-level component(s) are packaged into a complete application system which defines a mapping of components and composites to computational units. Furthermore, features and procedures for system launch management are developed.</p>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['phase', '#publications'], ['Kinematics', 0], ['Dynamics', 0], ['Mechanisms and Actuation', 0], ['Sensing and Estimation', 0], ['Motion Planning', 0], ['Motion Control', 1], ['Force Control', 0], ['Architectures and Programming', 12], ['Reasoning Methods', 1], ]);
var options = {
title: '#publications per subdomain',
legend: { position: 'none' },
};
var chart_disc = new google.visualization.ColumnChart(document.getElementById('chart_div_subd'));
chart_disc.draw(data, options);
}
</script>
<div id="chart_div_subd" style="width: 550px; height: 200px; float:left;"></div><script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['year', '#publications'], ['1984', 0], ['1985', 0], ['1986', 0], ['1987', 0], ['1988', 0], ['1989', 0], ['1990', 0], ['1991', 0], ['1992', 0], ['1993', 0], ['1994', 0], ['1995', 0], ['1996', 0], ['1997', 0], ['1998', 1], ['1999', 0], ['2000', 0], ['2001', 0], ['2002', 1], ['2003', 0], ['2004', 0], ['2005', 0], ['2006', 1], ['2007', 0], ['2008', 0], ['2009', 0], ['2010', 2], ['2011', 0], ['2012', 3], ['2013', 1], ['2014', 3], ['2015', 0], ['2016', 0], ]);
var options = {
title: '#publications per year',
legend: { position: 'none' },
};
var chart_disc = new google.visualization.ColumnChart(document.getElementById('chart_div_year'));
chart_disc.draw(data, options);
}
</script>
<div id="chart_div_year" style="width: 550px; height: 200px; float:left;"></div><h3>Motion Control</h3>
<p>Motion Control addresses the dynamical model of robotic manipulators. This includes different controller approaches, such as independent-joint, PID as well as torque control.
This subdomain corresponds to Part A, Chapter 6 in the Handbook of Robotics.</p>
<table class="sortable">
<thead><tr><th>Key</th><th>Title</th><th>Authors</th><th width="10%">Year</th><th>Formalism</th></tr></thead><tbody><tr style="border-top:1px solid #000;">
<td><a href="#morelli2014control" id="morelli2014control">morelli2014control<a/></td><td style="font-weight:bold;">Control and Scheduling Co-design for a Simulated Quadcopter Robot: A Model-Driven Approach</td><td>Morelli, Matteo and Di Natale, Marco</td><td>2014</td>
<td>ecore</td>
</tr>
</tbody></table><br />
<h3>Architectures and Programming</h3>
<p>Architectures and Programming refers to the way a robotic system is designed on the software-level. It can be divided into architectural structure and architectural style.
The structure is represented by how the system is split up into subsystems and how they interact with each other.
The style however addresses the underlying computational concepts.
This subdomain corresponds to Part A, Chapter 8 in the Handbook of Robotics.
<br />Due to its large number of entries, the Architectures and Programming subdomain is further subdivided into its disciplines, see <a href="architectures-and-programming-disciplines.html">Architectures and Programming Disciplines</a>.</p>
<table class="sortable">
<thead><tr><th>Key</th><th>Title</th><th>Authors</th><th width="10%">Year</th><th>Formalism</th></tr></thead><tbody><tr style="border-top:1px solid #000;">
<td><a href="#alonso2010v3cmm" id="alonso2010v3cmm">alonso2010v3cmm<a/></td><td style="font-weight:bold;">V3cmm: A 3-view component meta-model for model-driven robotic software development</td><td>Alonso, Diego and Vicente-Chicote, Cristina and Ortiz, Francisco and Pastor, Juan and Alvarez, Barbara</td><td>2010</td>
<td>ecore</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#bouzouia1998three" id="bouzouia1998three">bouzouia1998three<a/></td><td style="font-weight:bold;">A three-layer workcell control architecture design</td><td>Bouzouia, Brahim and Guerroumi, Fawzi and Boukhezar, Abdelmalek</td><td>1998</td>
<td>unknown</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#datta2012robostudio" id="datta2012robostudio">datta2012robostudio<a/></td><td style="font-weight:bold;">Robostudio: A visual programming environment for rapid authoring and customization of complex services on a personal service robot</td><td>Datta, Chandan and Jayawardena, Chandimal and Kuo, I Han and MacDonald, Bruce A</td><td>2012</td>
<td>unknown</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#dhouib2012robotml" id="dhouib2012robotml">dhouib2012robotml<a/></td><td style="font-weight:bold;">Robotml, a domain-specific language to design, simulate and deploy robotic applications</td><td>Dhouib, Saadia and Kchir, Selma and Stinckwich, Serge and Ziadi, Tewfik and Ziane, Mikal</td><td>2012</td>
<td>UML/MOF</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#gobillot2014modeling" id="gobillot2014modeling">gobillot2014modeling<a/></td><td style="font-weight:bold;">A Modeling Framework for Software Architecture Specification and Validation</td><td>Gobillot, Nicolas and Lesire, Charles and Doose, David</td><td>2014</td>
<td>unknown</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#hochgeschwender2013model" id="hochgeschwender2013model">hochgeschwender2013model<a/></td><td style="font-weight:bold;">A model-based approach to software deployment in robotics</td><td>Hochgeschwender, Nico and Gherardi, Luca and Shakhirmardanov, Azamat and Kraetzschmar, Gerhard K and Brugali, Davide and Bruyninckx, Herman</td><td>2013</td>
<td>ecore</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#lesire2012mauve" id="lesire2012mauve">lesire2012mauve<a/></td><td style="font-weight:bold;">Mauve: a Component-based Modeling Framework for Real-time Analysis of Robotic Applications.</td><td>Lesire, Charles and Doose, David and Cass\ e, Hug</td><td>2012</td>
<td>ecore</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#loetzsch2006xabsl" id="loetzsch2006xabsl">loetzsch2006xabsl<a/></td><td style="font-weight:bold;">XABSL-a pragmatic approach to behavior engineering</td><td>Loetzsch, Martin and Risler, Max and Jungel, Matthias</td><td>2006</td>
<td>(E)BNF</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#mallet2002specification" id="mallet2002specification">mallet2002specification<a/></td><td style="font-weight:bold;">A specification of generic robotics software components: future evolutions of G en o M in the Orocos context</td><td>Mallet, Anthony and Fleury, Sara and Bruyninckx, Herman</td><td>2002</td>
<td>(E)BNF</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#morelli2014control" id="morelli2014control">morelli2014control<a/></td><td style="font-weight:bold;">Control and Scheduling Co-design for a Simulated Quadcopter Robot: A Model-Driven Approach</td><td>Morelli, Matteo and Di Natale, Marco</td><td>2014</td>
<td>ecore</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#ortiz2014component" id="ortiz2014component">ortiz2014component<a/></td><td style="font-weight:bold;">A Component-Based Meta-Model and Framework in the Model Driven Toolchain C-Forge</td><td>Ortiz, Francisco J and Alonso, Diego and Rosique, Francisca and S\ anchez-Ledesma, Francisco and Pastor, Juan A</td><td>2014</td>
<td>unknown</td>
</tr>
<tr style="border-top:1px solid #000;">
<td><a href="#schlegel2010design" id="schlegel2010design">schlegel2010design<a/></td><td style="font-weight:bold;">Design abstraction and processes in robotics: From code-driven to model-driven engineering</td><td>Schlegel, Christian and Steck, Andreas and Brugali, Davide and Knoll, Alois</td><td>2010</td>
<td>UML/MOF</td>
</tr>
</tbody></table><br />
<h3>Reasoning Methods</h3>
<p>Reasoning Methods focuse on symbol-based reasoning and knowledge representation.
It covers logic- as well as probability-based approaches.
Furthermore, this category also addresses learning, such as inductive logic learning, neuronal networks and reinforcement learning.
This subdomain corresponds to Part A, Chapter 9 in the Handbook of Robotics.</p>
<table class="sortable">
<thead><tr><th>Key</th><th>Title</th><th>Authors</th><th width="10%">Year</th><th>Formalism</th></tr></thead><tbody><tr style="border-top:1px solid #000;">
<td><a href="#gobillot2014modeling" id="gobillot2014modeling">gobillot2014modeling<a/></td><td style="font-weight:bold;">A Modeling Framework for Software Architecture Specification and Validation</td><td>Gobillot, Nicolas and Lesire, Charles and Doose, David</td><td>2014</td>
<td>unknown</td>
</tr>
</tbody></table><br />
</div>
</div>
<div class="container">
<br />
<hr />
<p style="font-size:85%; color:#555;">An important DSL is missing? Here is how to <a href="./contribute.html">contribute</a>! When using content of the Robotics DSL Zoo or referring to it, pleace consider citing our survey paper:
<pre>
@article{nordmann2016survey,
author = {Nordmann, Arne and Hochgeschwender, Nico and Wigand, Dennis Leroy and Wrede, Sebastian},
journal = {Journal of Software Engineering in Robotics (JOSER)},
number = {1},
pages = {75--99},
title = {{A Survey on Domain-Specific Modeling and Languages in Robotics}},
volume = {7},
year = {2016},
}
</pre>
<br />
<a style="font-size:85%; color:#555;" title="A Survey on Domain-Specific Modeling and Languages in Robotics" href="http://joser.unibg.it/index.php?journal=joser&page=article&op=view&path%5B%5D=100">A. Nordmann, N. Hochgeschwender, D. Wigand and S. Wrede, “A Survey on Domain-Specific Modeling Languages in Robotics”, Journal of Software Engineering for Robotics (JOSER), 2016</a>
</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
<script src="sortable/moment.min.js"></script>
<script src="sortable/bootstrap-sortable.js"></script>
</body>
</html>