OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment.
FMUInfo.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_FMU_INFO_H_
33 #define _OMS_FMU_INFO_H_
34 
35 #include "OMSimulator/Types.h"
36 
37 #include <string>
38 #include <fmi4c.h>
39 namespace oms
40 {
44  class FMUInfo : protected oms_fmu_info_t
45  {
46  public:
47  FMUInfo(const std::string& path);
48  ~FMUInfo();
49 
50  void update(oms_component_enu_t componentType, fmiHandle* fmi4c);
51 
52  std::string getPath() const {return std::string(path);}
53  oms_fmi_kind_enu_t getKind() const {return fmiKind;}
54 
55  bool getCanInterpolateInputs() const {return canInterpolateInputs;}
56  bool getCanGetAndSetFMUstate() const {return canGetAndSetFMUstate;}
57  unsigned int getMaxOutputDerivativeOrder() const {return maxOutputDerivativeOrder;}
58  bool getProvidesDirectionalDerivative() const {return providesDirectionalDerivative;}
59  std::string getGenerationTool() const {return std::string(generationTool);}
60 
61  private:
62  void updateFMI2Info(fmiHandle *fmi4c);
63  void updateFMI3Info(fmiHandle *fmi4c);
64 
65  // methods to copy the object
66  FMUInfo(const FMUInfo& rhs);
67  FMUInfo& operator=(const FMUInfo& rhs);
68  };
69 }
70 
71 #endif
FMU info.
Definition: FMUInfo.h:45
~FMUInfo()
Definition: FMUInfo.cpp:63
bool getCanGetAndSetFMUstate() const
Definition: FMUInfo.h:56
FMUInfo(const FMUInfo &rhs)
not implemented
std::string getGenerationTool() const
Definition: FMUInfo.h:59
void updateFMI3Info(fmiHandle *fmi4c)
Definition: FMUInfo.cpp:141
FMUInfo & operator=(const FMUInfo &rhs)
not implemented
bool getCanInterpolateInputs() const
Definition: FMUInfo.h:55
oms_fmi_kind_enu_t getKind() const
Definition: FMUInfo.h:53
unsigned int getMaxOutputDerivativeOrder() const
Definition: FMUInfo.h:57
bool getProvidesDirectionalDerivative() const
Definition: FMUInfo.h:58
FMUInfo(const std::string &path)
Definition: FMUInfo.cpp:38
std::string getPath() const
Definition: FMUInfo.h:52
void update(oms_component_enu_t componentType, fmiHandle *fmi4c)
Definition: FMUInfo.cpp:78
void updateFMI2Info(fmiHandle *fmi4c)
Definition: FMUInfo.cpp:95
Definition: AlgLoop.h:45