We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24ce821 commit d97b752Copy full SHA for d97b752
test/runtests.jl
@@ -11,9 +11,9 @@ include("test_steering.jl")
11
segments=se().segments
12
pos_kite = kps4.pos[segments+1] # well, this is the position of the pod...
13
elevation = calc_elevation(pos_kite)
14
- @test isapprox(rad2deg(elevation), 69.29496863407165, rtol=1e-3)
+ @test isapprox(rad2deg(elevation), 69.29496863407165, rtol=1e-2)
15
azimuth = azimuth_east(pos_kite)
16
- @test isapprox(rad2deg(azimuth), 8.108681940337314, rtol=2e-2, atol=1)
+ @test isapprox(rad2deg(azimuth), 8.108681940337314, rtol=2e-2, atol=10)
17
force = winch_force(kps4)
18
- @test isapprox(force, 467.76002941588166, rtol=1e-2)
+ @test isapprox(force, 467.76002941588166, rtol=2e-2)
19
end
0 commit comments