mbsim  4.0.0
MBSim Kernel
lsoda_integrator.h
1/* Copyright (C) 2004-2018 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 _LSODA_INTEGRATOR_H_
24#define _LSODA_INTEGRATOR_H_
25
26#include "implicit_integrator.h"
27
28namespace MBSim {
29
30 extern bool odePackInUse;
31
41
42 private:
43 double delta(int i, double z) const override;
44 static void fzdot(int* neq, double* t, double* z_, double* zd_);
45 static void jac(int *neq, double* t, double* z_, int* ml, int* mu, double* J_, int* nrowp);
46
47 void init() override;
48
50 double dtMax{0};
52 double dtMin{0};
54 fmatvec::Vec aTol;
56 fmatvec::Vec rTol;
58 double dt0{0};
60 int maxSteps{std::numeric_limits<int>::max()};
61
62 fmatvec::Vec rWork;
63 int lewt;
64 double r0;
65
66 std::exception_ptr exception;
67
68 public:
69
70 void setMaximumStepSize(double dtMax_) { dtMax = dtMax_; }
71 void setMinimumStepSize(double dtMin_) { dtMin = dtMin_; }
72 void setAbsoluteTolerance(const fmatvec::Vec &aTol_) { aTol <<= aTol_; }
73 void setAbsoluteTolerance(double aTol_) { aTol.resize(1,fmatvec::INIT,aTol_); }
74 void setRelativeTolerance(const fmatvec::Vec &rTol_) { rTol <<= rTol_; }
75 void setRelativeTolerance(double rTol_) { rTol.resize(1,fmatvec::INIT,rTol_); }
76 void setInitialStepSize(double dt0_) { dt0 = dt0_; }
77 void setStepLimit(int maxSteps_) { maxSteps = maxSteps_; }
78
80 void integrate();
81
82 virtual void initializeUsingXML(xercesc::DOMElement *element);
83 };
84
85}
86
87#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 LSODA.
Definition: lsoda_integrator.h:40
void integrate()
start the integration of the system set by setSystem. Each class implemeting this function should cal...
Definition: lsoda_integrator.cc:91
int maxSteps
Definition: lsoda_integrator.h:60
fmatvec::Vec rTol
Definition: lsoda_integrator.h:56
double dtMax
Definition: lsoda_integrator.h:50
double dtMin
Definition: lsoda_integrator.h:52
fmatvec::Vec aTol
Definition: lsoda_integrator.h:54
double dt0
Definition: lsoda_integrator.h:58
virtual void initializeUsingXML(xercesc::DOMElement *element)
initialize integrator
Definition: lsoda_integrator.cc:301
namespace MBSim
Definition: bilateral_constraint.cc:30