﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4359	start-value are not initialized correctly	Willi Braun	Lennart Ochel	"In following simple example:
{{{
loadString(""
model B
  parameter Real a(fixed=false);
  parameter Real b(fixed=false);
  Real w(start=a);
  Real y(start=b);
initial equation
  a=4;
  b=6;
equation
  sin(w*y)+cos(w)*y=time;
  sin(w*y)+sin(y)+w=(a+b)*time;
end B;
"");
getErrorString();

simulate(B, stopTime=0.5);
getErrorString();
}}}

the start-values of the iteration variables {{{y,w}}} are set to zero an not as expected to 4 and 6."	defect	closed	blocker	1.12.0	Initialization		fixed		Francesco Casella
