Changes between Initial Version and Version 2 of Ticket #4890
- Timestamp:
- 2018-04-18T18:37:04Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4890 – Description
initial v2 2 2 {{{#!modelica 3 3 model pow_test 4 Real x = time^p; 5 parameter Real p = 1; 4 Real x = time^(1/3); 6 5 end pow_test; 7 6 }}} … … 12 11 equation index: 2 13 12 type: SIMPLE_ASSIGN 14 x = time ^ p13 x = time ^ 0.3333333333333333 15 14 */ 16 15 void pow_test_eqFunction_2(DATA *data, threadData_t *threadData) … … 26 25 modelica_real tmp6; 27 26 tmp0 = data->localData[0]->timeValue; 28 tmp1 = data->simulationInfo->realParameter[0];27 tmp1 = 0.3333333333333333; 29 28 if(tmp0 < 0.0 && tmp1 != 0.0) 30 29 { … … 78 77 TRACE_POP 79 78 } 79 80 80 }}} 81 81