You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/examples/wheel.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ When modeling wheels, there are several different assumptions that can be made,
7
7
The wheel-related components available are
8
8
-[`RollingWheel`](@ref): a wheel that can roll on the ground. It cannot slip and it cannot leave the ground.
9
9
-[`RollingWheelJoint`](@ref): a lower-level component used in `RollingWheel` to model the kinematics of the wheel, without inertial or mass properties.
10
+
-[`SlipWheel`](@ref): Similar [`RollingWheel`](@ref), but can also slip.
11
+
-[`SlipWheelJoint`](@ref): Similar to [`RollingWheelJoint`](@ref), but for `SlipWheel`.
10
12
-[`RollingWheelSet`](@ref): a set of two wheels connected by an axis. One of the wheels cannot slip, while the other one slips as required to allow the wheel set to turn (no differential is modeled). No wheel can leave the ground.
11
13
-[`RollingWheelSetJoint`](@ref): A lower-level component used in `RollingWheelSet` to model the kinematics of the wheel set, without inertial or mass properties.
12
14
-[`RollingConstraintVerticalWheel`](@ref): A low-level constraint that is used to enforce a perfectly rolling wheel that is always vertical, i.e., it can only roll forward and not fall down.
@@ -322,7 +324,6 @@ end
322
324
@named model = TestSlipBasedWheel()
323
325
model = complete(model)
324
326
ssys = structural_simplify(IRSystem(model))
325
-
display(unknowns(ssys))
326
327
defs = ModelingToolkit.defaults(model)
327
328
prob = ODEProblem(ssys, [
328
329
model.inertia.w => 1e-10, # This is important, at zero velocity, the friction is ill-defined
0 commit comments