﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3547	Initial event is not propagated as expected	Bernhard Thiele	Lennart Ochel	"Simulation of the model below results into the end values `v2=1` as expected, but `v1=0` (as opposed to the expected: `v1=1`).
{{{
#!modelica
model InitialEvent
  Boolean iev(start=false,fixed=true);
  Integer v1(start=0,fixed=true), v2(start=0,fixed=true);
equation
  iev = initial();
  when {iev} then
    v1 = pre(v1) + 1;
  end when;
  when {initial()} then
    v2 = pre(v1) + 1;
  end when;
end InitialEvent;
}}}"	defect	new	normal	Future	Initialization				
