Opened 8 years ago
Closed 8 years ago
#4030 closed defect (invalid)
delayTime not a parameter expression
Reported by: | Owned by: | somebody | |
---|---|---|---|
Priority: | high | Milestone: | Future |
Component: | Backend | Version: | |
Keywords: | Cc: |
Description
According to the Modelica specification, delayTime does not necessarily need to be a parameter expression, but when I make delayTime time-dependent, I get an error that delayTime is not a parameter expression. the simple logic below gives that error.
model DelayTest
Real DelayTime;
Real Output;
Real Input;
equation
DelayTime = 0.1*time;
Input = sin(time);
Output = delay(Input,DelayTime);
end DelayTest;
Change History (1)
comment:1 by , 8 years ago
Component: | *unknown* → Backend |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
the spec states:
And the following works fine for me: