/usr/include/sofa/simulation/common/SolverImpl.h is in libsofa1-dev 1.0~beta4-10ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | /******************************************************************************
* SOFA, Simulation Open-Framework Architecture, version 1.0 beta 4 *
* (c) 2006-2009 MGH, INRIA, USTL, UJF, CNRS *
* *
* This library is free software; you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 2.1 of the License, or (at *
* your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, but WITHOUT *
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or *
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License *
* for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this library; if not, write to the Free Software Foundation, *
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
*******************************************************************************
* SOFA :: Modules *
* *
* Authors: The SOFA Team and external contributors (see Authors.txt) *
* *
* Contact information: contact@sofa-framework.org *
******************************************************************************/
#ifndef SOFA_SIMULATION_SOLVERIMPL_H
#define SOFA_SIMULATION_SOLVERIMPL_H
#include <sofa/core/componentmodel/behavior/OdeSolver.h>
#include <sofa/core/componentmodel/behavior/LinearSolver.h>
#include <sofa/simulation/common/common.h>
namespace sofa
{
namespace simulation
{
/**
* \brief Implementation of LinearSolver/OdeSolver/MasterSolver relying on component::System.
*
*/
class SOFA_SIMULATION_COMMON_API SolverImpl : public virtual sofa::core::objectmodel::BaseObject
{
public:
typedef sofa::core::componentmodel::behavior::BaseMechanicalState::VecId VecId;
SolverImpl();
virtual ~SolverImpl();
/// @name Visitors and MultiVectors
/// These methods provides an abstract view of the mechanical system to animate.
/// They are implemented by executing Visitors in the subtree of the scene-graph below this solver.
/// @{
/// @name Vector operations
/// Most of these operations can be hidden by using the MultiVector class.
/// @{
/// Wait for the completion of previous operations and return the result of the last v_dot call.
///
/// Note that currently all methods are blocking so finish simply return the result of the last v_dot call.
virtual double finish();
/// Allocate a temporary vector
virtual VecId v_alloc(VecId::Type t);
/// Free a previously allocated temporary vector
virtual void v_free(VecId v);
virtual void v_clear(VecId v); ///< v=0
virtual void v_eq(VecId v, VecId a); ///< v=a
virtual void v_peq(VecId v, VecId a, double f=1.0); ///< v+=f*a
virtual void v_teq(VecId v, double f); ///< v*=f
virtual void v_op(VecId v, VecId a, VecId b, double f=1.0); ///< v=a+b*f
virtual void v_dot(VecId a, VecId b); ///< a dot b ( get result using finish )
virtual void v_threshold(VecId a, double threshold); ///< nullify the values below the given threshold
/// Propagate the given displacement through all mappings
virtual void propagateDx(VecId dx);
/// Propagate the given displacement through all mappings and reset the current force delta
virtual void propagateDxAndResetDf(VecId dx, VecId df);
/// Propagate the given position through all mappings
virtual void propagateX(VecId x);
/// Propagate the given position through all mappings and reset the current force delta
virtual void propagateXAndResetF(VecId x, VecId f);
/// Apply projective constraints to the given vector
virtual void projectResponse(VecId dx, double **W=NULL);
virtual void addMdx(VecId res, VecId dx=VecId(), double factor = 1.0); ///< res += factor M.dx
virtual void integrateVelocity(VecId res, VecId x, VecId v, double dt); ///< res = x + v.dt
virtual void accFromF(VecId a, VecId f); ///< a = M^-1 . f
/// Compute the current force (given the latest propagated position and velocity)
virtual void computeForce(VecId result, bool clear = true, bool accumulate = true);
/// Compute the current force delta (given the latest propagated displacement)
virtual void computeDf(VecId df, bool clear = true, bool accumulate = true);
/// Compute the current force delta (given the latest propagated velocity)
virtual void computeDfV(VecId df, bool clear = true, bool accumulate = true);
/// accumulate $ df += (m M + b B + k K) dx $ (given the latest propagated displacement)
virtual void addMBKdx(VecId df, double m, double b, double k, bool clear = true, bool accumulate = true);
/// accumulate $ df += (m M + b B + k K) velocity $
virtual void addMBKv(VecId df, double m, double b, double k, bool clear = true, bool accumulate = true);
/// Add dt*Gravity to the velocity
virtual void addSeparateGravity(double dt, VecId result=VecId::velocity());
virtual void computeContactForce(VecId result);
virtual void computeContactDf(VecId df);
/// @}
/// @name Matrix operations
/// @{
// BaseMatrix & BaseVector Computations
virtual void addMBK_ToMatrix(defaulttype::BaseMatrix *A, double mFact=1.0, double bFact=1.0, double kFact=1.0, unsigned int offset=0);
//virtual void addMBKdx_ToVector(defaulttype::BaseVector *V, VecId dx, double mFact=1.0, double bFact=1.0, double kFact=1.0, unsigned int offset=0);
virtual void getMatrixDimension(unsigned int * const, unsigned int * const);
virtual void multiVector2BaseVector(VecId src, defaulttype::BaseVector *dest=NULL, unsigned int offset=0);
virtual void multiVectorPeqBaseVector(VecId dest, defaulttype::BaseVector *src=NULL, unsigned int offset=0);
/// @}
/// @name Debug operations
/// @{
/// Dump the content of the given vector.
virtual void print( VecId v, std::ostream& out );
virtual void printWithElapsedTime( VecId v, unsigned time, std::ostream& out=std::cerr );
/// @}
/// @}
protected:
/// Result of latest v_dot operation
double result;
};
} // namespace simulation
} // namespace sofa
#endif
|