﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4030	delayTime not a parameter expression	palmer.ap@…	somebody	"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;
"	defect	closed	high	Future	Backend		invalid		
