We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9e770 commit 6ca4d10Copy full SHA for 6ca4d10
test/runtests.jl
@@ -1292,12 +1292,15 @@ end
1292
@components begin
1293
world = W()
1294
cyl = Cylindrical(n = [0, 1, 0])
1295
- spring = Spring(c = 1)
1296
- body = Body(state_priority=1)
+ # spring = Spring(c = 1)
+ body = Body(state_priority=0)
1297
end
1298
@equations begin
1299
- connect(world.frame_b, cyl.frame_a, spring.frame_a)
1300
- connect(cyl.frame_b, spring.frame_b, body.frame_a)
+ # connect(world.frame_b, cyl.frame_a, spring.frame_a)
+ # connect(cyl.frame_b, spring.frame_b, body.frame_a)
1301
+
1302
+ connect(world.frame_b, cyl.frame_a)
1303
+ connect(cyl.frame_b, body.frame_a)
1304
1305
1306
@named model = CylinderTest()
0 commit comments