Skip to content

Commit 825b449

Browse files
committed
test: re-add the not so useless tests for coverage
1 parent 8922d3b commit 825b449

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

test/2_test_state_estim.jl

+10-4
Original file line numberDiff line numberDiff line change
@@ -864,10 +864,12 @@ end
864864

865865
@testitem "MovingHorizonEstimator estimation and getinfo" setup=[SetupMPCtests] begin
866866
using .SetupMPCtests, ControlSystemsBase, LinearAlgebra, JuMP, Ipopt, ForwardDiff
867-
linmodel1 = setop!(LinModel(sys,Ts,i_u=[1,2], i_d=[3]), uop=[10,50], yop=[50,30], dop=[5])
868-
f(x,u,d,_) = linmodel1.A*x + linmodel1.Bu*u + linmodel1.Bd*d
869-
h(x,d,_) = linmodel1.C*x + linmodel1.Dd*d
870-
nonlinmodel = setop!(NonLinModel(f, h, Ts, 2, 4, 2, 1, solver=nothing), uop=[10,50], yop=[50,30], dop=[5])
867+
linmodel1 = LinModel(sys,Ts,i_u=[1,2], i_d=[3])
868+
linmodel1 = setop!(linmodel1, uop=[10,50], yop=[50,30], dop=[5])
869+
f(x,u,d,model) = model.A*x + model.Bu*u + model.Bd*d
870+
h(x,d,model) = model.C*x + model.Dd*d
871+
nonlinmodel = NonLinModel(f, h, Ts, 2, 4, 2, 1, solver=nothing, p=linmodel1)
872+
nonlinmodel = setop!(nonlinmodel, uop=[10,50], yop=[50,30], dop=[5])
871873

872874
mhe1 = MovingHorizonEstimator(nonlinmodel, He=2)
873875
preparestate!(mhe1, [50, 30], [5])
@@ -968,6 +970,10 @@ end
968970
= updatestate!(mhe3, [0], [0])
969971
@test [0, 0] atol=1e-3
970972
@test isa(x̂, Vector{Float32})
973+
mhe4 = setconstraint!(MovingHorizonEstimator(nonlinmodel, He=1, nint_ym=0), v̂max=[50,50])
974+
g_V̂max_end = mhe4.optim[:g_V̂max_2].func
975+
# execute update_predictions! branch in `gfunc_i` for coverage:
976+
@test_nowarn g_V̂max_end(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0) 0.0
971977

972978
= diagm([1/4, 1/4, 1/4, 1/4].^2)
973979
= diagm([1, 1].^2)

test/3_test_predictive_control.jl

+13-4
Original file line numberDiff line numberDiff line change
@@ -661,9 +661,9 @@ end
661661
u = moveinput!(nmpc)
662662
@test u [4] atol=5e-2
663663
linmodel2 = LinModel([tf(5, [2000, 1]) tf(7, [8000,1])], 3000.0, i_d=[2])
664-
f = (x,u,d,_) -> linmodel2.A*x + linmodel2.Bu*u + linmodel2.Bd*d
665-
h = (x,d,_) -> linmodel2.C*x + linmodel2.Dd*d
666-
nonlinmodel = NonLinModel(f, h, 3000.0, 1, 2, 1, 1, solver=nothing)
664+
f = (x,u,d,model) -> model.A*x + model.Bu*u + model.Bd*d
665+
h = (x,d,model) -> model.C*x + model.Dd*d
666+
nonlinmodel = NonLinModel(f, h, 3000.0, 1, 2, 1, 1, solver=nothing, p=linmodel2)
667667
nmpc2 = NonLinMPC(nonlinmodel, Nwt=[0], Hp=100, Hc=1)
668668
preparestate!(nmpc2, [0], [0])
669669
# if d=[0.1], the output will eventually reach 7*0.1=0.7, no action needed (u=0):
@@ -684,13 +684,22 @@ end
684684
u = moveinput!(nmpc4, [0], d, R̂u=fill(12, nmpc4.Hp))
685685
@test u [12] atol=5e-2
686686
linmodel3 = LinModel{Float32}(0.5*ones(1,1), ones(1,1), ones(1,1), 0, 0, 3000.0)
687+
nmpc5 = NonLinMPC(nonlinmodel, Hp=1, Hc=1, Cwt=Inf, transcription=MultipleShooting())
688+
nmpc5 = setconstraint!(nmpc5, ymin=[1])
689+
# execute update_predictions! branch in `gfunc_i` for coverage:
690+
g_Y0min_end = nmpc5.optim[:g_Y0min_1].func
691+
println(nmpc5.Z̃)
692+
@test_nowarn g_Y0min_end(10.0, 9.0, 8.0, 7.0)
693+
# execute update_predictions! branch in `geqfunc_i` for coverage:
694+
geq_end = nmpc5.optim[:geq_2].func
695+
@test_nowarn geq_end(5.0, 4.0, 3.0, 2.0)
687696
nmpc6 = NonLinMPC(linmodel3, Hp=10)
688697
preparestate!(nmpc6, [0])
689698
@test moveinput!(nmpc6, [0]) [0.0]
690699
nonlinmodel2 = NonLinModel{Float32}(f, h, 3000.0, 1, 2, 1, 1, solver=nothing)
691700
nmpc7 = NonLinMPC(nonlinmodel2, Hp=10)
692701
y = similar(nonlinmodel2.yop)
693-
nonlinmodel2.h!(y, Float32[0,0], Float32[0], Float32[])
702+
nonlinmodel2.h!(y, Float32[0,0], Float32[0], nonlinmodel2.p)
694703
preparestate!(nmpc7, [0], [0])
695704
@test moveinput!(nmpc7, [0], [0]) [0.0]
696705
nmpc8 = NonLinMPC(nonlinmodel, Nwt=[0], Hp=100, Hc=1, transcription=MultipleShooting())

0 commit comments

Comments
 (0)