ADORe
ADORe is a modular open source software library and toolkit for decision making, planning, control and simulation of automated vehicles
aodemodel.h
Go to the documentation of this file.
1 /********************************************************************************
2  * Copyright (C) 2017-2020 German Aerospace Center (DLR).
3  * Eclipse ADORe, Automated Driving Open Research https://eclipse.org/adore
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License 2.0 which is available at
7  * http://www.eclipse.org/legal/epl-2.0.
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  * Daniel Heß - initial API and implementation
13  ********************************************************************************/
14 
15 #pragma once
16 
17 #include "adoremath.h"
18 
19 namespace adore
20 {
21  namespace mad
22  {
28  template<typename T>
29  class AOdeModel
30  {
31  public:
33  }
34 
35  virtual ~AOdeModel() {
36  }
37 
44  virtual void f(T t, const adoreMatrix<T, 0, 1>& x_in, adoreMatrix<T, 0, 1>& dx_out) = 0;
45  };
51  template<typename T>
53  {
54  public:
56  }
57 
59  }
67  virtual void fh(T t, const adoreMatrix<T, 0, 1>& x_in, adoreMatrix<T, 0, 1>& dx_out, adoreMatrix<T, 0, 1>& y_out) = 0;
68  };
69  }
70 }
Definition: aodemodel.h:53
virtual void fh(T t, const adoreMatrix< T, 0, 1 > &x_in, adoreMatrix< T, 0, 1 > &dx_out, adoreMatrix< T, 0, 1 > &y_out)=0
AOdeModelWithOutput()
Definition: aodemodel.h:55
virtual ~AOdeModelWithOutput()
Definition: aodemodel.h:58
Definition: aodemodel.h:30
virtual void f(T t, const adoreMatrix< T, 0, 1 > &x_in, adoreMatrix< T, 0, 1 > &dx_out)=0
AOdeModel()
Definition: aodemodel.h:32
virtual ~AOdeModel()
Definition: aodemodel.h:35
Definition: areaofeffectconverter.h:20