mbsim  4.0.0
MBSim Kernel
lsode_integrator.h
1/* Copyright (C) 2004-2006 Martin Förg
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 *
18 * Contact:
19 * martin.o.foerg@googlemail.com
20 *
21 */
22
23#ifndef _LSODE_INTEGRATOR_H_
24#define _LSODE_INTEGRATOR_H_
25
26#include "implicit_integrator.h"
27
28namespace MBSim {
29
38
39 public:
41
42 enum Method {
43 nonstiff=0,
44 stiff,
45 unknown
46 };
47
48 private:
49 double delta(int i, double z) const override;
50 static void fzdot(int* neq, double* t, double* z_, double* zd_);
51 static void jac(int *neq, double* t, double* z_, int* ml, int* mu, double* J_, int* nrowp);
52
53 void init() override;
54
56 double dtMax{0};
58 double dtMin{0};
60 fmatvec::Vec aTol;
62 fmatvec::Vec rTol;
64 double dt0{0};
66 int maxSteps{std::numeric_limits<int>::max()};
68 Method method{nonstiff};
69
70 fmatvec::Vec rWork;
71 int lewt;
72 double r0;
73
74 std::exception_ptr exception;
75
76 public:
77 void setMaximumStepSize(double dtMax_) { dtMax = dtMax_; }
78 void setMinimumStepSize(double dtMin_) { dtMin = dtMin_; }
79 void setAbsoluteTolerance(const fmatvec::Vec &aTol_) { aTol <<= aTol_; }
80 void setAbsoluteTolerance(double aTol_) { aTol.resize(1,fmatvec::INIT,aTol_); }
81 void setRelativeTolerance(const fmatvec::Vec &rTol_) { rTol <<= rTol_; }
82 void setRelativeTolerance(double rTol_) { rTol.resize(1,fmatvec::INIT,rTol_); }
83 void setInitialStepSize(double dt0_) { dt0 = dt0_; }
84 void setStepLimit(int maxSteps_) { maxSteps = maxSteps_; }
85 void setMethod(Method method_) { method = method_; }
86
88 void integrate();
89
90 virtual void initializeUsingXML(xercesc::DOMElement *element);
91 };
92
93}
94
95#endif
Base class for all implicit integrators.
Definition: implicit_integrator.h:34
virtual void integrate()=0
start the integration of the system set by setSystem. Each class implemeting this function should cal...
Hindmarsh’s ODE solver LSODE.
Definition: lsode_integrator.h:37
fmatvec::Vec aTol
Definition: lsode_integrator.h:60
int maxSteps
Definition: lsode_integrator.h:66
virtual void initializeUsingXML(xercesc::DOMElement *element)
initialize integrator
Definition: lsode_integrator.cc:318
Method method
Definition: lsode_integrator.h:68
fmatvec::Vec rTol
Definition: lsode_integrator.h:62
double dtMax
Definition: lsode_integrator.h:56
double dt0
Definition: lsode_integrator.h:64
void integrate()
start the integration of the system set by setSystem. Each class implemeting this function should cal...
Definition: lsode_integrator.cc:97
double dtMin
Definition: lsode_integrator.h:58
namespace MBSim
Definition: bilateral_constraint.cc:30