OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
ResultReader.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenModelica.
3  *
4  * Copyright (c) 1998-CurrentYear, Open Source Modelica Consortium (OSMC),
5  * c/o Linköpings universitet, Department of Computer and Information Science,
6  * SE-58183 Linköping, Sweden.
7  *
8  * All rights reserved.
9  *
10  * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
11  * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13  * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
14  * ACCORDING TO RECIPIENTS CHOICE.
15  *
16  * The OpenModelica software and the Open Source Modelica
17  * Consortium (OSMC) Public License (OSMC-PL) are obtained
18  * from OSMC, either from the above address,
19  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
20  * http://www.openmodelica.org, and in the OpenModelica distribution.
21  * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
22  *
23  * This program is distributed WITHOUT ANY WARRANTY; without
24  * even the implied warranty of MERCHANTABILITY or FITNESS
25  * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
26  * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
27  *
28  * See the full OSMC Public License conditions for more details.
29  *
30  */
31 
32 #ifndef _OMS_RESULTREADER_H_
33 #define _OMS_RESULTREADER_H_
34 
35 #include <string>
36 #include <vector>
37 
38 namespace oms
39 {
41  {
42  public:
43  struct Series
44  {
45  unsigned int length;
46  double* time;
47  double* value;
48  };
49 
50  ResultReader(const char* filename);
51  virtual ~ResultReader();
52 
53  static ResultReader* newReader(const char* filename);
54 
55  virtual Series* getSeries(const char* var) = 0;
56  const std::vector<std::string>& getAllSignals() const {return signals;}
57 
58  static void deleteSeries(Series** series);
59  static bool compareSeries(Series* seriesA, Series* seriesB, double relTol, double absTol);
60 
61  private:
62  // Stop the compiler generating methods for copying the object
63  ResultReader(ResultReader const& copy); // Not Implemented
64  ResultReader& operator=(ResultReader const& copy); // Not Implemented
65 
66  protected:
67  std::vector<std::string> signals;
68  };
69 }
70 
71 #endif
oms
Definition: AlgLoop.h:44
Util.h
MatReader.h
oms::CSVReader
Definition: CSVReader.h:41
oms::ResultReader::deleteSeries
static void deleteSeries(Series **series)
Definition: ResultReader.cpp:67
almostEqualRelativeAndAbs
static bool almostEqualRelativeAndAbs(double a, double b, double reltol=DOUBLEEQUAL_RELTOL, double abstol=DOUBLEEQUAL_ABSTOL)
Definition: Util.h:68
oms::ResultReader::operator=
ResultReader & operator=(ResultReader const &copy)
oms::ResultReader
Definition: ResultReader.h:40
oms::ResultReader::getAllSignals
const std::vector< std::string > & getAllSignals() const
Definition: ResultReader.h:56
oms::ResultReader::signals
std::vector< std::string > signals
Definition: ResultReader.h:67
oms::ResultReader::~ResultReader
virtual ~ResultReader()
Definition: ResultReader.cpp:46
oms::ResultReader::Series
Definition: ResultReader.h:43
logWarning
#define logWarning(msg)
Definition: Logging.h:101
oms::ResultReader::getSeries
virtual Series * getSeries(const char *var)=0
oms::ResultReader::Series::time
double * time
Definition: ResultReader.h:46
oms::ResultReader::Series::length
unsigned int length
Definition: ResultReader.h:45
oms::MatReader
Definition: MatReader.h:40
oms::ResultReader::compareSeries
static bool compareSeries(Series *seriesA, Series *seriesB, double relTol, double absTol)
Definition: ResultReader.cpp:80
logError
#define logError(msg)
Definition: Logging.h:102
oms::ResultReader::ResultReader
ResultReader(const char *filename)
Definition: ResultReader.cpp:42
CSVReader.h
oms::ResultReader::Series::value
double * value
Definition: ResultReader.h:47
Logging.h
oms::ResultReader::newReader
static ResultReader * newReader(const char *filename)
Definition: ResultReader.cpp:50
OMSFileSystem.h
ResultReader.h