OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment.
Loading...
Searching...
No Matches
FMUInfo.h
Go to the documentation of this file.
1/*
2 * This file is part of OpenModelica.
3 *
4 * Copyright (c) 1998-2026, 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 AGPL VERSION 3 LICENSE OR
11 * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.8.
12 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13 * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GNU AGPL
14 * VERSION 3, ACCORDING TO RECIPIENTS CHOICE.
15 *
16 * The OpenModelica software and the OSMC (Open Source Modelica Consortium)
17 * Public License (OSMC-PL) are obtained from OSMC, either from the above
18 * address, from the URLs:
19 * http://www.openmodelica.org or
20 * https://github.com/OpenModelica/ or
21 * http://www.ida.liu.se/projects/OpenModelica,
22 * and in the OpenModelica distribution.
23 *
24 * GNU AGPL version 3 is obtained from:
25 * https://www.gnu.org/licenses/licenses.html#GPL
26 *
27 * This program is distributed WITHOUT ANY WARRANTY; without
28 * even the implied warranty of MERCHANTABILITY or FITNESS
29 * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
30 * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
31 *
32 * See the full OSMC Public License conditions for more details.
33 *
34 */
35
36#ifndef _OMS_FMU_INFO_H_
37#define _OMS_FMU_INFO_H_
38
39#include "OMSimulator/Types.h"
40
41#include <string>
42#include <fmi4c.h>
43namespace oms
44{
48 class FMUInfo : protected oms_fmu_info_t
49 {
50 public:
51 FMUInfo(const std::string& path);
52 ~FMUInfo();
53
54 void update(oms_component_enu_t componentType, fmiHandle* fmi4c);
55
56 std::string getPath() const {return std::string(path);}
57 oms_fmi_kind_enu_t getKind() const {return fmiKind;}
58
59 bool getCanInterpolateInputs() const {return canInterpolateInputs;}
60 bool getCanGetAndSetFMUstate() const {return canGetAndSetFMUstate;}
61 unsigned int getMaxOutputDerivativeOrder() const {return maxOutputDerivativeOrder;}
62 bool getProvidesDirectionalDerivative() const {return providesDirectionalDerivative;}
63 std::string getGenerationTool() const {return std::string(generationTool);}
64
65 private:
66 void updateFMI2Info(fmiHandle *fmi4c);
67 void updateFMI3Info(fmiHandle *fmi4c);
68
69 // methods to copy the object
70 FMUInfo(const FMUInfo& rhs);
71 FMUInfo& operator=(const FMUInfo& rhs);
72 };
73}
74
75#endif
FMU info.
Definition FMUInfo.h:49
~FMUInfo()
Definition FMUInfo.cpp:67
bool getCanGetAndSetFMUstate() const
Definition FMUInfo.h:60
FMUInfo(const FMUInfo &rhs)
not implemented
std::string getGenerationTool() const
Definition FMUInfo.h:63
void updateFMI3Info(fmiHandle *fmi4c)
Definition FMUInfo.cpp:145
bool getCanInterpolateInputs() const
Definition FMUInfo.h:59
oms_fmi_kind_enu_t getKind() const
Definition FMUInfo.h:57
unsigned int getMaxOutputDerivativeOrder() const
Definition FMUInfo.h:61
bool getProvidesDirectionalDerivative() const
Definition FMUInfo.h:62
std::string getPath() const
Definition FMUInfo.h:56
void update(oms_component_enu_t componentType, fmiHandle *fmi4c)
Definition FMUInfo.cpp:82
void updateFMI2Info(fmiHandle *fmi4c)
Definition FMUInfo.cpp:99
FMUInfo & operator=(const FMUInfo &rhs)
not implemented
Definition AlgLoop.h:49