Changes between Initial Version and Version 1 of Ticket #2927


Ignore:
Timestamp:
2014-10-23T13:27:12Z (10 years ago)
Author:
Lennart Ochel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2927 – Description

    initial v1  
    11For this model:
    22
    3 
     3{{{#!mo
    44model miniModel
    5 
    65  // PARAMETERS
    76  parameter Integer nZ = 5;
     
    1110  Real zIn = 4.3;
    1211  Real[nZ] rowZ = {1,2,3,4,5};
    13 
    1412algorithm
    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;
    2825end miniModel;
     26}}}
    2927
    3028The omc generate 4 zero crossing functions which is not correct