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
30 extern bool odePackInUse;
31
40
41 public:
42
43 enum Method {
44 nonstiff=0,
45 stiff,
46 unknown
47 };
48
49 private:
50 double delta(int i, double z) const override;
51 static void fzdot(int* neq, double* t, double* z_, double* zd_);
52 static void jac(int *neq, double* t, double* z_, int* ml, int* mu, double* J_, int* nrowp);
53
54 void init() override;
55
57 double dtMax{0};
59 double dtMin{0};
61 fmatvec::Vec aTol;
63 fmatvec::Vec rTol;
65 double dt0{0};
67 int maxSteps{std::numeric_limits<int>::max()};
69 Method method{nonstiff};
70
71 fmatvec::Vec rWork;
72 int lewt;
73 double r0;
74
75 std::exception_ptr exception;
76
77 public:
78 void setMaximumStepSize(double dtMax_) { dtMax = dtMax_; }
79 void setMinimumStepSize(double dtMin_) { dtMin = dtMin_; }
80 void setAbsoluteTolerance(const fmatvec::Vec &aTol_) { aTol <<= aTol_; }
81 void setAbsoluteTolerance(double aTol_) { aTol.resize(1,fmatvec::INIT,aTol_); }
82 void setRelativeTolerance(const fmatvec::Vec &rTol_) { rTol <<= rTol_; }
83 void setRelativeTolerance(double rTol_) { rTol.resize(1,fmatvec::INIT,rTol_); }
84 void setInitialStepSize(double dt0_) { dt0 = dt0_; }
85 void setStepLimit(int maxSteps_) { maxSteps = maxSteps_; }
86 void setMethod(Method method_) { method = method_; }
87
89 void integrate();
90
91 virtual void initializeUsingXML(xercesc::DOMElement *element);
92 };
93
94}
95
96#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:39
fmatvec::Vec aTol
Definition: lsode_integrator.h:61
int maxSteps
Definition: lsode_integrator.h:67
virtual void initializeUsingXML(xercesc::DOMElement *element)
initialize integrator
Definition: lsode_integrator.cc:314
Method method
Definition: lsode_integrator.h:69
fmatvec::Vec rTol
Definition: lsode_integrator.h:63
double dtMax
Definition: lsode_integrator.h:57
double dt0
Definition: lsode_integrator.h:65
void integrate()
start the integration of the system set by setSystem. Each class implemeting this function should cal...
Definition: lsode_integrator.cc:93
double dtMin
Definition: lsode_integrator.h:59
namespace MBSim
Definition: bilateral_constraint.cc:30