OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
ConnectionGeometry.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 _SSD_CONNECTION_GEOMETRY_H_
33 #define _SSD_CONNECTION_GEOMETRY_H_
34 
35 #include "../Types.h"
36 
37 #include <pugixml.hpp>
38 
39 #include <string>
40 
41 namespace oms
42 {
43  namespace ssd
44  {
46  {
47  public:
49  ConnectionGeometry(const ConnectionGeometry& rhs, bool inverse=false);
51 
53 
54  void setPoints(unsigned int n, double* pointsX, double* pointsY);
55 
56  unsigned int getLength() const {return this->n;}
57  const double* getPointsX() const {return this->pointsX;}
58  const double* getPointsY() const {return this->pointsY;}
59 
60  oms_status_enu_t exportToSSD(pugi::xml_node& root) const;
61  oms_status_enu_t importFromSSD(const pugi::xml_node& node);
62  };
63  }
64 }
65 
66 #endif
void setPoints(unsigned int n, double *pointsX, double *pointsY)
Definition: ConnectionGeometry.cpp:119
const double * getPointsX() const
Definition: ConnectionGeometry.h:57
ConnectionGeometry()
Definition: ConnectionGeometry.cpp:42
oms_status_enu_t
Definition: Types.h:43
ConnectionGeometry & operator=(ConnectionGeometry const &rhs)
Definition: ConnectionGeometry.cpp:87
oms_status_enu_t exportToSSD(pugi::xml_node &root) const
Definition: ConnectionGeometry.cpp:143
const double * getPointsY() const
Definition: ConnectionGeometry.h:58
5.3.2.1 ssd:ConnectionGeometry
Definition: Types.h:277
Definition: AlgLoop.h:44
~ConnectionGeometry()
Definition: ConnectionGeometry.cpp:76
Definition: ConnectionGeometry.h:45
double * pointsY
Definition: Types.h:287
oms_status_enu_t importFromSSD(const pugi::xml_node &node)
Definition: ConnectionGeometry.cpp:169
unsigned int n
Definition: Types.h:291
unsigned int getLength() const
Definition: ConnectionGeometry.h:56
double * pointsX
Definition: Types.h:282