Changes between Initial Version and Version 2 of Ticket #4890


Ignore:
Timestamp:
2018-04-18T18:37:04Z (7 years ago)
Author:
Vitalij Ruge
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4890 – Description

    initial v2  
    22{{{#!modelica
    33model pow_test
    4   Real x = time^p;
    5   parameter Real p = 1;
     4 Real x = time^(1/3);
    65end pow_test; 
    76}}}
     
    1211 equation index: 2
    1312 type: SIMPLE_ASSIGN
    14  x = time ^ p
     13 x = time ^ 0.3333333333333333
    1514 */
    1615void pow_test_eqFunction_2(DATA *data, threadData_t *threadData)
     
    2625  modelica_real tmp6;
    2726  tmp0 = data->localData[0]->timeValue;
    28   tmp1 = data->simulationInfo->realParameter[0];
     27  tmp1 = 0.3333333333333333;
    2928  if(tmp0 < 0.0 && tmp1 != 0.0)
    3029  {
     
    7877  TRACE_POP
    7978}
     79
    8080}}}
    8181