Skip to content

Commit fc11d80

Browse files
author
Brad Carman
committed
removed defaults from SISO component
1 parent efdff2f commit fc11d80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Blocks/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ Single input single output (SISO) continuous system block.
130130
y_start = 0.0
131131
end
132132
@variables begin
133-
u(t) = u_start, [description = "Input of SISO system"]
134-
y(t) = y_start, [description = "Output of SISO system"]
133+
u(t), [guess = u_start, description = "Input of SISO system"]
134+
y(t), [guess = y_start, description = "Output of SISO system"]
135135
end
136136
@components begin
137137
input = RealInput(guess = u_start)

0 commit comments

Comments
 (0)