Opened 15 years ago
Last modified 11 years ago
#1261 closed defect
Modelica.Blocks.Sources.TimeTable does not work (bug in event-handling) — at Initial Version
Reported by: | asodja | Owned by: | asodja |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Simulation Code Generation | Version: | 1.6.0 |
Keywords: | Cc: | asodja, Willi Braun |
Description
In attachment is a test model consisting of only one block of the Modelica.Blocks.Sources.TimeTable component.
The output (TimeTable.y) is zero all the time.
The problem is that the {{initial()}} and {{time >= pre(nextEvent)}} (nextEvent is initalized to 0) never happens, e.g., {{functionDAE_output2()}} is not called at appropriate time so the if-statment is never evaluated to true:
{{{int functionDAE_output2()
{
/* ... */
tmp0 = initial();
tmp1 = pre($PtimeTable$PnextEvent);
RELATIONGREATEREQ(tmp2, time, tmp1);
localData->helpVars[0] = tmp2;
localData->helpVars[1] = tmp0;
if (edge(localData->helpVars[0]) edge(localData->helpVars[1])) { real_array_create(&tmp3, &$PtimeTable$Ptable, 2, 7, 2);
tmp4 = _Modelica_Blocks_Sources_TimeTable_getInterpolationCoefficients(tmp3, $PtimeTable$Poffset, $PtimeTable$PstartTime, time, (modelica_integer)$PtimeTable$Plast, 1e-13);
$PtimeTable$Pa = tmp4.targ1;
$PtimeTable$Pb = tmp4.targ2;
$PtimeTable$PnextEvent = tmp4.targ3;
$PtimeTable$Plast = tmp4.targ4;
}
}}}