Skip to content

Commit 465fd46

Browse files
committed
update tests to CS v1.0
1 parent 5fb157e commit 465fd46

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DiscretePIDs"
22
uuid = "c1363496-6848-4723-8758-079b737f6baf"
33
authors = ["Fredrik Bagge Carlson"]
4-
version = "0.1.0"
4+
version = "0.1.1"
55

66
[deps]
77

test/runtests.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ end
2020
P = c2d(ss(tf(1, [1, 1])), Ts)
2121

2222
## P control
23-
C = c2d(ControlSystems.pid(kp = K), Ts)
23+
C = c2d(ControlSystems.pid(K, 0), Ts)
2424
res = step(feedback(P*C), 3)
2525
res2 = lsim(P, ctrl, 3)
2626

@@ -31,7 +31,7 @@ res2 = lsim(P, ctrl, 3)
3131
## PI control
3232
Ti = 1
3333
pid = DiscretePID(; K, Ts, Ti)
34-
C = c2d(ControlSystems.pid(kp = K, ki = Ti, series=true, time=true), Ts)
34+
C = c2d(ControlSystems.pid(K, Ti), Ts)
3535
res = step(feedback(P*C), 3)
3636
res2 = lsim(P, ctrl, 3)
3737

@@ -79,7 +79,7 @@ ctrl = function(x,t)
7979
u = pid(r, y)
8080
end
8181

82-
C = c2d(ControlSystems.pid(kp = K, ki = Ti, series=true, time=true), Ts)
82+
C = c2d(ControlSystems.pid(K, Ti), Ts)
8383
res = step(feedback(P*C), Tf)
8484
res2 = lsim(P, ctrl, Tf)
8585

@@ -128,7 +128,7 @@ ctrl = function(x,t)
128128
r = 1
129129
u = pid(r, y)
130130
end
131-
C = c2d(ControlSystems.pid(kp = K), Ts)
131+
C = c2d(ControlSystems.pid(K, 0), Ts)
132132
res = step(feedback(P*C), 3)
133133
res2 = lsim(P, ctrl, 3)
134134

0 commit comments

Comments
 (0)