forked from comp-rob2b/modelling-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpk-algorithm.json
32 lines (32 loc) · 1.07 KB
/
fpk-algorithm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"@context": [
"https://comp-rob2b.github.io/metamodels/geometry/spatial-operators.json",
"https://comp-rob2b.github.io/metamodels/kinematic-chain/operators.json",
"https://comp-rob2b.github.io/metamodels/algorithm.json",
{
"rob": "https://comp-rob2b.github.io/modelling-tutorial/robot#"
}
],
"@id": "rob:fpk",
"@graph": [
{
"@id": "rob:fpk1",
"@type": "ForwardPositionKinematics",
"joint": "rob:joint1",
"joint-space-motion": "rob:q1",
"cartesian-space-motion": "rob:pose-link2-root-wrt-link1-joint1"
},
{
"@id": "rob:compose-pose1",
"@type": "ComposePose",
"pose1": "rob:pose-link1-joint1-wrt-link1-root",
"pose2": "rob:pose-link2-root-wrt-link1-joint1",
"pose-out": "rob:pose-link2-root-wrt-link1-root"
},
{
"@id": "rob:schedule1",
"@type": "Schedule",
"trigger-chain": [ "rob:fpk1", "rob:compose-pose1" ]
}
]
}