Skip to content

Commit

Permalink
add use_arrays kwarg
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen authored and YingboMa committed Aug 8, 2024
1 parent 2d6a55a commit 6bef511
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
36 changes: 23 additions & 13 deletions src/fancy_joints.jl
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ end


@component function RevoluteWithLengthConstraint(; name, n = Float64[0, 0, 1], axisflange = false,
positive_branch = true, radius = 0.05, length = radius, color = [0.5019608f0,0.0f0,0.5019608f0,1.0f0], state_priority = 1.0, phi_offset=0, phi_guess=0, length_constraint=1)
positive_branch = true, radius = 0.05, length = radius, color = [0.5019608f0,0.0f0,0.5019608f0,1.0f0], state_priority = 1.0, phi_offset=0, phi_guess=0, length_constraint=1, use_arrays = false)
systems = @named begin
frame_a = Frame()
frame_b = Frame()
Expand All @@ -401,11 +401,11 @@ end
description = "Driving torque in direction of axis of rotation",
]
@variables phi(t) [
# state_priority = state_priority,
state_priority = 1,
description = "Relative rotation angle from frame_a to frame_b",
]
@variables angle(t) [
# state_priority = -1,
state_priority = -1,
description = "= phi + phi_offset (relative rotation angle between frame_a and frame_b)",
]
@variables r_a(t)[1:3], [description = "Position vector from frame_a to frame_a side of length constraint, resolved in frame_a of revolute joint"]
Expand Down Expand Up @@ -443,9 +443,11 @@ end
0 .~ collect(frame_a.f .+ resolve1(Rrel, frame_b.f))
0 .~ collect(frame_a.tau .+ resolve1(Rrel, frame_b.tau))

# angle ~ compute_angle2(length_constraint, e_array, r_a_array, r_b_array, positive_branch)[1]
# angle ~ Symbolics.term(compute_angle2, length_constraint, e_array, r_a_array, r_b_array, positive_branch, type=Real)
angle ~ compute_angle(length_constraint, e, r_a, r_b, positive_branch)
if use_arrays
angle ~ compute_angle2(length_constraint, e_array, r_a_array, r_b_array, positive_branch)
else
angle ~ _compute_angle2(length_constraint, e, r_a, r_b, positive_branch)
end
]

sys = ODESystem(eqs, t; name=:nothing, systems)#, parameter_dependencies = [positive_branch => select_branch(length_constraint, e, phi_offset + phi_guess, r_a, r_b)]) # JuliaSimCompiler ignores parameter dependencies, the user has to provide it instead
Expand Down Expand Up @@ -502,6 +504,7 @@ The rest of this joint aggregation is defined by the following parameters:
phi_offset = 0,
phi_guess = 0,
positive_branch,
use_arrays = false,
)
systems = @named begin
frame_a = Frame()
Expand Down Expand Up @@ -550,6 +553,7 @@ The rest of this joint aggregation is defined by the following parameters:
phi_offset,
phi_guess,
positive_branch,
use_arrays,
)
push!(more_systems, revolute)

Expand Down Expand Up @@ -734,27 +738,33 @@ function compute_angle(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::Abs
atan(ksin1, kcos1)
end

function compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch)
function _compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch)
@show e,r_a
e_r_a = e'r_a
e_r_b = e'r_b
A = -2*(r_b'r_a - e_r_b'e_r_a)
B = 2*r_b'cross(e, r_a)
C = r_a'r_a + r_b'r_b - L^2 - 2*e_r_b'e_r_a
k1 = A^2 + B^2
k1a = k1 - C^2
k1a > 1e-10 || error("Singular position of loop (either no or two analytic solutions; the mechanism has lost one-degree-of freedom in this position). Try to use another joint-assembly component. In most cases it is best to let joints outside of the JointXXX component be revolute and _not_ prismatic joints. If this also leads to singular positions, it could be that this kinematic loop cannot be solved analytically. In this case you have to build up the loop with basic joints (_no_ aggregation JointXXX components) and rely on dynamic state selection, i.e., during simulation the states will be dynamically selected in such a way that in no position a degree of freedom is lost.")
#k1a > 1e-10 || error("Singular position of loop (either no or two analytic solutions; the mechanism has lost one-degree-of freedom in this position). Try to use another joint-assembly component. In most cases it is best to let joints outside of the JointXXX component be revolute and _not_ prismatic joints. If this also leads to singular positions, it could be that this kinematic loop cannot be solved analytically. In this case you have to build up the loop with basic joints (_no_ aggregation JointXXX components) and rely on dynamic state selection, i.e., during simulation the states will be dynamically selected in such a way that in no position a degree of freedom is lost.")
k1b = max(k1a, 1.0e-12)
k2 = sqrt(k1b)
kcos1 = -A*C + B*k2*ifelse(positive_branch == true, 1, -1)
ksin1 = -B*C + A*k2*ifelse(positive_branch == true, -1, 1)
[atan(ksin1, kcos1)]
atan(ksin1, kcos1)
end

@register_array_symbolic compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch::Bool) begin
size = (1, )
eltype = Float64
function compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch::Bool)
_compute_angle2(L, e, r_a, r_b, positive_branch)
end

@register_symbolic compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch::Bool)
#@register_array_symbolic compute_angle2(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch::Bool) begin
# size = (1, )
# eltype = Float64
#end

# @register_symbolic compute_angle(L::Real, e::AbstractVector, r_a::AbstractVector, r_b::AbstractVector, positive_branch::Bool)::Real

# @register_symbolic compute_angle(L::Num, e1::Num, e1::Num, e2::Num, r_a1::Num, r_a2::Num, r_a3::Num, r_b1::Num, r_b2::Num, r_b3::Num, positive_branch)
Expand All @@ -764,4 +774,4 @@ end
# r_a = SA[r_a1, r_a2, r_a3]
# r_b = SA[r_b1, r_b2, r_b3]
# compute_angle(L, e, r_a, r_b, positive_branch)
# end
# end
4 changes: 2 additions & 2 deletions test/test_JointUSR_RRR.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ W(args...; kwargs...) = Multibody.world
@mtkmodel TestUSR begin
@components begin
world = W()
j1 = JointUSR(positive_branch=true)
j1 = JointUSR(positive_branch=true, use_arrays=false)
fixed = FixedTranslation(r=[1,0,0])
b1 = Body(isroot=false, neg_w=true)
p1 = Prismatic(state_priority=100)
Expand All @@ -32,7 +32,7 @@ end
@named model = TestUSR()
model = complete(model)
ssys = structural_simplify(IRSystem(model))
prob = ODEProblem(ssys, [model.b1.a_0[1] => 0, D(D(model.p1.s)) => 0], (0.0, 1.0))
prob = ODEProblem(ssys, [], (0.0, 1.0))
sol = solve(prob, FBDF(autodiff=true))


Expand Down

0 comments on commit 6bef511

Please sign in to comment.