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
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2003-2014 by The University of Queensland //
// Centre for Geoscience Computing //
// http://earth.uq.edu.au/centre-geoscience-computing //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.apache.org/licenses/LICENSE-2.0 //
// //
/////////////////////////////////////////////////////////////
#ifndef MODEL_LOCALDAMPING_H
#define MODEL_LOCALDAMPING_H
// -- project includes --
#include "Model/LocalDampingIGP.h"
#include "Foundation/vec3.h"
#include "Foundation/quintuple.h"
class CVarMPIBuffer;
class AMPIBuffer;
/*!
\brief Local damping of the particle motion by a damping coefficient
*/
template <class T>
class CLocalDamping
{
protected:
T *m_p; //!< the particle
double m_visc; //!< damping coefficient
double m_dt; //!< time step
double m_E_diss; //!< dissipated energy
Vec3 m_force; //!< current force
public:
typedef CLocalDampingIGP ParameterType;
typedef double (CLocalDamping::* ScalarFieldFunction)() const;
typedef pair<bool,double> (CLocalDamping::* CheckedScalarFieldFunction)() const;
typedef Vec3 (CLocalDamping::* VectorFieldFunction)() const;
static ScalarFieldFunction getScalarFieldFunction(const string&);
static CheckedScalarFieldFunction getCheckedScalarFieldFunction(const string&);
static VectorFieldFunction getVectorFieldFunction(const string&);
CLocalDamping(T*,double,double); // to be obsoleted
CLocalDamping(T*,const CLocalDampingIGP&);
CLocalDamping(T*,CLocalDampingIGP*);
virtual ~CLocalDamping();
void setTimeStepSize(double dt);
virtual void calcForces();
virtual bool hasTag(int,int) const;
virtual Vec3 getPosFirst() const {return m_p->getPos();};
virtual Vec3 getPosSecond() const {return Vec3(0.0,0.0,0.0);};
virtual Vec3 getPos() const {return m_p->getPos();};
vector<int> getAllID() const;
esys::lsm::quintuple<Vec3,double,Vec3,double,Vec3> getRaw2Data() const
{
return
esys::lsm::quintuple<Vec3,double,Vec3,double,Vec3>(
m_p->getPos(),
m_p->getRad(),
Vec3::ZERO,
0,
getPos()
);
}
double getDissipatedEnergy() const;
Vec3 getForce() const;
};
#include "Model/LocalDamping.hpp"
#endif //__DAMPING_H
|