Changes between Initial Version and Version 1 of Ticket #2927
- Timestamp:
- 2014-10-23T13:27:12Z (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2927 – Description
initial v1 1 1 For this model: 2 2 3 3 {{{#!mo 4 4 model miniModel 5 6 5 // PARAMETERS 7 6 parameter Integer nZ = 5; … … 11 10 Real zIn = 4.3; 12 11 Real[nZ] rowZ = {1,2,3,4,5}; 13 14 12 algorithm 15 // Finde zIndex 16 lowerZrow := 0 "Reset Index"; 17 for i in 2:nZ loop 18 if (i == nZ) then 19 lowerZrow := i - 1; 20 break; 21 end if; 22 if zIn < rowZ[i] then 23 lowerZrow := i-1; 24 break; 25 end if; 26 end for; 27 13 // Finde zIndex 14 lowerZrow := 0 "Reset Index"; 15 for i in 2:nZ loop 16 if (i == nZ) then 17 lowerZrow := i - 1; 18 break; 19 end if; 20 if zIn < rowZ[i] then 21 lowerZrow := i-1; 22 break; 23 end if; 24 end for; 28 25 end miniModel; 26 }}} 29 27 30 28 The omc generate 4 zero crossing functions which is not correct