Changes between Initial Version and Version 3 of Ticket #2309


Ignore:
Timestamp:
2013-08-13T07:40:41Z (12 years ago)
Author:
Lennart Ochel
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2309

    • Property Component BackendOMEdit
    • Property Owner changed from probably noone to Adeel Asghar
  • Ticket #2309 – Description

    initial v3  
    11With OMEdit i wanted to execute the following model:
    22
     3{{{#!mo
    34model ReadNumber
    45  import Streams = Modelica.Utilities.Streams;
     
    1011  Real value;
    1112algorithm
    12     (line, eof):= Streams.readLine( filename, lineno );
    13     value:= Strings.scanReal( line );
     13  (line, eof) := Streams.readLine( filename, lineno );
     14  value := Strings.scanReal( line );
    1415end ReadNumber;
     16}}}
    1517
    1618The content of numberfile.txt in the path <pathtofile> is
    17 
     19{{{
    18201.1
    19212.1
    20223.1
     23}}}
    2124
    2225OMEdit apparently exectutes all steps including simulation. There is no error message. However, the plot shows no variables to be displayed, as if no simulation had been done.