We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dde592 commit 1a10ab6Copy full SHA for 1a10ab6
.gitignore
@@ -1,5 +1,9 @@
1
*.jl.*.cov
2
*.jl.cov
3
*.jl.mem
4
+*.gif
5
+*.mp4
6
+*.mo
7
+*.mat
8
/Manifest.toml
9
/docs/build/
docs/src/examples/pendulum.md
@@ -186,11 +186,11 @@ W(args...; kwargs...) = Multibody.world
186
@mtkmodel FurutaPendulum begin
187
@components begin
188
world = W()
189
- shoulder_joint = Revolute(n = [0, 1, 0], isroot = true, axisflange = true)
190
- elbow_joint = Revolute(n = [0, 0, 1], isroot = true, axisflange = true, phi0=0.1)
191
- upper_arm = BodyShape(; m = 0.1, isroot = false, r = [0, 0, 0.6], radius=0.04)
192
- lower_arm = BodyShape(; m = 0.1, isroot = false, r = [0, 0.6, 0], radius=0.04)
193
- tip = Body(; m = 0.3, isroot = false)
+ shoulder_joint = Revolute(n = [0, 1, 0], axisflange = true)
+ elbow_joint = Revolute(n = [0, 0, 1], axisflange = true, phi0=0.1)
+ upper_arm = BodyShape(; m = 0.1, r = [0, 0, 0.6], radius=0.04)
+ lower_arm = BodyShape(; m = 0.1, r = [0, 0.6, 0], radius=0.04)
+ tip = Body(; m = 0.3)
194
195
damper1 = RDamper(d = 0.07)
196
damper2 = RDamper(d = 0.07)
0 commit comments