OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
SignalDerivative.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_SIGNAL_DERIVATIVE_H_
33 #define _OMS_SIGNAL_DERIVATIVE_H_
34 
35 #include "Types.h"
36 #include <fmilib.h>
37 #include <string>
38 
39 namespace oms
40 {
42  {
43  public:
45  SignalDerivative(double der);
46  SignalDerivative(unsigned int order, fmi2_import_t* fmu, fmi2_value_reference_t vr);
48 
49  // methods to copy the object
52 
53  const unsigned int getMaxDerivativeOrder() const {return order;}
54  const double* getDerivatives() const {return values;}
55  oms_status_enu_t setRealInputDerivatives(fmi2_import_t* fmu, fmi2_value_reference_t vr) const;
56 
57  operator std::string() const;
58 
59  private:
60  unsigned int order;
61  double* values;
62  };
63 }
64 
65 #endif
const double * getDerivatives() const
Definition: SignalDerivative.h:54
SignalDerivative()
Definition: SignalDerivative.cpp:38
oms_status_enu_t
Definition: Types.h:43
SignalDerivative & operator=(const SignalDerivative &rhs)
Definition: SignalDerivative.cpp:98
~SignalDerivative()
Definition: SignalDerivative.cpp:80
double * values
Definition: SignalDerivative.h:61
const unsigned int getMaxDerivativeOrder() const
Definition: SignalDerivative.h:53
unsigned int order
Definition: SignalDerivative.h:60
Definition: AlgLoop.h:44
oms_status_enu_t setRealInputDerivatives(fmi2_import_t *fmu, fmi2_value_reference_t vr) const
Definition: SignalDerivative.cpp:122
Definition: SignalDerivative.h:41