Changes between Initial Version and Version 3 of Ticket #2309
- Timestamp:
- 2013-08-13T07:40:41Z (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2309
- Property Component Backend → OMEdit
- Property Owner changed from to
-
Ticket #2309 – Description
initial v3 1 1 With OMEdit i wanted to execute the following model: 2 2 3 {{{#!mo 3 4 model ReadNumber 4 5 import Streams = Modelica.Utilities.Streams; … … 10 11 Real value; 11 12 algorithm 12 (line, eof):= Streams.readLine( filename, lineno );13 value:= Strings.scanReal( line );13 (line, eof) := Streams.readLine( filename, lineno ); 14 value := Strings.scanReal( line ); 14 15 end ReadNumber; 16 }}} 15 17 16 18 The content of numberfile.txt in the path <pathtofile> is 17 19 {{{ 18 20 1.1 19 21 2.1 20 22 3.1 23 }}} 21 24 22 25 OMEdit 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.