forked from comp-rob2b/modelling-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamics.json
26 lines (26 loc) · 906 Bytes
/
dynamics.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
{
"@context": [
"https://comp-rob2b.github.io/metamodels/geometry/spatial-relations.json",
"https://comp-rob2b.github.io/metamodels/newtonian-rigid-body-dynamics.json",
"https://comp-rob2b.github.io/metamodels/qudt.json",
{
"rob": "https://comp-rob2b.github.io/modelling-tutorial/robot#"
}
],
"@id": "rob:dynamics",
"@graph": [
{
"@id": "rob:link2-inertia",
"@type": [ "RigidBodyInertia", "Mass", "RotationalInertia", "PrincipalMomentsOfInertiaXYZ" ],
"of-body": "rob:link2",
"reference-point": "rob:link2-root-origin",
"as-seen-by": "rob:link2-root",
"quantity-kind": [ "MomentOfInertia", "Mass" ],
"unit": [ "KiloGM-M2", "KiloGM" ],
"xx": 0.1,
"yy": 0.1,
"zz": 0.1,
"mass": 1.0
}
]
}