mbsim  4.0.0
MBSim Kernel
tyre_model.h
1/* Copyright (C) 2004-2022 MBSim Development Team
2 *
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
7 *
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 *
17 * Contact: martin.o.foerg@googlemail.com
18 */
19
20#ifndef _TYRE_MODEL_H_
21#define _TYRE_MODEL_H_
22
23#include "mbsim/functions/function.h"
24
25namespace MBSim {
26
27 class TyreContact;
28
29 class TyreModel : public Element {
30 public:
31 TyreModel() : Element(uniqueDummyName(this)) {
32 plotFeature[plotRecursive]=false;
33 }
34 ~TyreModel() override = default;
35
36 virtual void initPlot(std::vector<std::string> &plotColumns) { }
37 virtual void plot(std::vector<double> &plotVector) { }
38#ifndef SWIG
39 using Element::plot;
40#endif
41
42 virtual int getxSize() const { return 0; }
43 virtual int getDMSize() const { return 1; }
44 virtual void updatexd() { }
45
46 virtual void updateGeneralizedForces() { }
47
48 int getDataSize() const { return 17; }
49 virtual fmatvec::VecV getData() const = 0;
50
51 virtual bool motorcycleKinematics() const { return false; }
52
53 virtual fmatvec::VecV getContourParameters() const = 0;
54 virtual double evalFreeRadius() = 0;
55
56 protected:
57 TyreContact* getTyreContact() const;
58 };
59
60}
61
62#endif
basic class of MBSim mainly for plotting
Definition: element.h:56
virtual void plot()
plots time dependent data
Definition: element.cc:74
Element(const std::string &name)
constructor
Definition: element.cc:63
std::vector< double > plotVector
one entry of time series
Definition: element.h:287
std::vector< std::string > plotColumns
columns of time series
Definition: element.h:292
PlotFeatureMap plotFeature
plot feature
Definition: element.h:309
Definition: tyre_contact.h:30
Definition: tyre_model.h:29
virtual void plot()
plots time dependent data
Definition: element.cc:74
namespace MBSim
Definition: bilateral_constraint.cc:30