ok, SimCodeUtil is driving me crazy
print("iuniqueEqIndex " +& intString(iuniqueEqIndex) +& "\n");
(equations1, uniqueEqIndex) = createSingleAlgorithmCode(eqnlst, varlst, false, iuniqueEqIndex);
print("iuniqueEqIndex " +& intString(uniqueEqIndex) +& " len:" +& intString(listLength(equations1)) +& "\n");
gives:
iuniqueEqIndex 9
iuniqueEqIndex 10 len:1
so it creates 1 equation and gives it index=9
it comes from:
initial algorithm
count := integer((time - startTime)/period);
T_start := startTime + count*period;
but the xml-code has:
<equation index="9">
<statement>
brake_pedal.count := integer((time - brake_pedal.startTime) / brake_pedal.period, 0);
</statement>
</equation>
<equation index="9">
<statement>
brake_pedal.T_start := brake_pedal.startTime + /*Real*/(brake_pedal.count) * brake_pedal.period;
</statement>