RoFI Module Descriptors

Grid system gives an idea about all possible shapes of the RoFI modules and also provides examples of use cases for shape other than the universal module. To allow interaction of different modules and also to build a formal description of RoFI systems, there is a need to establish a way to describe various modules and their capabilities. There are two aspects to consider:

  • modules have various shapes and can perform various movements and
  • modules feature various sensors and special functions.

RoFI descriptors cover both of these aspects. Descriptors can be exchanged by the modules when they connect to build a notion of the system which is essential for any reconfiguration. We distinguish two types of descriptors:

  • shape descriptor (\(\mathcal{D}_S\)) and
  • a capability descriptor (\(\mathcal{D}_C\)).

We define the shape descriptor \(\mathcal{D}_S\) as a tuple \((S, B, E, t, d)\) where:

  • \(S\) is a finite set of shoes,
  • \(B\) is a finite set of bodies,
  • \(E\) is a finite set of edges, formally \(E \subset (S\cup B)^2\) such that there are no symmetric edges and self-loops,
  • \(t\) is a function returning a transformation function joint transformation matrix for a given edge, formally: \(t: E\rightarrow(\mathbb{R}\rightarrow\mathbb{R}^{4\times4})\),
  • \(d\) is a function giving a set of dock present on each shoe. Formally, \(d: S\rightarrow 2^\mathcal{P}\).

Intuitively, \(\mathcal{D}_D\) is an oriented graph, with two types of nodes – shoes and bodies, where edges are labeled by functions returning 3D transformation matrices. Note that the graph can be cyclic; however, for each pair of vertices, there is at most one edge. When drawing descriptors, we denote shoes as circles, bodies as squares and we write the functions on edges. See an example of such a descriptor for a universal module:

Shape descriptor for a universal module. Function $$\text{rot}_A(x)$$ returns a 3D rotation matrix along axis $$A$$ and $$x$$ radians, $$\text{trans}_A(x)$$ returns a 3D translation matrix in direction of axis $$A$$ and distance $$x$$ units, $$\text{sym}$$ returns a matrix flipping direction of all axes. $$G$$ denotes the size of the grid.

Each edge with a non-constant function represents a joint. Further in the text we will abuse the notation a little and name the edges, arguments of the corresponding transformation functions and corresponding joints by the same name – usually by a small Greek letter. The type of the object represented by the name should be obvious from the context. For example, we name the edge \((\textsf{shoe A}, \textsf{body A})\) as \(\alpha\), the same as the corresponding joint and the argument of rotation. Also, for practical reasons we consider all descriptors to have unique naming of shoes and bodies (easily achieved by prefixing the name by module name); however, in the examples, we omit the prefix to make them simple.

Given the joint positions, the shape descriptors allow for easy computation of shoe positions in the space. The path in a descriptor between two shoes defines a transformation matrix representing the relative the position of the two shoes. However, finding such a path might not always be possible due to the orientation of the edges. By defining a function flip for labeling reversed edges such that:

\[\text{flip}(\text{f})(t) = (\text{f}(t))^{-1}, \text{ for every } t \text{ in the range of a corresponding joint}\]

an orientation of an edge can be reversed. Once reversed, the edge is labeled by a function returning an inverse transformation compared to the original label. Therefore, there is a path between every two shoes in the module (the module must be weakly connected by definition).

It is possible to extend the idea of module descriptors further to find positions of the connectors. A descriptor of a single shoe can be constructed in the same manner as a descriptor for any other module (figure below). The transformations for connectors are constant functions. The coordinate system is transformed such that the Z-axis is perpendicular to the connectors, and the X-axis is coincident with the orientation vector. We do not consider the connectors to be a part of the shape descriptor as they are the same for each shoe and therefore for the sake of simplicity, they can be omitted. However, we find them useful to consider the following construction.

Shape descriptor of a shoe. Triangles represent the connectors.

So far, we considered descriptors only in the context of a single module. We can further extend the method to multiple modules. Two descriptors can be joined by adding edges between connected connectors. The relative position of any two shoes in the system can be computed using this graph. The construction of the connection is illustrated in figure below. We will refer to this operation as a shape descriptor union.

Illustration of the connection of two module descriptors. Each module has a shoe (shoe A, shoe B) with connectors they use to connect to each other. To connect the modules, a new edge is constructed between the connectors. The parameter~$$o$$ is the mutual orientation of the connectors. Note that it does not depend on the edge orientation as the mutual orientation is symmetric we showed in the description of the grid system

To allow algorithms to take various sensors present on modules into account, a simple sensor enumeration is not enough as the position of the sensor matters. Therefore, the RoFI platform allows sensors to be placed on faces of the shoe. The faces are named as the corresponding connectors (see grid system for more details). The capability descriptor \(\mathcal{D}_C\) is a function \(\mathcal{D}_C: S\times\mathcal{P} \rightarrow 2^{I}\), where \(I\) is a set of all possible sensors. Intuitively, \(\mathcal{D}_C\) is a labeling of individual connectors on the module assigning sensors to them. The set of all sensors \(I\) contains sensor-dependent descriptions.

RoFI Configurations

So far, we gave means to describe a single module. To ease and unify the development of a firmware and reconfiguration algorithms, we also give means to describe a system consisting of the RoFI modules.

First, there is a globally unique ID (GUID) assigned to each instance of a module. GUID is a 128-bit number to prevent GUID exhaustion. Second, when talking about RoFI systems, we distinguish two terms:

  • a topology (\(\mathcal{T}\)) and
  • a configuration (\(\mathcal{C}\)):

Topology

Intuitively, topology describes the connection between the modules in a system and does not take in account the physical layout of the modules. Formally, we define a topology \(\mathcal{T}\) as a tuple \((M, E, d)\):

  • \(M\) is a finite set of modules represented by GUID, formally \(M\subset G\), where \(G\) is a set of all GUIDs.
  • \(E\) is a finite set of undirected edges (connections) between the modules. Note that the undirected edge forces that both modules have to actively participate in a connection.
  • \(d\) is a labeling function for edges. The function assigns a set of labels to an edge. The labels are tuples in the form \((o, d_a, d_b)\), where \(o\in\mathcal{O}\) is a mutual orientation of connected connectors, \(d_a\) and \(d_b\) from modules in the edge. The order of connectors in the tuple is given lexicographically (first by module GUID, second by the dock name). Therefore the labels are canonical.
Example of a topology (left) for a system of the universal modules (right). Connections are denoted by gray rectangles

Configuration

Intuitively, a configuration is a topology with the module joints positions. Formally, a configuration \(\mathcal{C}\) is a pair \((T, L)\):

  • \(T\) is a topology and
  • \(L: M \rightarrow \text{A} \rightarrow \mathbb{R}\), where \(A\) is a union of axes from all module types, is a function assigning values to all joints in the system.

Valid Configurations

We define a model of a topology \(\mathcal{M}_\mathcal{T}\) as a descriptor obtained by the following procedure:

  • rename uniquely descriptors of each module instance in the system, then
  • select an arbitrary one and
  • unite the selected descriptor consequently with the other modules using a module union.

We define a model \(\mathcal{M}_\mathcal{C}\) of a configuration \(C=(T, L)\) as a model of \(T\), where labels were evaluated according to \(L\), i.e., labels are constant values. Configuration \(C\) is realizable iff:

  • for all pairs of shoes, all paths between them in the model of \(C\) yield the same relative position and
  • no two shoes in the model of \(C\) intersect.

There are no constraints on the topology; therefore, we consider every topology valid. However, for some topologies there exists no realizable configuration. Given the terminology, there are few aspects to note:

  • To move the robot means to change a configuration.
  • A change in a configuration can also mean a change in a topology.
  • A change in a topology always means a change of a configuration.