Просмотр исходного кода

Separated project for the drivetrain.

Lucas Albertins 3 лет назад
Родитель
Сommit
1dd4e57d21

+ 24 - 0
examples/oml/Drivetrain/.fuseki.ttl

@@ -0,0 +1,24 @@
+@prefix fuseki:  <http://jena.apache.org/fuseki#> .
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix tdb:     <http://jena.hpl.hp.com/2008/tdb#> .
+@prefix ja:      <http://jena.hpl.hp.com/2005/11/Assembler#> .
+@prefix :        <#> .
+
+[] rdf:type fuseki:Server .
+
+<#service> rdf:type fuseki:Service ;
+    rdfs:label          "Drivetrain" ;												# Human readable label for dataset
+    fuseki:name         "Drivetrain" ;												# Name of the dataset in the endpoint url
+    fuseki:serviceReadWriteGraphStore "data" ;											# SPARQL Graph store protocol (read and write)
+    fuseki:endpoint 	[ fuseki:operation fuseki:query ;	fuseki:name "sparql"  ] ;	# SPARQL query service
+    fuseki:endpoint 	[ fuseki:operation fuseki:shacl ;	fuseki:name "shacl" ] ;		# SHACL query service
+    fuseki:dataset      <#dataset> .
+
+## In memory TDB with union graph.
+<#dataset> rdf:type   tdb:DatasetTDB ;
+  tdb:location "--mem--" ;
+  # Query timeout on this dataset (1s, 1000 milliseconds)
+  ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "1000" ] ;
+  # Make the default graph be the union of all named graphs.
+  tdb:unionDefaultGraph true .

+ 239 - 0
examples/oml/Drivetrain/build.gradle

@@ -0,0 +1,239 @@
+/* 
+ * The Maven coordinates for the project artifact
+ */
+ext.title = 'Drivetrain'
+description = 'This is an example of a drivetrain'
+group = 'be.ua'
+version = '1.0.0'
+
+/* 
+ * The Gradle plugins 
+ */
+apply plugin: 'maven-publish'
+
+/* 
+ * The Gradle task dependencies 
+ */
+buildscript {
+	repositories {
+		mavenLocal()
+		mavenCentral()
+	}
+	dependencies {
+        classpath 'io.opencaesar.owl:owl-fuseki-gradle:+'
+        classpath 'io.opencaesar.owl:owl-query-gradle:+'
+        classpath 'io.opencaesar.owl:owl-load-gradle:+'
+        classpath 'io.opencaesar.owl:owl-reason-gradle:+'
+        classpath 'io.opencaesar.oml:oml-merge-gradle:+'
+        classpath 'io.opencaesar.adapters:oml2owl-gradle:+'
+	}
+}
+
+/*
+ * Dataset-specific variables
+ */
+ext.dataset = [
+    // Name of dataset (matches one used in .fuseki.ttl file)
+    name: 'Drivetrain',
+    // Root ontology IRI of the dataset
+    rootOntologyIri: 'http://ua.be/drivetrain/description/bundle',
+]
+
+/*
+ * The repositories to look up OML dependencies in
+ */
+repositories {
+    mavenLocal()
+    mavenCentral()
+}
+
+/*
+ * The configuration of OML dependencies
+ */
+configurations {
+    oml
+}
+
+/*
+ * Dependency versions
+ */
+ext { 
+    //coreVersion = '+'
+    metrologyVersion = '+'
+}
+
+/*
+ * The OML dependencies
+ */
+dependencies {
+    //oml "io.opencaesar.ontologies:core-vocabularies:$coreVersion"
+    oml "io.opencaesar.ontologies:metrology-vocabularies:$metrologyVersion"
+    oml "be.ua:SystemDesignOntology2Layers:1.0.0"
+}
+
+/*
+ * A task to extract and merge the OML dependencies
+ */
+task omlDependencies(type:io.opencaesar.oml.merge.OmlMergeTask, group:"oml") {
+    inputZipPaths = configurations.oml.files
+    outputCatalogFolder = file('build/oml')
+}
+
+/*
+ * A task to convert the OML catalog to OWL catalog
+ */
+task omlToOwl(type:io.opencaesar.oml2owl.Oml2OwlTask, group:"oml", dependsOn: omlDependencies) {
+    // OML catalog
+    inputCatalogPath = file('catalog.xml')
+    // OWL catalog
+    outputCatalogPath = file('build/owl/catalog.xml')
+}
+
+/*
+ * A task to run the Openllet reasoner on the OWL catalog
+ */
+task owlReason(type:io.opencaesar.owl.reason.OwlReasonTask, group:"oml", dependsOn: omlToOwl) {
+    // OWL catalog
+    catalogPath = file('build/owl/catalog.xml')
+    // Input ontology IRI to reason on
+    inputOntologyIri = "$dataset.rootOntologyIri".toString()
+    // Entailment statements to generate and the ontologies to persist them in
+    specs = [
+        "$dataset.rootOntologyIri/classes = ALL_SUBCLASS".toString(),
+        "$dataset.rootOntologyIri/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY".toString(),
+        "$dataset.rootOntologyIri/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS".toString()
+    ]
+    // Junit error report
+    reportPath = file('build/reports/reasoning.xml')
+}
+
+/*
+ * Start the headless Fuseki server
+ */
+task startFuseki(type: io.opencaesar.owl.fuseki.StartFusekiTask, group:"oml") {
+    configurationPath = file('.fuseki.ttl')
+    outputFolderPath = file('.fuseki')
+}
+
+/*
+ * Stop the headless Fuseki server
+ */
+task stopFuseki(type: io.opencaesar.owl.fuseki.StopFusekiTask, group:"oml") {
+    outputFolderPath = file('.fuseki')
+}
+
+/*
+ * A task to load an OWL catalog to a Fuseki dataset endpoint
+ */
+task owlLoad(type:io.opencaesar.owl.load.OwlLoadTask, group:"oml", dependsOn: owlReason) {
+    catalogPath = file('build/owl/catalog.xml')
+    endpointURL = "http://localhost:3030/$dataset.name".toString()
+    fileExtensions = ['owl', 'ttl']
+    iris = [
+        "$dataset.rootOntologyIri/classes".toString(),
+        "$dataset.rootOntologyIri/properties".toString(),
+        "$dataset.rootOntologyIri/individuals".toString()
+    ]
+}
+
+/*
+ * A task to run a set of SPARQL queries on a Fuseki dataset endpoint
+ */
+task owlQuery(type:io.opencaesar.owl.query.OwlQueryTask, group:"oml", dependsOn: owlLoad) {
+    endpointURL = "http://localhost:3030/$dataset.name".toString()
+    queryPath = file('src/sparql')
+    resultPath = file('build/results')
+    format = 'json'
+}
+
+/*
+ * A task to build the project, which executes several tasks together
+ */
+task build(group: "oml") {
+    dependsOn owlReason
+}
+
+/*
+ * A task to delete the build artifacts
+ */
+task clean(type: Delete, group: "oml") {
+	delete 'build'
+}
+
+/*
+ * Publish artifact to maven
+ */
+task omlZip(type: Zip, group:"oml") {
+    from file('src/oml')
+    include "**/*.oml"
+    destinationDirectory = file('build/libs')
+    archiveBaseName = project.name
+    archiveVersion = project.version
+}
+
+def pomConfig = {
+    licenses {
+        license {
+            name "The Apache Software License, Version 2.0"
+            url "http://www.apache.org/licenses/LICENSE-2.0.txt"
+            distribution "repo"
+        }
+    }
+    developers {
+        developer {
+            id "melaasar"
+            name "Maged Elaasar"
+            email "melaasar@gmail.com"
+        }
+    }
+    scm {
+        url 'https://github.com/opencaesar/'+rootProject.name
+    }
+}
+
+publishing {
+    publications {
+        maven(MavenPublication) {
+            groupId project.group
+            artifactId project.name
+            version project.version
+            artifact omlZip
+            pom {
+                packaging = 'zip'
+                withXml {
+                    def root = asNode()
+                    if (configurations.find { it.name == 'oml' }) {
+                        def dependencies = root.appendNode('dependencies')
+                        configurations.oml.resolvedConfiguration.resolvedArtifacts.each {
+                            def dependency = dependencies.appendNode('dependency')
+                            dependency.appendNode('groupId', it.moduleVersion.id.group)
+                            dependency.appendNode('artifactId', it.moduleVersion.id.name)
+                            dependency.appendNode('version', it.moduleVersion.id.version)
+                            if (it.classifier != null) {
+                                dependency.appendNode('classifier', it.classifier)
+                                dependency.appendNode('type', it.extension)
+                            }
+                        }
+                    }
+                    root.appendNode('name', project.ext.title)
+                    root.appendNode('description', project.description)
+                    root.appendNode('url', 'https://github.com/opencaesar/'+rootProject.name)
+                    root.children().last() + pomConfig
+                }
+            }
+        }
+    }
+}
+
+tasks.named('wrapper') {
+   gradleVersion = '6.5.1' //version required
+}
+
+/*
+ * Integration with the Eclipse IDE
+ */ 
+apply plugin: 'eclipse'
+
+eclipse {
+    synchronizationTasks omlDependencies
+}

+ 5 - 0
examples/oml/Drivetrain/catalog.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog" prefer="public">
+	<rewriteURI uriStartString="http://ua.be/drivetrain/" rewritePrefix="src/oml/ua.be/drivetrain/"/>
+	<rewriteURI uriStartString="http://" rewritePrefix="build/oml/"/>
+</catalog>

+ 5 - 0
examples/oml/Drivetrain/gradle/wrapper/gradle-wrapper.properties

@@ -0,0 +1,5 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-bin.zip
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists

+ 234 - 0
examples/oml/Drivetrain/gradlew

@@ -0,0 +1,234 @@
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+#
+#   Gradle start up script for POSIX generated by Gradle.
+#
+#   Important for running:
+#
+#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+#       noncompliant, but you have some other compliant shell such as ksh or
+#       bash, then to run this script, type that shell name before the whole
+#       command line, like:
+#
+#           ksh Gradle
+#
+#       Busybox and similar reduced shells will NOT work, because this script
+#       requires all of these POSIX shell features:
+#         * functions;
+#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+#         * compound commands having a testable exit status, especially «case»;
+#         * various built-in commands including «command», «set», and «ulimit».
+#
+#   Important for patching:
+#
+#   (2) This script targets any POSIX shell, so it avoids extensions provided
+#       by Bash, Ksh, etc; in particular arrays are avoided.
+#
+#       The "traditional" practice of packing multiple parameters into a
+#       space-separated string is a well documented source of bugs and security
+#       problems, so this is (mostly) avoided, by progressively accumulating
+#       options in "$@", and eventually passing that to Java.
+#
+#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+#       see the in-line comments for details.
+#
+#       There are tweaks for specific operating systems such as AIX, CygWin,
+#       Darwin, MinGW, and NonStop.
+#
+#   (3) This script is generated from the Groovy template
+#       https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+#       within the Gradle project.
+#
+#       You can find Gradle at https://github.com/gradle/gradle/.
+#
+##############################################################################
+
+# Attempt to set APP_HOME
+
+# Resolve links: $0 may be a link
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+    APP_HOME=${app_path%"${app_path##*/}"}  # leaves a trailing /; empty if no leading path
+    [ -h "$app_path" ]
+do
+    ls=$( ls -ld "$app_path" )
+    link=${ls#*' -> '}
+    case $link in             #(
+      /*)   app_path=$link ;; #(
+      *)    app_path=$APP_HOME$link ;;
+    esac
+done
+
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
+
+APP_NAME="Gradle"
+APP_BASE_NAME=${0##*/}
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD=maximum
+
+warn () {
+    echo "$*"
+} >&2
+
+die () {
+    echo
+    echo "$*"
+    echo
+    exit 1
+} >&2
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "$( uname )" in                #(
+  CYGWIN* )         cygwin=true  ;; #(
+  Darwin* )         darwin=true  ;; #(
+  MSYS* | MINGW* )  msys=true    ;; #(
+  NONSTOP* )        nonstop=true ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+    if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+        # IBM's JDK on AIX uses strange locations for the executables
+        JAVACMD=$JAVA_HOME/jre/sh/java
+    else
+        JAVACMD=$JAVA_HOME/bin/java
+    fi
+    if [ ! -x "$JAVACMD" ] ; then
+        die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+    fi
+else
+    JAVACMD=java
+    which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+    case $MAX_FD in #(
+      max*)
+        MAX_FD=$( ulimit -H -n ) ||
+            warn "Could not query maximum file descriptor limit"
+    esac
+    case $MAX_FD in  #(
+      '' | soft) :;; #(
+      *)
+        ulimit -n "$MAX_FD" ||
+            warn "Could not set maximum file descriptor limit to $MAX_FD"
+    esac
+fi
+
+# Collect all arguments for the java command, stacking in reverse order:
+#   * args from the command line
+#   * the main class name
+#   * -classpath
+#   * -D...appname settings
+#   * --module-path (only if needed)
+#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+    APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+    CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+    JAVACMD=$( cygpath --unix "$JAVACMD" )
+
+    # Now convert the arguments - kludge to limit ourselves to /bin/sh
+    for arg do
+        if
+            case $arg in                                #(
+              -*)   false ;;                            # don't mess with options #(
+              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath
+                    [ -e "$t" ] ;;                      #(
+              *)    false ;;
+            esac
+        then
+            arg=$( cygpath --path --ignore --mixed "$arg" )
+        fi
+        # Roll the args list around exactly as many times as the number of
+        # args, so each arg winds up back in the position where it started, but
+        # possibly modified.
+        #
+        # NB: a `for` loop captures its iteration list before it begins, so
+        # changing the positional parameters here affects neither the number of
+        # iterations, nor the values presented in `arg`.
+        shift                   # remove old arg
+        set -- "$@" "$arg"      # push replacement arg
+    done
+fi
+
+# Collect all arguments for the java command;
+#   * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
+#     shell script including quotes and variable substitutions, so put them in
+#     double quotes to make sure that they get re-expanded; and
+#   * put everything else in single quotes, so that it's not re-expanded.
+
+set -- \
+        "-Dorg.gradle.appname=$APP_BASE_NAME" \
+        -classpath "$CLASSPATH" \
+        org.gradle.wrapper.GradleWrapperMain \
+        "$@"
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+#   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+#   set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+        printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+        xargs -n1 |
+        sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+        tr '\n' ' '
+    )" '"$@"'
+
+exec "$JAVACMD" "$@"

+ 89 - 0
examples/oml/Drivetrain/gradlew.bat

@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem      https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem  Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if  not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega

+ 746 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/artifacts.oml

@@ -0,0 +1,746 @@
+description <http://ua.be/drivetrain/description/artifacts/artifacts#> as artifacts {
+    uses <http://ua.be/sdo2l/vocabulary/processtraces#> as traces
+    uses <http://ua.be/sdo2l/vocabulary/base/file#> as file
+	uses <http://ua.be/sdo2l/vocabulary/base/text#> as text
+    uses <http://ua.be/sdo2l/vocabulary/base/script#> as script
+    uses <http://ua.be/sdo2l/vocabulary/base/code#> as code
+    uses <http://ua.be/sdo2l/vocabulary/base/tabular#> as tabular
+
+    // NOTE: Artifacts in this OML are what ArtifactVersions are in FTG+PM++
+
+	ci drivetrain-limitation : text:TextData [
+        traces:hasVersion "v0"
+        file:isLocatedAt "limitations.txt"
+        text:hasTextLine drivetrain-limitation-line-0
+        text:hasTextLine drivetrain-limitation-line-1
+	]
+    ci drivetrain-limitation-line-0 : text:TextLine [text:isInTextFile drivetrain-limitation text:isOnLine 0 text:holdsTextData "We need to operate between 0 and 5000 RPM."]
+        
+    ci drivetrain-limitation-line-1 : text:TextLine [text:isInTextFile drivetrain-limitation text:isOnLine 1 text:holdsTextData "The torque cannot exceed 1000 Nm."]
+
+    ci drivetrain-limitation-v1 : text:TextData [
+        traces:hasVersion "v1"
+        file:isLocatedAt "limitations.txt"
+	]
+
+	
+	ci test-requirements : text:TextData [
+		traces:hasVersion "v0"
+        file:isLocatedAt "requirements.txt"
+        text:hasTextLine test-requirements-line-0
+        text:hasTextLine test-requirements-line-1
+        text:hasTextLine test-requirements-line-2
+        text:hasTextLine test-requirements-line-3
+	]
+    ci test-requirements-line-0 : text:TextLine [text:isInTextFile test-requirements text:isOnLine 0 text:holdsTextData "We need a drivetrain."]
+    ci test-requirements-line-1 : text:TextLine [text:isInTextFile test-requirements text:isOnLine 1 text:holdsTextData "It needs a sensor."]
+    ci test-requirements-line-2 : text:TextLine [text:isInTextFile test-requirements text:isOnLine 2 text:holdsTextData "This sensor needs to measure values."]
+    ci test-requirements-line-3 : text:TextLine [text:isInTextFile test-requirements text:isOnLine 3 text:holdsTextData "These values need to be between certain limits."]
+
+
+	ci test-requirements-v1 : text:TextData [
+		traces:hasVersion "v1"
+        file:isLocatedAt "requirements.txt"
+	]
+	
+	ci torque-profile-v1 : tabular:TabularData [
+		traces:hasVersion "v1"
+		file:isLocatedAt "src/main/resources/csv/profile.csv"
+	]
+    // NOTE: Only 3 rows are modelled
+	ci torque-profile : tabular:TabularData [
+		traces:hasVersion "v0"
+        file:isLocatedAt "profile.csv"
+        tabular:hasCells torque-profile-cell-00
+        tabular:hasCells torque-profile-cell-10
+        tabular:hasCells torque-profile-cell-20
+        tabular:hasCells torque-profile-cell-01
+        tabular:hasCells torque-profile-cell-11
+        tabular:hasCells torque-profile-cell-21
+        tabular:hasColumns torque-profile-column-0
+        tabular:hasColumns torque-profile-column-1
+        tabular:hasRows torque-profile-row-0
+        tabular:hasRows torque-profile-row-1
+        tabular:hasRows torque-profile-row-2
+	]
+	
+    ci torque-profile-cell-00 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "time"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-0
+        tabular:isInCollection torque-profile-column-0
+    ]
+    ci torque-profile-cell-01 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "value"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-0
+        tabular:isInCollection torque-profile-column-1
+    ]
+    ci torque-profile-cell-10 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "1645343060000"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-1
+        tabular:isInCollection torque-profile-column-0
+    ]
+    ci torque-profile-cell-11 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "0.1063435735"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-1
+        tabular:isInCollection torque-profile-column-1
+    ]
+    ci torque-profile-cell-20 : tabular:Cell [
+        tabular:hasRowPosition 2
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "1645799771000"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-2
+        tabular:isInCollection torque-profile-column-0
+    ]
+    ci torque-profile-cell-21 : tabular:Cell [
+        tabular:hasRowPosition 2
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "0.1413462533"
+        tabular:isCellOfTabularData torque-profile
+        tabular:isInCollection torque-profile-row-2
+        tabular:isInCollection torque-profile-column-1
+    ]
+    ci torque-profile-row-0 : tabular:HeaderRow [
+        tabular:hasRowId 0
+        tabular:hasCell torque-profile-cell-00
+        tabular:hasCell torque-profile-cell-01
+    ]
+    ci torque-profile-row-1 : tabular:Row [
+        tabular:hasRowId 1
+        tabular:hasCell torque-profile-cell-10
+        tabular:hasCell torque-profile-cell-11
+    ]
+    ci torque-profile-row-2 : tabular:Row [
+        tabular:hasRowId 2
+        tabular:hasCell torque-profile-cell-20
+        tabular:hasCell torque-profile-cell-21
+    ]
+    ci torque-profile-column-0 : tabular:Column [
+        tabular:hasColumnId 0
+        tabular:hasCell torque-profile-cell-00
+        tabular:hasCell torque-profile-cell-10
+        tabular:hasCell torque-profile-cell-20
+    ]
+    ci torque-profile-column-1 : tabular:Column [
+        tabular:hasColumnId 1
+        tabular:hasCell torque-profile-cell-01
+        tabular:hasCell torque-profile-cell-11
+        tabular:hasCell torque-profile-cell-21
+    ]
+
+	ci control-parameter-generator : script:MATLABScript [
+		traces:hasVersion "v0"
+        file:isLocatedAt "generator.mlx"
+        text:hasTextLine control-parameter-generator-line-0
+        text:hasTextLine control-parameter-generator-line-1
+        text:hasTextLine control-parameter-generator-line-2
+        text:hasTextLine control-parameter-generator-line-3
+        text:hasTextLine control-parameter-generator-line-4
+        text:hasTextLine control-parameter-generator-line-5
+	]
+    ci control-parameter-generator-line-0 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 0 text:holdsTextData "num = randi(100)"]
+    ci control-parameter-generator-line-1 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 1 text:holdsTextData "if num < 90"]
+    ci control-parameter-generator-line-2 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 2 text:holdsTextData "   sz = 'yes'"]
+    ci control-parameter-generator-line-3 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 3 text:holdsTextData "else"]
+    ci control-parameter-generator-line-4 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 4 text:holdsTextData "   sz = 'no'"]
+    ci control-parameter-generator-line-5 : text:TextLine [text:isInTextFile control-parameter-generator text:isOnLine 5 text:holdsTextData "end"]
+
+	ci control-parameters : code:MATLABCode [
+		traces:hasVersion "v0"
+        file:isLocatedAt "control.mat"
+        text:hasTextLine control-parameters-line-0
+        text:hasTextLine control-parameters-line-1
+        text:hasTextLine control-parameters-line-2
+        text:hasTextLine control-parameters-line-3
+        text:hasTextLine control-parameters-line-4
+        text:hasTextLine control-parameters-line-5
+	]
+    ci control-parameters-line-0 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 0 text:holdsTextData "[x,y,z] = sphere;"]
+    ci control-parameters-line-1 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 1 text:holdsTextData "r = 2;"]
+    ci control-parameters-line-2 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 2 text:holdsTextData "surf(x*r,y*r,z*r)"]
+    ci control-parameters-line-3 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 3 text:holdsTextData "axis equal"]
+    ci control-parameters-line-4 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 4 text:holdsTextData "A = 4*pi*r^2;"]
+    ci control-parameters-line-5 : text:TextLine [text:isInTextFile control-parameters text:isOnLine 5 text:holdsTextData "V = (4/3)*pi*r^3;"]
+
+	ci c-code-to-be-run-on-rtt : code:CCode [
+		traces:hasVersion "v0"
+        file:isLocatedAt "rtt.c"
+        text:hasTextLine c-code-to-be-run-on-rtt-line-0
+        text:hasTextLine c-code-to-be-run-on-rtt-line-1
+	]
+    ci c-code-to-be-run-on-rtt-line-0 : text:TextLine [text:isInTextFile c-code-to-be-run-on-rtt text:isOnLine 0 text:holdsTextData "#include <stdio.h>"]
+    ci c-code-to-be-run-on-rtt-line-1 : text:TextLine [text:isInTextFile c-code-to-be-run-on-rtt text:isOnLine 1 text:holdsTextData 'int main() {printf("Hello, World!"); return 0;}']
+
+
+	ci drivetrain-sensor-data-v1 : tabular:TabularData [
+		traces:hasVersion "v1"
+		file:isLocatedAt "src/main/resources/csv/sensor.csv"
+	]
+
+    // NOTE: Only 2 rows are modelled
+	ci drivetrain-sensor-data : tabular:TabularData [
+		traces:hasVersion "v0"
+        file:isLocatedAt "sensor.csv"
+        tabular:hasCells drivetrain-sensor-data-cell-00
+        tabular:hasCells drivetrain-sensor-data-cell-01
+        tabular:hasCells drivetrain-sensor-data-cell-02
+        tabular:hasCells drivetrain-sensor-data-cell-03
+        tabular:hasCells drivetrain-sensor-data-cell-04
+        tabular:hasCells drivetrain-sensor-data-cell-05
+        tabular:hasCells drivetrain-sensor-data-cell-06
+        tabular:hasCells drivetrain-sensor-data-cell-07
+        tabular:hasCells drivetrain-sensor-data-cell-08
+        tabular:hasCells drivetrain-sensor-data-cell-09
+        tabular:hasCells drivetrain-sensor-data-cell-10
+        tabular:hasCells drivetrain-sensor-data-cell-11
+        tabular:hasCells drivetrain-sensor-data-cell-12
+        tabular:hasCells drivetrain-sensor-data-cell-13
+        tabular:hasCells drivetrain-sensor-data-cell-14
+        tabular:hasCells drivetrain-sensor-data-cell-15
+        tabular:hasCells drivetrain-sensor-data-cell-16
+        tabular:hasCells drivetrain-sensor-data-cell-17
+        tabular:hasCells drivetrain-sensor-data-cell-18
+        tabular:hasCells drivetrain-sensor-data-cell-19
+        tabular:hasColumns drivetrain-sensor-data-column-0
+        tabular:hasColumns drivetrain-sensor-data-column-1
+        tabular:hasColumns drivetrain-sensor-data-column-2
+        tabular:hasColumns drivetrain-sensor-data-column-3
+        tabular:hasColumns drivetrain-sensor-data-column-4
+        tabular:hasColumns drivetrain-sensor-data-column-5
+        tabular:hasColumns drivetrain-sensor-data-column-6
+        tabular:hasColumns drivetrain-sensor-data-column-7
+        tabular:hasColumns drivetrain-sensor-data-column-8
+        tabular:hasColumns drivetrain-sensor-data-column-9
+        tabular:hasRows drivetrain-sensor-data-row-0
+        tabular:hasRows drivetrain-sensor-data-row-1
+	]
+    ci drivetrain-sensor-data-cell-00 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "index"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-0
+    ]
+    ci drivetrain-sensor-data-cell-01 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "microsec"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-1
+    ]
+    ci drivetrain-sensor-data-cell-02 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 2
+        tabular:holdsContent "sense_00"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-2
+    ]
+    ci drivetrain-sensor-data-cell-03 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 3
+        tabular:holdsContent "sense_01"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-3
+    ]
+    ci drivetrain-sensor-data-cell-04 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 4
+        tabular:holdsContent "sense_02"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-4
+    ]
+    ci drivetrain-sensor-data-cell-05 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 5
+        tabular:holdsContent "sense_03"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-5
+    ]
+    ci drivetrain-sensor-data-cell-06 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 6
+        tabular:holdsContent "sense_10"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-6
+    ]
+    ci drivetrain-sensor-data-cell-07 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 7
+        tabular:holdsContent "sense_11"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-7
+    ]
+    ci drivetrain-sensor-data-cell-08 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 8
+        tabular:holdsContent "sense_12"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-8
+    ]
+        ci drivetrain-sensor-data-cell-09 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 9
+        tabular:holdsContent "sense_13"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-0
+        tabular:isInCollection drivetrain-sensor-data-column-9
+    ]
+    ci drivetrain-sensor-data-cell-10 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "0"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-0
+    ]
+    ci drivetrain-sensor-data-cell-11 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "100"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-1
+    ]
+    ci drivetrain-sensor-data-cell-12 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 2
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-2
+    ]
+    ci drivetrain-sensor-data-cell-13 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 3
+        tabular:holdsContent "0.6"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-3
+    ]
+    ci drivetrain-sensor-data-cell-14 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 4
+        tabular:holdsContent "0.1"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-4
+    ]
+    ci drivetrain-sensor-data-cell-15 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 5
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-5
+    ]
+    ci drivetrain-sensor-data-cell-16 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 6
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-6
+    ]
+    ci drivetrain-sensor-data-cell-17 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 7
+        tabular:holdsContent "0.1"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-7
+    ]
+    ci drivetrain-sensor-data-cell-18 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 8
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-8
+    ]
+    ci drivetrain-sensor-data-cell-19 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 9
+        tabular:holdsContent "0.5"
+        tabular:isCellOfTabularData drivetrain-sensor-data
+        tabular:isInCollection drivetrain-sensor-data-row-1
+        tabular:isInCollection drivetrain-sensor-data-column-9
+    ]
+    ci drivetrain-sensor-data-row-0 : tabular:HeaderRow [
+        tabular:hasRowId 0
+        tabular:hasCell drivetrain-sensor-data-cell-00
+        tabular:hasCell drivetrain-sensor-data-cell-01
+        tabular:hasCell drivetrain-sensor-data-cell-02
+        tabular:hasCell drivetrain-sensor-data-cell-03
+        tabular:hasCell drivetrain-sensor-data-cell-04
+        tabular:hasCell drivetrain-sensor-data-cell-05
+        tabular:hasCell drivetrain-sensor-data-cell-06
+        tabular:hasCell drivetrain-sensor-data-cell-07
+        tabular:hasCell drivetrain-sensor-data-cell-08
+        tabular:hasCell drivetrain-sensor-data-cell-09
+    ]
+    ci drivetrain-sensor-data-row-1 : tabular:Row [
+        tabular:hasRowId 1
+        tabular:hasCell drivetrain-sensor-data-cell-10
+        tabular:hasCell drivetrain-sensor-data-cell-11
+        tabular:hasCell drivetrain-sensor-data-cell-12
+        tabular:hasCell drivetrain-sensor-data-cell-13
+        tabular:hasCell drivetrain-sensor-data-cell-14
+        tabular:hasCell drivetrain-sensor-data-cell-15
+        tabular:hasCell drivetrain-sensor-data-cell-16
+        tabular:hasCell drivetrain-sensor-data-cell-17
+        tabular:hasCell drivetrain-sensor-data-cell-18
+        tabular:hasCell drivetrain-sensor-data-cell-19
+    ]
+    ci drivetrain-sensor-data-column-0 : tabular:Column [
+        tabular:hasColumnId 0
+        tabular:hasCell drivetrain-sensor-data-cell-00
+        tabular:hasCell drivetrain-sensor-data-cell-10
+    ]
+    ci drivetrain-sensor-data-column-1 : tabular:Column [
+        tabular:hasColumnId 1
+        tabular:hasCell drivetrain-sensor-data-cell-01
+        tabular:hasCell drivetrain-sensor-data-cell-11
+    ]
+    ci drivetrain-sensor-data-column-2 : tabular:Column [
+        tabular:hasColumnId 2
+        tabular:hasCell drivetrain-sensor-data-cell-02
+        tabular:hasCell drivetrain-sensor-data-cell-12
+    ]
+    ci drivetrain-sensor-data-column-3 : tabular:Column [
+        tabular:hasColumnId 3
+        tabular:hasCell drivetrain-sensor-data-cell-03
+        tabular:hasCell drivetrain-sensor-data-cell-13
+    ]
+    ci drivetrain-sensor-data-column-4 : tabular:Column [
+        tabular:hasColumnId 4
+        tabular:hasCell drivetrain-sensor-data-cell-04
+        tabular:hasCell drivetrain-sensor-data-cell-14
+    ]
+    ci drivetrain-sensor-data-column-5 : tabular:Column [
+        tabular:hasColumnId 5
+        tabular:hasCell drivetrain-sensor-data-cell-05
+        tabular:hasCell drivetrain-sensor-data-cell-15
+    ]
+    ci drivetrain-sensor-data-column-6 : tabular:Column [
+        tabular:hasColumnId 6
+        tabular:hasCell drivetrain-sensor-data-cell-06
+        tabular:hasCell drivetrain-sensor-data-cell-16
+    ]
+    ci drivetrain-sensor-data-column-7 : tabular:Column [
+        tabular:hasColumnId 7
+        tabular:hasCell drivetrain-sensor-data-cell-07
+        tabular:hasCell drivetrain-sensor-data-cell-17
+    ]
+    ci drivetrain-sensor-data-column-8 : tabular:Column [
+        tabular:hasColumnId 8
+        tabular:hasCell drivetrain-sensor-data-cell-08
+        tabular:hasCell drivetrain-sensor-data-cell-18
+    ]
+    ci drivetrain-sensor-data-column-9 : tabular:Column [
+        tabular:hasColumnId 9
+        tabular:hasCell drivetrain-sensor-data-cell-09
+        tabular:hasCell drivetrain-sensor-data-cell-19
+    ]
+    
+    // NOTE: Only 2 rows are modelled
+	ci coupling-sensor-data-v1 : tabular:TabularData [
+		traces:hasVersion "v1"
+       	file:isLocatedAt "src/main/resources/csv/coupling.csv"
+    ]
+
+    // NOTE: Only 2 rows are modelled
+	ci coupling-sensor-data : tabular:TabularData [
+		traces:hasVersion "v0"
+        file:isLocatedAt "coupling.csv"
+        tabular:hasCells coupling-sensor-data-cell-00
+        tabular:hasCells coupling-sensor-data-cell-01
+        tabular:hasCells coupling-sensor-data-cell-02
+        tabular:hasCells coupling-sensor-data-cell-03
+        tabular:hasCells coupling-sensor-data-cell-04
+        tabular:hasCells coupling-sensor-data-cell-05
+        tabular:hasCells coupling-sensor-data-cell-06
+        tabular:hasCells coupling-sensor-data-cell-07
+        tabular:hasCells coupling-sensor-data-cell-08
+        tabular:hasCells coupling-sensor-data-cell-09
+        tabular:hasCells coupling-sensor-data-cell-10
+        tabular:hasCells coupling-sensor-data-cell-11
+        tabular:hasCells coupling-sensor-data-cell-12
+        tabular:hasCells coupling-sensor-data-cell-13
+        tabular:hasCells coupling-sensor-data-cell-14
+        tabular:hasCells coupling-sensor-data-cell-15
+        tabular:hasCells coupling-sensor-data-cell-16
+        tabular:hasCells coupling-sensor-data-cell-17
+        tabular:hasCells coupling-sensor-data-cell-18
+        tabular:hasCells coupling-sensor-data-cell-19
+        tabular:hasColumns coupling-sensor-data-column-0
+        tabular:hasColumns coupling-sensor-data-column-1
+        tabular:hasColumns coupling-sensor-data-column-2
+        tabular:hasColumns coupling-sensor-data-column-3
+        tabular:hasColumns coupling-sensor-data-column-4
+        tabular:hasColumns coupling-sensor-data-column-5
+        tabular:hasColumns coupling-sensor-data-column-6
+        tabular:hasColumns coupling-sensor-data-column-7
+        tabular:hasColumns coupling-sensor-data-column-8
+        tabular:hasColumns coupling-sensor-data-column-9
+        tabular:hasRows coupling-sensor-data-row-0
+        tabular:hasRows coupling-sensor-data-row-1
+	]
+    ci coupling-sensor-data-cell-00 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "index"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-0
+    ]
+    ci coupling-sensor-data-cell-01 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "microsec"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-1
+    ]
+    ci coupling-sensor-data-cell-02 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 2
+        tabular:holdsContent "sense_00"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-2
+    ]
+    ci coupling-sensor-data-cell-03 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 3
+        tabular:holdsContent "sense_01"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-3
+    ]
+    ci coupling-sensor-data-cell-04 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 4
+        tabular:holdsContent "sense_02"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-4
+    ]
+    ci coupling-sensor-data-cell-05 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 5
+        tabular:holdsContent "sense_03"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-5
+    ]
+    ci coupling-sensor-data-cell-06 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 6
+        tabular:holdsContent "sense_10"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-6
+    ]
+    ci coupling-sensor-data-cell-07 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 7
+        tabular:holdsContent "sense_11"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-7
+    ]
+    ci coupling-sensor-data-cell-08 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 8
+        tabular:holdsContent "sense_12"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-8
+    ]
+        ci coupling-sensor-data-cell-09 : tabular:Cell [
+        tabular:hasRowPosition 0
+        tabular:hasColumnPosition 9
+        tabular:holdsContent "sense_13"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-0
+        tabular:isInCollection coupling-sensor-data-column-9
+    ]
+    ci coupling-sensor-data-cell-10 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 0
+        tabular:holdsContent "0"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-0
+    ]
+    ci coupling-sensor-data-cell-11 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 1
+        tabular:holdsContent "100"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-1
+    ]
+    ci coupling-sensor-data-cell-12 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 2
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-2
+    ]
+    ci coupling-sensor-data-cell-13 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 3
+        tabular:holdsContent "0.6"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-3
+    ]
+    ci coupling-sensor-data-cell-14 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 4
+        tabular:holdsContent "0.1"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-4
+    ]
+    ci coupling-sensor-data-cell-15 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 5
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-5
+    ]
+    ci coupling-sensor-data-cell-16 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 6
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-6
+    ]
+    ci coupling-sensor-data-cell-17 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 7
+        tabular:holdsContent "0.1"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-7
+    ]
+    ci coupling-sensor-data-cell-18 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 8
+        tabular:holdsContent "0.3"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-8
+    ]
+    ci coupling-sensor-data-cell-19 : tabular:Cell [
+        tabular:hasRowPosition 1
+        tabular:hasColumnPosition 9
+        tabular:holdsContent "0.5"
+        tabular:isCellOfTabularData coupling-sensor-data
+        tabular:isInCollection coupling-sensor-data-row-1
+        tabular:isInCollection coupling-sensor-data-column-9
+    ]
+    ci coupling-sensor-data-row-0 : tabular:HeaderRow [
+        tabular:hasRowId 0
+        tabular:hasCell coupling-sensor-data-cell-00
+        tabular:hasCell coupling-sensor-data-cell-01
+        tabular:hasCell coupling-sensor-data-cell-02
+        tabular:hasCell coupling-sensor-data-cell-03
+        tabular:hasCell coupling-sensor-data-cell-04
+        tabular:hasCell coupling-sensor-data-cell-05
+        tabular:hasCell coupling-sensor-data-cell-06
+        tabular:hasCell coupling-sensor-data-cell-07
+        tabular:hasCell coupling-sensor-data-cell-08
+        tabular:hasCell coupling-sensor-data-cell-09
+    ]
+    ci coupling-sensor-data-row-1 : tabular:Row [
+        tabular:hasRowId 1
+        tabular:hasCell coupling-sensor-data-cell-10
+        tabular:hasCell coupling-sensor-data-cell-11
+        tabular:hasCell coupling-sensor-data-cell-12
+        tabular:hasCell coupling-sensor-data-cell-13
+        tabular:hasCell coupling-sensor-data-cell-14
+        tabular:hasCell coupling-sensor-data-cell-15
+        tabular:hasCell coupling-sensor-data-cell-16
+        tabular:hasCell coupling-sensor-data-cell-17
+        tabular:hasCell coupling-sensor-data-cell-18
+        tabular:hasCell coupling-sensor-data-cell-19
+    ]
+    ci coupling-sensor-data-column-0 : tabular:Column [
+        tabular:hasColumnId 0
+        tabular:hasCell coupling-sensor-data-cell-00
+        tabular:hasCell coupling-sensor-data-cell-10
+    ]
+    ci coupling-sensor-data-column-1 : tabular:Column [
+        tabular:hasColumnId 1
+        tabular:hasCell coupling-sensor-data-cell-01
+        tabular:hasCell coupling-sensor-data-cell-11
+    ]
+    ci coupling-sensor-data-column-2 : tabular:Column [
+        tabular:hasColumnId 2
+        tabular:hasCell coupling-sensor-data-cell-02
+        tabular:hasCell coupling-sensor-data-cell-12
+    ]
+    ci coupling-sensor-data-column-3 : tabular:Column [
+        tabular:hasColumnId 3
+        tabular:hasCell coupling-sensor-data-cell-03
+        tabular:hasCell coupling-sensor-data-cell-13
+    ]
+    ci coupling-sensor-data-column-4 : tabular:Column [
+        tabular:hasColumnId 4
+        tabular:hasCell coupling-sensor-data-cell-04
+        tabular:hasCell coupling-sensor-data-cell-14
+    ]
+    ci coupling-sensor-data-column-5 : tabular:Column [
+        tabular:hasColumnId 5
+        tabular:hasCell coupling-sensor-data-cell-05
+        tabular:hasCell coupling-sensor-data-cell-15
+    ]
+    ci coupling-sensor-data-column-6 : tabular:Column [
+        tabular:hasColumnId 6
+        tabular:hasCell coupling-sensor-data-cell-06
+        tabular:hasCell coupling-sensor-data-cell-16
+    ]
+    ci coupling-sensor-data-column-7 : tabular:Column [
+        tabular:hasColumnId 7
+        tabular:hasCell coupling-sensor-data-cell-07
+        tabular:hasCell coupling-sensor-data-cell-17
+    ]
+    ci coupling-sensor-data-column-8 : tabular:Column [
+        tabular:hasColumnId 8
+        tabular:hasCell coupling-sensor-data-cell-08
+        tabular:hasCell coupling-sensor-data-cell-18
+    ]
+    ci coupling-sensor-data-column-9 : tabular:Column [
+        tabular:hasColumnId 9
+        tabular:hasCell coupling-sensor-data-cell-09
+        tabular:hasCell coupling-sensor-data-cell-19
+    ]
+
+}

+ 968 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/coupling.oml

@@ -0,0 +1,968 @@
+description <http://ua.be/drivetrain/description/artifacts/coupling#> as csv {
+	uses <http://ua.be/sdo2l/vocabulary/base/tabular#> as tabular
+	extends <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#> as art
+
+	ref ci art:coupling-sensor-data-v1 : tabular:TabularData [
+		tabular:hasCells coupling-sensor-data-v1-cell-00
+		tabular:hasCells coupling-sensor-data-v1-cell-01
+		tabular:hasCells coupling-sensor-data-v1-cell-02
+		tabular:hasCells coupling-sensor-data-v1-cell-03
+		tabular:hasCells coupling-sensor-data-v1-cell-04
+		tabular:hasCells coupling-sensor-data-v1-cell-05
+		tabular:hasCells coupling-sensor-data-v1-cell-06
+		tabular:hasCells coupling-sensor-data-v1-cell-07
+		tabular:hasCells coupling-sensor-data-v1-cell-08
+		tabular:hasCells coupling-sensor-data-v1-cell-09
+		tabular:hasCells coupling-sensor-data-v1-cell-10
+		tabular:hasCells coupling-sensor-data-v1-cell-11
+		tabular:hasCells coupling-sensor-data-v1-cell-12
+		tabular:hasCells coupling-sensor-data-v1-cell-13
+		tabular:hasCells coupling-sensor-data-v1-cell-14
+		tabular:hasCells coupling-sensor-data-v1-cell-15
+		tabular:hasCells coupling-sensor-data-v1-cell-16
+		tabular:hasCells coupling-sensor-data-v1-cell-17
+		tabular:hasCells coupling-sensor-data-v1-cell-18
+		tabular:hasCells coupling-sensor-data-v1-cell-19
+		tabular:hasCells coupling-sensor-data-v1-cell-20
+		tabular:hasCells coupling-sensor-data-v1-cell-21
+		tabular:hasCells coupling-sensor-data-v1-cell-22
+		tabular:hasCells coupling-sensor-data-v1-cell-23
+		tabular:hasCells coupling-sensor-data-v1-cell-24
+		tabular:hasCells coupling-sensor-data-v1-cell-25
+		tabular:hasCells coupling-sensor-data-v1-cell-26
+		tabular:hasCells coupling-sensor-data-v1-cell-27
+		tabular:hasCells coupling-sensor-data-v1-cell-28
+		tabular:hasCells coupling-sensor-data-v1-cell-29
+		tabular:hasCells coupling-sensor-data-v1-cell-30
+		tabular:hasCells coupling-sensor-data-v1-cell-31
+		tabular:hasCells coupling-sensor-data-v1-cell-32
+		tabular:hasCells coupling-sensor-data-v1-cell-33
+		tabular:hasCells coupling-sensor-data-v1-cell-34
+		tabular:hasCells coupling-sensor-data-v1-cell-35
+		tabular:hasCells coupling-sensor-data-v1-cell-36
+		tabular:hasCells coupling-sensor-data-v1-cell-37
+		tabular:hasCells coupling-sensor-data-v1-cell-38
+		tabular:hasCells coupling-sensor-data-v1-cell-39
+		tabular:hasCells coupling-sensor-data-v1-cell-40
+		tabular:hasCells coupling-sensor-data-v1-cell-41
+		tabular:hasCells coupling-sensor-data-v1-cell-42
+		tabular:hasCells coupling-sensor-data-v1-cell-43
+		tabular:hasCells coupling-sensor-data-v1-cell-44
+		tabular:hasCells coupling-sensor-data-v1-cell-45
+		tabular:hasCells coupling-sensor-data-v1-cell-46
+		tabular:hasCells coupling-sensor-data-v1-cell-47
+		tabular:hasCells coupling-sensor-data-v1-cell-48
+		tabular:hasCells coupling-sensor-data-v1-cell-49
+		tabular:hasCells coupling-sensor-data-v1-cell-50
+		tabular:hasCells coupling-sensor-data-v1-cell-51
+		tabular:hasCells coupling-sensor-data-v1-cell-52
+		tabular:hasCells coupling-sensor-data-v1-cell-53
+		tabular:hasCells coupling-sensor-data-v1-cell-54
+		tabular:hasCells coupling-sensor-data-v1-cell-55
+		tabular:hasCells coupling-sensor-data-v1-cell-56
+		tabular:hasCells coupling-sensor-data-v1-cell-57
+		tabular:hasCells coupling-sensor-data-v1-cell-58
+		tabular:hasCells coupling-sensor-data-v1-cell-59
+		tabular:hasCells coupling-sensor-data-v1-cell-60
+		tabular:hasCells coupling-sensor-data-v1-cell-61
+		tabular:hasCells coupling-sensor-data-v1-cell-62
+		tabular:hasCells coupling-sensor-data-v1-cell-63
+		tabular:hasCells coupling-sensor-data-v1-cell-64
+		tabular:hasCells coupling-sensor-data-v1-cell-65
+		tabular:hasCells coupling-sensor-data-v1-cell-66
+		tabular:hasCells coupling-sensor-data-v1-cell-67
+		tabular:hasCells coupling-sensor-data-v1-cell-68
+		tabular:hasCells coupling-sensor-data-v1-cell-69
+		tabular:hasCells coupling-sensor-data-v1-cell-70
+		tabular:hasCells coupling-sensor-data-v1-cell-71
+		tabular:hasCells coupling-sensor-data-v1-cell-72
+		tabular:hasCells coupling-sensor-data-v1-cell-73
+		tabular:hasCells coupling-sensor-data-v1-cell-74
+		tabular:hasCells coupling-sensor-data-v1-cell-75
+		tabular:hasCells coupling-sensor-data-v1-cell-76
+		tabular:hasCells coupling-sensor-data-v1-cell-77
+		tabular:hasCells coupling-sensor-data-v1-cell-78
+		tabular:hasCells coupling-sensor-data-v1-cell-79
+		tabular:hasCells coupling-sensor-data-v1-cell-80
+		tabular:hasCells coupling-sensor-data-v1-cell-81
+		tabular:hasCells coupling-sensor-data-v1-cell-82
+		tabular:hasCells coupling-sensor-data-v1-cell-83
+		tabular:hasCells coupling-sensor-data-v1-cell-84
+		tabular:hasCells coupling-sensor-data-v1-cell-85
+		tabular:hasCells coupling-sensor-data-v1-cell-86
+		tabular:hasCells coupling-sensor-data-v1-cell-87
+		tabular:hasCells coupling-sensor-data-v1-cell-88
+		tabular:hasCells coupling-sensor-data-v1-cell-89
+		tabular:hasCells coupling-sensor-data-v1-cell-90
+		tabular:hasCells coupling-sensor-data-v1-cell-91
+		tabular:hasCells coupling-sensor-data-v1-cell-92
+		tabular:hasCells coupling-sensor-data-v1-cell-93
+		tabular:hasCells coupling-sensor-data-v1-cell-94
+		tabular:hasCells coupling-sensor-data-v1-cell-95
+		tabular:hasCells coupling-sensor-data-v1-cell-96
+		tabular:hasCells coupling-sensor-data-v1-cell-97
+		tabular:hasCells coupling-sensor-data-v1-cell-98
+		tabular:hasCells coupling-sensor-data-v1-cell-99
+		tabular:hasRows coupling-sensor-data-v1-row-0
+		tabular:hasRows coupling-sensor-data-v1-row-1
+		tabular:hasRows coupling-sensor-data-v1-row-2
+		tabular:hasRows coupling-sensor-data-v1-row-3
+		tabular:hasRows coupling-sensor-data-v1-row-4
+		tabular:hasRows coupling-sensor-data-v1-row-5
+		tabular:hasRows coupling-sensor-data-v1-row-6
+		tabular:hasRows coupling-sensor-data-v1-row-7
+		tabular:hasRows coupling-sensor-data-v1-row-8
+		tabular:hasRows coupling-sensor-data-v1-row-9
+	]
+
+	ci coupling-sensor-data-v1-row-0 : tabular:HeaderRow [
+		tabular:hasRowId 0
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-00
+		tabular:hasCell coupling-sensor-data-v1-cell-01
+		tabular:hasCell coupling-sensor-data-v1-cell-02
+		tabular:hasCell coupling-sensor-data-v1-cell-03
+		tabular:hasCell coupling-sensor-data-v1-cell-04
+		tabular:hasCell coupling-sensor-data-v1-cell-05
+		tabular:hasCell coupling-sensor-data-v1-cell-06
+		tabular:hasCell coupling-sensor-data-v1-cell-07
+		tabular:hasCell coupling-sensor-data-v1-cell-08
+		tabular:hasCell coupling-sensor-data-v1-cell-09
+	]
+	ci coupling-sensor-data-v1-row-1 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 1
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-10
+		tabular:hasCell coupling-sensor-data-v1-cell-11
+		tabular:hasCell coupling-sensor-data-v1-cell-12
+		tabular:hasCell coupling-sensor-data-v1-cell-13
+		tabular:hasCell coupling-sensor-data-v1-cell-14
+		tabular:hasCell coupling-sensor-data-v1-cell-15
+		tabular:hasCell coupling-sensor-data-v1-cell-16
+		tabular:hasCell coupling-sensor-data-v1-cell-17
+		tabular:hasCell coupling-sensor-data-v1-cell-18
+		tabular:hasCell coupling-sensor-data-v1-cell-19
+	]
+	ci coupling-sensor-data-v1-row-2 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 2
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-20
+		tabular:hasCell coupling-sensor-data-v1-cell-21
+		tabular:hasCell coupling-sensor-data-v1-cell-22
+		tabular:hasCell coupling-sensor-data-v1-cell-23
+		tabular:hasCell coupling-sensor-data-v1-cell-24
+		tabular:hasCell coupling-sensor-data-v1-cell-25
+		tabular:hasCell coupling-sensor-data-v1-cell-26
+		tabular:hasCell coupling-sensor-data-v1-cell-27
+		tabular:hasCell coupling-sensor-data-v1-cell-28
+		tabular:hasCell coupling-sensor-data-v1-cell-29
+	]
+	ci coupling-sensor-data-v1-row-3 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 3
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-30
+		tabular:hasCell coupling-sensor-data-v1-cell-31
+		tabular:hasCell coupling-sensor-data-v1-cell-32
+		tabular:hasCell coupling-sensor-data-v1-cell-33
+		tabular:hasCell coupling-sensor-data-v1-cell-34
+		tabular:hasCell coupling-sensor-data-v1-cell-35
+		tabular:hasCell coupling-sensor-data-v1-cell-36
+		tabular:hasCell coupling-sensor-data-v1-cell-37
+		tabular:hasCell coupling-sensor-data-v1-cell-38
+		tabular:hasCell coupling-sensor-data-v1-cell-39
+	]
+	ci coupling-sensor-data-v1-row-4 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 4
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-40
+		tabular:hasCell coupling-sensor-data-v1-cell-41
+		tabular:hasCell coupling-sensor-data-v1-cell-42
+		tabular:hasCell coupling-sensor-data-v1-cell-43
+		tabular:hasCell coupling-sensor-data-v1-cell-44
+		tabular:hasCell coupling-sensor-data-v1-cell-45
+		tabular:hasCell coupling-sensor-data-v1-cell-46
+		tabular:hasCell coupling-sensor-data-v1-cell-47
+		tabular:hasCell coupling-sensor-data-v1-cell-48
+		tabular:hasCell coupling-sensor-data-v1-cell-49
+	]
+	ci coupling-sensor-data-v1-row-5 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 5
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-50
+		tabular:hasCell coupling-sensor-data-v1-cell-51
+		tabular:hasCell coupling-sensor-data-v1-cell-52
+		tabular:hasCell coupling-sensor-data-v1-cell-53
+		tabular:hasCell coupling-sensor-data-v1-cell-54
+		tabular:hasCell coupling-sensor-data-v1-cell-55
+		tabular:hasCell coupling-sensor-data-v1-cell-56
+		tabular:hasCell coupling-sensor-data-v1-cell-57
+		tabular:hasCell coupling-sensor-data-v1-cell-58
+		tabular:hasCell coupling-sensor-data-v1-cell-59
+	]
+	ci coupling-sensor-data-v1-row-6 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 6
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-60
+		tabular:hasCell coupling-sensor-data-v1-cell-61
+		tabular:hasCell coupling-sensor-data-v1-cell-62
+		tabular:hasCell coupling-sensor-data-v1-cell-63
+		tabular:hasCell coupling-sensor-data-v1-cell-64
+		tabular:hasCell coupling-sensor-data-v1-cell-65
+		tabular:hasCell coupling-sensor-data-v1-cell-66
+		tabular:hasCell coupling-sensor-data-v1-cell-67
+		tabular:hasCell coupling-sensor-data-v1-cell-68
+		tabular:hasCell coupling-sensor-data-v1-cell-69
+	]
+	ci coupling-sensor-data-v1-row-7 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 7
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-70
+		tabular:hasCell coupling-sensor-data-v1-cell-71
+		tabular:hasCell coupling-sensor-data-v1-cell-72
+		tabular:hasCell coupling-sensor-data-v1-cell-73
+		tabular:hasCell coupling-sensor-data-v1-cell-74
+		tabular:hasCell coupling-sensor-data-v1-cell-75
+		tabular:hasCell coupling-sensor-data-v1-cell-76
+		tabular:hasCell coupling-sensor-data-v1-cell-77
+		tabular:hasCell coupling-sensor-data-v1-cell-78
+		tabular:hasCell coupling-sensor-data-v1-cell-79
+	]
+	ci coupling-sensor-data-v1-row-8 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 8
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-80
+		tabular:hasCell coupling-sensor-data-v1-cell-81
+		tabular:hasCell coupling-sensor-data-v1-cell-82
+		tabular:hasCell coupling-sensor-data-v1-cell-83
+		tabular:hasCell coupling-sensor-data-v1-cell-84
+		tabular:hasCell coupling-sensor-data-v1-cell-85
+		tabular:hasCell coupling-sensor-data-v1-cell-86
+		tabular:hasCell coupling-sensor-data-v1-cell-87
+		tabular:hasCell coupling-sensor-data-v1-cell-88
+		tabular:hasCell coupling-sensor-data-v1-cell-89
+	]
+	ci coupling-sensor-data-v1-row-9 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 9
+		tabular:isRowOfTabularData art:coupling-sensor-data-v1
+		tabular:hasCell coupling-sensor-data-v1-cell-90
+		tabular:hasCell coupling-sensor-data-v1-cell-91
+		tabular:hasCell coupling-sensor-data-v1-cell-92
+		tabular:hasCell coupling-sensor-data-v1-cell-93
+		tabular:hasCell coupling-sensor-data-v1-cell-94
+		tabular:hasCell coupling-sensor-data-v1-cell-95
+		tabular:hasCell coupling-sensor-data-v1-cell-96
+		tabular:hasCell coupling-sensor-data-v1-cell-97
+		tabular:hasCell coupling-sensor-data-v1-cell-98
+		tabular:hasCell coupling-sensor-data-v1-cell-99
+	]
+	ci coupling-sensor-data-v1-cell-00 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "index"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-01 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "microsec"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-02 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "sense_00"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-03 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "sense_01"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-04 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "sense_02"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-05 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "sense_03"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-06 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "sense_10"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-07 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "sense_11"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-08 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "sense_12"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-09 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "sense_13"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-0
+	]
+	ci coupling-sensor-data-v1-cell-10 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "0"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-11 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "100"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-12 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-13 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.6"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-14 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-15 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-16 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-17 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-18 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-19 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-1
+	]
+	ci coupling-sensor-data-v1-cell-20 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-21 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "145"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-22 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-23 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-24 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-25 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.6"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-26 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-27 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-28 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-29 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-2
+	]
+	ci coupling-sensor-data-v1-cell-30 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-31 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "246"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-32 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-33 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-34 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.6"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-35 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-36 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-37 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-38 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-39 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-3
+	]
+	ci coupling-sensor-data-v1-cell-40 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-41 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "451"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-42 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-43 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-44 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-45 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-46 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-47 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-48 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-49 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.8"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-4
+	]
+	ci coupling-sensor-data-v1-cell-50 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-51 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "564"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-52 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-53 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-54 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.9"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-55 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-56 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-57 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-58 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-59 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.9"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-5
+	]
+	ci coupling-sensor-data-v1-cell-60 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-61 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "578"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-62 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-63 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.8"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-64 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-65 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-66 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-67 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-68 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.8"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-69 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-6
+	]
+	ci coupling-sensor-data-v1-cell-70 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "6"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-71 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "612"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-72 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-73 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-74 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-75 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-76 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.2"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-77 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-78 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-79 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-7
+	]
+	ci coupling-sensor-data-v1-cell-80 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-81 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "715"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-82 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.8"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-83 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-84 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.7"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-85 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-86 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-87 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-88 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-89 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.3"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-8
+	]
+	ci coupling-sensor-data-v1-cell-90 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "8"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-91 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "788"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-92 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 2
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-93 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 3
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-94 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 4
+		tabular:holdsContent "0.4"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-95 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 5
+		tabular:holdsContent "0.5"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-96 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 6
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-97 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 7
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-98 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 8
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+	ci coupling-sensor-data-v1-cell-99 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 9
+		tabular:holdsContent "0.1"
+		tabular:isCellOfTabularData art:coupling-sensor-data-v1
+		tabular:isInCollection coupling-sensor-data-v1-row-9
+	]
+
+}

+ 22 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/limitations.oml

@@ -0,0 +1,22 @@
+description <http://ua.be/drivetrain/description/artifacts/limitations#> as txt {
+	uses <http://ua.be/sdo2l/vocabulary/base/text#> as text
+	extends <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#> as art
+
+	ref ci art:drivetrain-limitation-v1 [
+		text:hasTextLine drivetrain-limitation-v1-line-0
+		text:hasTextLine drivetrain-limitation-v1-line-1
+	]
+
+	ci drivetrain-limitation-v1-line-0 : text:TextLine [
+		text:isInTextFile art:drivetrain-limitation-v1
+		text:isOnLine 0
+		text:holdsTextData "We need to operate between 0 and 5000 RPM."
+	]
+
+	ci drivetrain-limitation-v1-line-1 : text:TextLine [
+		text:isInTextFile art:drivetrain-limitation-v1
+		text:isOnLine 1
+		text:holdsTextData "The torque cannot exceed 1000 Nm."
+	]
+
+}

+ 512 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/profile.oml

@@ -0,0 +1,512 @@
+description <http://ua.be/drivetrain/description/artifacts/profile#> as csv {
+	uses <http://ua.be/sdo2l/vocabulary/base/tabular#> as tabular
+	extends <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#> as art
+
+	ref ci art:torque-profile-v1 : tabular:TabularData [
+		tabular:hasCells torque-profile-v1-cell-00
+		tabular:hasCells torque-profile-v1-cell-01
+		tabular:hasCells torque-profile-v1-cell-10
+		tabular:hasCells torque-profile-v1-cell-11
+		tabular:hasCells torque-profile-v1-cell-20
+		tabular:hasCells torque-profile-v1-cell-21
+		tabular:hasCells torque-profile-v1-cell-30
+		tabular:hasCells torque-profile-v1-cell-31
+		tabular:hasCells torque-profile-v1-cell-40
+		tabular:hasCells torque-profile-v1-cell-41
+		tabular:hasCells torque-profile-v1-cell-50
+		tabular:hasCells torque-profile-v1-cell-51
+		tabular:hasCells torque-profile-v1-cell-60
+		tabular:hasCells torque-profile-v1-cell-61
+		tabular:hasCells torque-profile-v1-cell-70
+		tabular:hasCells torque-profile-v1-cell-71
+		tabular:hasCells torque-profile-v1-cell-80
+		tabular:hasCells torque-profile-v1-cell-81
+		tabular:hasCells torque-profile-v1-cell-90
+		tabular:hasCells torque-profile-v1-cell-91
+		tabular:hasCells torque-profile-v1-cell-100
+		tabular:hasCells torque-profile-v1-cell-101
+		tabular:hasCells torque-profile-v1-cell-110
+		tabular:hasCells torque-profile-v1-cell-111
+		tabular:hasCells torque-profile-v1-cell-120
+		tabular:hasCells torque-profile-v1-cell-121
+		tabular:hasCells torque-profile-v1-cell-130
+		tabular:hasCells torque-profile-v1-cell-131
+		tabular:hasCells torque-profile-v1-cell-140
+		tabular:hasCells torque-profile-v1-cell-141
+		tabular:hasCells torque-profile-v1-cell-150
+		tabular:hasCells torque-profile-v1-cell-151
+		tabular:hasCells torque-profile-v1-cell-160
+		tabular:hasCells torque-profile-v1-cell-161
+		tabular:hasCells torque-profile-v1-cell-170
+		tabular:hasCells torque-profile-v1-cell-171
+		tabular:hasCells torque-profile-v1-cell-180
+		tabular:hasCells torque-profile-v1-cell-181
+		tabular:hasCells torque-profile-v1-cell-190
+		tabular:hasCells torque-profile-v1-cell-191
+		tabular:hasCells torque-profile-v1-cell-200
+		tabular:hasCells torque-profile-v1-cell-201
+		tabular:hasRows torque-profile-v1-row-0
+		tabular:hasRows torque-profile-v1-row-1
+		tabular:hasRows torque-profile-v1-row-2
+		tabular:hasRows torque-profile-v1-row-3
+		tabular:hasRows torque-profile-v1-row-4
+		tabular:hasRows torque-profile-v1-row-5
+		tabular:hasRows torque-profile-v1-row-6
+		tabular:hasRows torque-profile-v1-row-7
+		tabular:hasRows torque-profile-v1-row-8
+		tabular:hasRows torque-profile-v1-row-9
+		tabular:hasRows torque-profile-v1-row-10
+		tabular:hasRows torque-profile-v1-row-11
+		tabular:hasRows torque-profile-v1-row-12
+		tabular:hasRows torque-profile-v1-row-13
+		tabular:hasRows torque-profile-v1-row-14
+		tabular:hasRows torque-profile-v1-row-15
+		tabular:hasRows torque-profile-v1-row-16
+		tabular:hasRows torque-profile-v1-row-17
+		tabular:hasRows torque-profile-v1-row-18
+		tabular:hasRows torque-profile-v1-row-19
+		tabular:hasRows torque-profile-v1-row-20
+	]
+
+	ci torque-profile-v1-row-0 : tabular:HeaderRow [
+		tabular:hasRowId 0
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-00
+		tabular:hasCell torque-profile-v1-cell-01
+	]
+	ci torque-profile-v1-row-1 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 1
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-10
+		tabular:hasCell torque-profile-v1-cell-11
+	]
+	ci torque-profile-v1-row-2 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 2
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-20
+		tabular:hasCell torque-profile-v1-cell-21
+	]
+	ci torque-profile-v1-row-3 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 3
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-30
+		tabular:hasCell torque-profile-v1-cell-31
+	]
+	ci torque-profile-v1-row-4 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 4
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-40
+		tabular:hasCell torque-profile-v1-cell-41
+	]
+	ci torque-profile-v1-row-5 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 5
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-50
+		tabular:hasCell torque-profile-v1-cell-51
+	]
+	ci torque-profile-v1-row-6 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 6
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-60
+		tabular:hasCell torque-profile-v1-cell-61
+	]
+	ci torque-profile-v1-row-7 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 7
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-70
+		tabular:hasCell torque-profile-v1-cell-71
+	]
+	ci torque-profile-v1-row-8 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 8
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-80
+		tabular:hasCell torque-profile-v1-cell-81
+	]
+	ci torque-profile-v1-row-9 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 9
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-90
+		tabular:hasCell torque-profile-v1-cell-91
+	]
+	ci torque-profile-v1-row-10 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 10
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-100
+		tabular:hasCell torque-profile-v1-cell-101
+	]
+	ci torque-profile-v1-row-11 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 11
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-110
+		tabular:hasCell torque-profile-v1-cell-111
+	]
+	ci torque-profile-v1-row-12 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 12
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-120
+		tabular:hasCell torque-profile-v1-cell-121
+	]
+	ci torque-profile-v1-row-13 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 13
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-130
+		tabular:hasCell torque-profile-v1-cell-131
+	]
+	ci torque-profile-v1-row-14 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 14
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-140
+		tabular:hasCell torque-profile-v1-cell-141
+	]
+	ci torque-profile-v1-row-15 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 15
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-150
+		tabular:hasCell torque-profile-v1-cell-151
+	]
+	ci torque-profile-v1-row-16 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 16
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-160
+		tabular:hasCell torque-profile-v1-cell-161
+	]
+	ci torque-profile-v1-row-17 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 17
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-170
+		tabular:hasCell torque-profile-v1-cell-171
+	]
+	ci torque-profile-v1-row-18 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 18
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-180
+		tabular:hasCell torque-profile-v1-cell-181
+	]
+	ci torque-profile-v1-row-19 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 19
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-190
+		tabular:hasCell torque-profile-v1-cell-191
+	]
+	ci torque-profile-v1-row-20 : tabular:Row [
+		tabular:hasHeadingModifier "no"
+		tabular:hasRowId 20
+		tabular:isRowOfTabularData art:torque-profile-v1
+		tabular:hasCell torque-profile-v1-cell-200
+		tabular:hasCell torque-profile-v1-cell-201
+	]
+	ci torque-profile-v1-cell-00 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "time"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-0
+	]
+	ci torque-profile-v1-cell-01 : tabular:Cell [
+		tabular:hasRowPosition 0
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "value"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-0
+	]
+	ci torque-profile-v1-cell-10 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645343060000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-1
+	]
+	ci torque-profile-v1-cell-11 : tabular:Cell [
+		tabular:hasRowPosition 1
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.1063435735"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-1
+	]
+	ci torque-profile-v1-cell-20 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645799771000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-2
+	]
+	ci torque-profile-v1-cell-21 : tabular:Cell [
+		tabular:hasRowPosition 2
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.1413462533"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-2
+	]
+	ci torque-profile-v1-cell-30 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1643731574000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-3
+	]
+	ci torque-profile-v1-cell-31 : tabular:Cell [
+		tabular:hasRowPosition 3
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.0373289706"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-3
+	]
+	ci torque-profile-v1-cell-40 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645534917000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-4
+	]
+	ci torque-profile-v1-cell-41 : tabular:Cell [
+		tabular:hasRowPosition 4
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.1933671917"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-4
+	]
+	ci torque-profile-v1-cell-50 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645881479000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-5
+	]
+	ci torque-profile-v1-cell-51 : tabular:Cell [
+		tabular:hasRowPosition 5
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.1221919282"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-5
+	]
+	ci torque-profile-v1-cell-60 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1644552154000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-6
+	]
+	ci torque-profile-v1-cell-61 : tabular:Cell [
+		tabular:hasRowPosition 6
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.1778075408"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-6
+	]
+	ci torque-profile-v1-cell-70 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1644171052000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-7
+	]
+	ci torque-profile-v1-cell-71 : tabular:Cell [
+		tabular:hasRowPosition 7
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.2688664202"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-7
+	]
+	ci torque-profile-v1-cell-80 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1643827663000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-8
+	]
+	ci torque-profile-v1-cell-81 : tabular:Cell [
+		tabular:hasRowPosition 8
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.1011829049"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-8
+	]
+	ci torque-profile-v1-cell-90 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645673633000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-9
+	]
+	ci torque-profile-v1-cell-91 : tabular:Cell [
+		tabular:hasRowPosition 9
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.0463323214"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-9
+	]
+	ci torque-profile-v1-cell-100 : tabular:Cell [
+		tabular:hasRowPosition 10
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645119377000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-10
+	]
+	ci torque-profile-v1-cell-101 : tabular:Cell [
+		tabular:hasRowPosition 10
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.2162654668"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-10
+	]
+	ci torque-profile-v1-cell-110 : tabular:Cell [
+		tabular:hasRowPosition 11
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1644038701000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-11
+	]
+	ci torque-profile-v1-cell-111 : tabular:Cell [
+		tabular:hasRowPosition 11
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.2680340619"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-11
+	]
+	ci torque-profile-v1-cell-120 : tabular:Cell [
+		tabular:hasRowPosition 12
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645058918000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-12
+	]
+	ci torque-profile-v1-cell-121 : tabular:Cell [
+		tabular:hasRowPosition 12
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.0288904173"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-12
+	]
+	ci torque-profile-v1-cell-130 : tabular:Cell [
+		tabular:hasRowPosition 13
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1643880041000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-13
+	]
+	ci torque-profile-v1-cell-131 : tabular:Cell [
+		tabular:hasRowPosition 13
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.0804983286"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-13
+	]
+	ci torque-profile-v1-cell-140 : tabular:Cell [
+		tabular:hasRowPosition 14
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645744877000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-14
+	]
+	ci torque-profile-v1-cell-141 : tabular:Cell [
+		tabular:hasRowPosition 14
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.0828198062"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-14
+	]
+	ci torque-profile-v1-cell-150 : tabular:Cell [
+		tabular:hasRowPosition 15
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645403668000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-15
+	]
+	ci torque-profile-v1-cell-151 : tabular:Cell [
+		tabular:hasRowPosition 15
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "0.2368045351"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-15
+	]
+	ci torque-profile-v1-cell-160 : tabular:Cell [
+		tabular:hasRowPosition 16
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645322842000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-16
+	]
+	ci torque-profile-v1-cell-161 : tabular:Cell [
+		tabular:hasRowPosition 16
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.3658627047"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-16
+	]
+	ci torque-profile-v1-cell-170 : tabular:Cell [
+		tabular:hasRowPosition 17
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645305624000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-17
+	]
+	ci torque-profile-v1-cell-171 : tabular:Cell [
+		tabular:hasRowPosition 17
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.2719289020"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-17
+	]
+	ci torque-profile-v1-cell-180 : tabular:Cell [
+		tabular:hasRowPosition 18
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1645430775000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-18
+	]
+	ci torque-profile-v1-cell-181 : tabular:Cell [
+		tabular:hasRowPosition 18
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.1403125402"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-18
+	]
+	ci torque-profile-v1-cell-190 : tabular:Cell [
+		tabular:hasRowPosition 19
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1644767653000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-19
+	]
+	ci torque-profile-v1-cell-191 : tabular:Cell [
+		tabular:hasRowPosition 19
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.1142019323"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-19
+	]
+	ci torque-profile-v1-cell-200 : tabular:Cell [
+		tabular:hasRowPosition 20
+		tabular:hasColumnPosition 0
+		tabular:holdsContent "1644604915000"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-20
+	]
+	ci torque-profile-v1-cell-201 : tabular:Cell [
+		tabular:hasRowPosition 20
+		tabular:hasColumnPosition 1
+		tabular:holdsContent "-0.0052879950"
+		tabular:isCellOfTabularData art:torque-profile-v1
+		tabular:isInCollection torque-profile-v1-row-20
+	]
+
+}

+ 36 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/requirements.oml

@@ -0,0 +1,36 @@
+description <http://ua.be/drivetrain/description/artifacts/requirements#> as txt {
+	uses <http://ua.be/sdo2l/vocabulary/base/text#> as text
+	extends <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#> as art
+
+	ref ci art:test-requirements-v1 [
+		text:hasTextLine test-requirements-v1-line-0
+		text:hasTextLine test-requirements-v1-line-1
+		text:hasTextLine test-requirements-v1-line-2
+		text:hasTextLine test-requirements-v1-line-3
+	]
+
+	ci test-requirements-v1-line-0 : text:TextLine [
+		text:isInTextFile art:test-requirements-v1
+		text:isOnLine 0
+		text:holdsTextData "We need a drivetrain."
+	]
+
+	ci test-requirements-v1-line-1 : text:TextLine [
+		text:isInTextFile art:test-requirements-v1
+		text:isOnLine 1
+		text:holdsTextData "It needs a sensor."
+	]
+
+	ci test-requirements-v1-line-2 : text:TextLine [
+		text:isInTextFile art:test-requirements-v1
+		text:isOnLine 2
+		text:holdsTextData "This sensor needs to measure values."
+	]
+
+	ci test-requirements-v1-line-3 : text:TextLine [
+		text:isInTextFile art:test-requirements-v1
+		text:isOnLine 3
+		text:holdsTextData "These values need to be between certain limits."
+	]
+
+}

Разница между файлами не показана из-за своего большого размера
+ 349 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/artifacts/sensor.oml


+ 11 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/bundle.oml

@@ -0,0 +1,11 @@
+description bundle <http://ua.be/drivetrain/description/bundle#> as ^bundle {
+	includes <http://ua.be/sdo2l/description/drivetrain/ftg#>
+    includes <http://ua.be/sdo2l/description/drivetrain/pm#>
+    includes <http://ua.be/sdo2l/description/drivetrain/pt#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/sensor#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/coupling#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/profile#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/limitations#>
+    includes <http://ua.be/sdo2l/description/drivetrain/artifacts/requirements#>	
+}

+ 77 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/ftg.oml

@@ -0,0 +1,77 @@
+description <http://ua.be/drivetrain/description/ftg#> as ftg {
+	uses <http://ua.be/sdo2l/vocabulary/base#> as base
+
+
+	// Artifact types used in the FTG
+	// OBS: they should be actually references to artifact types defined in a metamodel
+
+	ci text-document-def : base:ArtifactType [
+		base:hasName "Text Document"
+	]
+
+	ci text-document2-def : base:ArtifactType [
+		base:hasName "Text Document"
+	]
+
+	ci profile-def : base:ArtifactType [
+		base:hasName "Profile"
+	]
+
+	ci script-def : base:ArtifactType [
+		base:hasName "Script"
+	]
+
+	ci model-def : base:ArtifactType [
+		base:hasName "Model"
+	]
+
+	ci code-def : base:ArtifactType [
+		base:hasName "Code"
+	]
+
+	ci tabular-data-def : base:ArtifactType [
+		base:hasName "Tabular Data"
+	]
+
+	ci tabular-data2-def : base:ArtifactType [
+		base:hasName "Tabular Data"
+	]
+
+	// Activity types
+
+	ci setup-profile-def : base:ActivityType [
+		base:hasName "Setup Profile"
+		base:isInputtedBy text-document-def
+		base:isInputtedBy text-document2-def
+		base:outputs profile-def
+
+	]
+
+	ci generate-control-parameters-def : base:ActivityType [
+		base:hasName "Generate Control Parameters"
+		base:isInputtedBy profile-def
+		base:isInputtedBy script-def
+		base:outputs model-def
+	]
+
+	ci build-control-settings-def : base:ActivityType [
+		base:hasName "Build Control Settings"
+		base:isInputtedBy model-def
+		base:isInputtedBy text-document2-def
+		base:outputs code-def
+	]
+
+	ci run-experiment-def : base:ActivityType [
+		base:hasName "Run Experiment"
+		base:isInputtedBy code-def
+		base:outputs tabular-data-def
+		base:outputs tabular-data2-def
+	]
+
+	ci verify-data-def : base:ActivityType [
+		base:hasName "Verify Data"
+		base:isInputtedBy tabular-data-def
+		base:isInputtedBy tabular-data2-def
+	]
+
+}

+ 135 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/pm.oml

@@ -0,0 +1,135 @@
+description <http://ua.be/drivetrain/description/pm#> as pm {
+	uses <http://ua.be/sdo2l/vocabulary/base#> as base
+	uses <http://ua.be/sdo2l/vocabulary/workflow#> as wf
+	extends <http://ua.be/sdo2l/description/drivetrain/ftg#> as ftg
+
+	// the car PM
+	ci pm-drivetrain : wf:Workflow [
+		base:hasIdentifier "pm2"
+		base:hasCanonicalName "PM - Drivetrain"
+		base:hasDescription "The Process model of the drivetrain."
+	]
+
+
+	// Artifact Usages
+
+	ci limitations-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:text-document-def
+		base:hasUsageName "drivetrain limitations"
+	]
+	
+	ci requirements-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:text-document2-def
+		base:hasUsageName "test requirements"
+	]
+
+	ci torque-profile-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:profile-def
+		base:hasUsageName "Matlab Torque"
+	]
+
+	ci script-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:script-def
+		base:hasUsageName "control parameter generator"
+	]
+
+	ci model-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:model-def
+		base:hasUsageName "Matlab control parameters"
+	]
+	
+	ci code-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:code-def
+		base:hasUsageName "C-code to be run on RTT"
+	]
+	
+	ci tabular1-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:tabular-data-def
+		base:hasUsageName "Drivetrain Sensor data"
+	]
+	
+	ci tabular2-usage : base:WorkflowArtifact [
+		base:isDefinedBy ftg:tabular-data2-def
+		base:hasUsageName "Sensor data coupling"
+	]
+
+	// Nodes
+
+	ci init-node : wf:InitialNode [
+		base:hasIdentifier "init-drivetrain-pm"
+		base:hasCanonicalName "Initial Node 01"
+		wf:isFollowedBy setup-profile-act
+	]
+
+	ci setup-profile-act : wf:Activity [
+		base:hasIdentifier "act-dt-01"
+		base:hasCanonicalName "Set up drivetrain profile"
+		base:isDefinedBy ftg:setup-profile-def
+		base:hasUsageName "Set up drivetrain profile"
+		wf:isInputtedBy limitations-usage
+		wf:isInputtedBy requirements-usage
+		wf:outputs torque-profile-usage
+		wf:isFollowedBy generate-control-param-act 
+	]
+
+	ci generate-control-param-act : wf:Activity [
+		base:hasIdentifier "act-dt-02"
+		base:hasCanonicalName "generate control parameters"
+		base:isDefinedBy ftg:generate-control-parameters-def
+		base:hasUsageName "Generate matlab control parameters"
+		wf:isInputtedBy torque-profile-usage
+		wf:isInputtedBy script-usage
+		wf:outputs model-usage
+		wf:isFollowedBy build-control-settings-act
+	]
+
+	ci build-control-settings-act : wf:Activity [
+		base:hasIdentifier "act-dt-03"
+		base:hasCanonicalName "build simulink control settings"
+		base:isDefinedBy ftg:build-control-settings-def
+		base:hasUsageName "Build Simulink control settings"
+		wf:isInputtedBy model-usage
+		wf:isInputtedBy requirements-usage
+		wf:outputs code-usage
+		wf:isFollowedBy run-experiment-act
+	]
+
+	ci run-experiment-act : wf:Activity [
+		base:hasIdentifier "act-dt-04"
+		base:hasCanonicalName "run experiement"
+		base:isDefinedBy ftg:run-experiment-def
+		base:hasUsageName "run experiment"
+		wf:isInputtedBy code-usage
+		wf:outputs tabular1-usage
+		wf:outputs tabular2-usage
+		wf:isFollowedBy verify-data-act
+	]
+
+
+	ci verify-data-act : wf:Activity [
+		base:hasIdentifier "act-dt-05"
+		base:hasCanonicalName "Verify sensor data"
+		base:isDefinedBy ftg:verify-data-def
+		base:hasUsageName "Download and store sensor data"
+		wf:isInputtedBy tabular1-usage
+		wf:isInputtedBy tabular2-usage
+		wf:isFollowedBy setup-profile-act		
+		wf:isFollowedBy final-node
+	]
+
+	ci final-node : wf:FinalNode [
+		base:hasIdentifier "finalnode-dt-01"
+		base:hasCanonicalName "Final Node 01"
+	]
+
+	ref ci pm-drivetrain [
+		wf:coordinates init-node
+		wf:coordinates setup-profile-act
+		wf:coordinates generate-control-param-act
+		wf:coordinates build-control-settings-act
+		wf:coordinates run-experiment-act
+		wf:coordinates verify-data-act
+		wf:coordinates final-node
+	]
+	
+}

+ 213 - 0
examples/oml/Drivetrain/src/oml/ua.be/drivetrain/description/pt.oml

@@ -0,0 +1,213 @@
+description <http://ua.be/drivetrain/description/pt#> as pt {
+	uses <http://ua.be/sdo2l/vocabulary/processtraces#> as traces
+	uses <http://ua.be/sdo2l/vocabulary/base#> as base
+	extends <http://ua.be/sdo2l/description/drivetrain/pm#> as wf
+	extends <http://ua.be/sdo2l/description/drivetrain/artifacts/artifacts#> as art
+
+	// Traces
+
+	ci drivetrain-trace : traces:Trace [
+		base:hasIdentifier "dt-t01"
+		base:hasCanonicalName "Drivetrain - Trace 01"
+		traces:enacts wf:pm-drivetrain
+		traces:startedBy staev-setup-profile
+	]
+
+	// Artifacts and relationships to workflow artifacts
+
+	ri limitation-relatesTo : traces:RelatesTo [
+		from art:drivetrain-limitation
+		to wf:limitations-usage
+	]
+	
+	ri limitation-v1-relatesTo : traces:RelatesTo [
+		from art:drivetrain-limitation-v1
+		to wf:limitations-usage
+	]
+
+	ri requirements-relatesTo : traces:RelatesTo [
+		from art:test-requirements
+		to wf:requirements-usage
+	]
+	
+	ri requirements-v1-relatesTo : traces:RelatesTo [
+		from art:test-requirements-v1
+		to wf:requirements-usage
+	]
+	
+	ri torqueprofile-relatesTo : traces:RelatesTo [
+		from art:torque-profile
+		to wf:torque-profile-usage
+	]
+	
+	ri torqueprofile-v1-relatesTo : traces:RelatesTo [
+		from art:torque-profile-v1
+		to wf:torque-profile-usage
+	]
+	
+	ri control-parameter-generator-relatesTo : traces:RelatesTo [
+		from art:control-parameter-generator
+		to wf:script-usage
+	]
+	
+	ri control-parameters-relatesTo : traces:RelatesTo [
+		from art:control-parameters
+		to wf:model-usage
+	]
+
+	ri c-code-relatesTo : traces:RelatesTo [
+		from art:c-code-to-be-run-on-rtt
+		to wf:code-usage
+	]
+	
+	ri drivetrain-sensor-data-relatesTo : traces:RelatesTo [
+		from art:drivetrain-sensor-data
+		to wf:tabular1-usage
+	]
+	
+	ri drivetrain-sensor-data-v1-relatesTo : traces:RelatesTo [
+		from art:drivetrain-sensor-data-v1
+		to wf:tabular1-usage
+	]
+	
+	ri drivetrain-coupling-sensor-data-relatesTo : traces:RelatesTo [
+		from art:coupling-sensor-data
+		to wf:tabular2-usage
+	]
+	
+	ri drivetrain-coupling-sensor-data-v1-relatesTo : traces:RelatesTo [
+		from art:coupling-sensor-data-v1
+		to wf:tabular2-usage
+	]
+	
+
+	// Events
+
+	// first iteration
+	
+	ci staev-setup-profile : traces:StartingEvent [
+		traces:receives art:test-requirements
+		traces:receives art:drivetrain-limitation
+		traces:isFollowedBy endev-setup-profile
+		traces:starts wf:setup-profile-act
+	]
+
+	ci endev-setup-profile : traces:EndingEvent [
+		traces:provides art:torque-profile
+		traces:isFollowedBy staev-gen-ctrl-params
+		traces:terminates wf:setup-profile-act
+	]
+
+	ci staev-gen-ctrl-params : traces:StartingEvent [
+		traces:receives art:torque-profile
+		traces:receives art:control-parameter-generator
+		traces:isFollowedBy endev-gen-ctrl-params
+		traces:starts wf:generate-control-param-act
+	]
+	ci endev-gen-ctrl-params : traces:EndingEvent [
+		traces:provides art:control-parameters
+		traces:isFollowedBy staev-build-ctrl-settings
+		traces:terminates wf:generate-control-param-act
+	]
+
+	ci staev-build-ctrl-settings : traces:StartingEvent [
+		traces:receives art:control-parameters
+		traces:receives art:test-requirements
+		traces:starts wf:build-control-settings-act
+		traces:isFollowedBy endev-build-ctrl-settings
+	]
+	ci endev-build-ctrl-settings : traces:EndingEvent [
+		traces:provides art:c-code-to-be-run-on-rtt
+		traces:terminates wf:build-control-settings-act
+		traces:isFollowedBy staev-run-experiment
+	]
+
+	ci staev-run-experiment : traces:StartingEvent [
+		traces:receives art:c-code-to-be-run-on-rtt
+		traces:starts wf:run-experiment-act
+		traces:isFollowedBy endev-run-experiment
+	]
+	
+	ci endev-run-experiment : traces:EndingEvent [
+		traces:terminates wf:run-experiment-act
+		traces:isFollowedBy staev-verify-data
+		traces:provides art:drivetrain-sensor-data
+		traces:provides art:coupling-sensor-data
+	]
+	
+	ci staev-verify-data : traces:StartingEvent [
+		traces:receives art:drivetrain-sensor-data
+		traces:receives art:coupling-sensor-data
+		traces:starts wf:verify-data-act
+		traces:isFollowedBy endev-verify-data
+	]
+	
+	ci endev-verify-data : traces:EndingEvent [
+		traces:terminates wf:verify-data-act
+		traces:isFollowedBy staev-setup-profile-2
+	]
+	
+	// second iteration
+	
+	ci staev-setup-profile-2 : traces:StartingEvent [
+		traces:receives art:test-requirements-v1
+		traces:receives art:drivetrain-limitation-v1
+		traces:isFollowedBy endev-setup-profile-2
+		traces:starts wf:setup-profile-act
+	]
+
+	ci endev-setup-profile-2 : traces:EndingEvent [
+		traces:provides art:torque-profile
+		traces:isFollowedBy staev-gen-ctrl-params-2
+		traces:terminates wf:setup-profile-act
+	]
+
+	ci staev-gen-ctrl-params-2 : traces:StartingEvent [
+		traces:receives art:torque-profile
+		traces:receives art:control-parameter-generator
+		traces:isFollowedBy endev-gen-ctrl-params-2
+		traces:starts wf:generate-control-param-act
+	]
+	ci endev-gen-ctrl-params-2 : traces:EndingEvent [
+		traces:provides art:control-parameters
+		traces:isFollowedBy staev-build-ctrl-settings-2
+		traces:terminates wf:generate-control-param-act
+	]
+
+	ci staev-build-ctrl-settings-2 : traces:StartingEvent [
+		traces:receives art:control-parameters
+		traces:receives art:test-requirements-v1
+		traces:starts wf:build-control-settings-act
+		traces:isFollowedBy endev-build-ctrl-settings-2
+	]
+	ci endev-build-ctrl-settings-2 : traces:EndingEvent [
+		traces:provides art:c-code-to-be-run-on-rtt
+		traces:terminates wf:build-control-settings-act
+		traces:isFollowedBy staev-run-experiment-2
+	]
+
+	ci staev-run-experiment-2 : traces:StartingEvent [
+		traces:receives art:c-code-to-be-run-on-rtt
+		traces:starts wf:run-experiment-act
+		traces:isFollowedBy endev-run-experiment-2
+	]
+	
+	ci endev-run-experiment-2 : traces:EndingEvent [
+		traces:terminates wf:run-experiment-act
+		traces:isFollowedBy staev-verify-data-2
+		traces:provides art:drivetrain-sensor-data-v1
+		traces:provides art:coupling-sensor-data-v1
+	]
+	
+	ci staev-verify-data-2 : traces:StartingEvent [
+		traces:receives art:drivetrain-sensor-data-v1
+		traces:receives art:coupling-sensor-data-v1
+		traces:starts wf:verify-data-act
+		traces:isFollowedBy endev-verify-data-2
+	]
+	
+	ci endev-verify-data-2 : traces:EndingEvent [
+		traces:terminates wf:verify-data-act
+	]
+	
+}