Skip to content

Commit 917a555

Browse files
committed
Fix kinematics tests
Reduce the step in the kinematics test to avoid numerical problems.
1 parent 6d6f275 commit 917a555

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ for i = 1:samples
350350
wba_a = randn(3)
351351

352352
# Propagate the initial DCM using the sampled velocity vector.
353-
Δ = 0.01
353+
Δ = 0.0001
354354
Dba = copy(Dba0)
355355
for k = 1:1000
356356
dDba = ddcm(Dba,Dba0*wba_a)
@@ -379,7 +379,7 @@ for i = 1:samples
379379
wba_a = randn(3)
380380

381381
# Propagate the initial DCM using the sampled velocity vector.
382-
Δ = 0.01
382+
Δ = 0.0001
383383
qba = copy(qba0)
384384
for k = 1:1000
385385
dqba = dquat(qba,vect(inv(qba)*wba_a*qba))

0 commit comments

Comments
 (0)