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
|
/////////////////////////////////////////////////////////////
// //
// 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_DAMPING_H
#define MODEL_DAMPING_H
// -- project includes --
#include "Model/DampingIGP.h"
#include "Foundation/vec3.h"
#include "Foundation/quintuple.h"
class CVarMPIBuffer;
class AMPIBuffer;
/*!
\brief Damping of the particle motion by an artificial viscosity
*/
template <class T>
class CDamping
{
protected:
T *m_p; //!< the particle
Vec3 m_vref; //!< reference velocity
double m_visc; //!< artificial viscosity
double m_dt; //!< time step
int m_maxiter; //!< iteration limit
double m_E_diss; //!< dissipated energy
Vec3 m_force; //!< current force
static double s_limit2; //!< square error limit for iteration
static int s_flops;
public:
typedef CDampingIGP ParameterType;
typedef double (CDamping::* ScalarFieldFunction)() const;
typedef pair<bool,double> (CDamping::* CheckedScalarFieldFunction)() const;
typedef Vec3 (CDamping::* VectorFieldFunction)() const;
static ScalarFieldFunction getScalarFieldFunction(const string&);
static CheckedScalarFieldFunction getCheckedScalarFieldFunction(const string&);
static VectorFieldFunction getVectorFieldFunction(const string&);
CDamping(T*,const Vec3&,double,double,int); // to be obsoleted
CDamping(T*,const CDampingIGP&);
CDamping(T*,CDampingIGP*);
virtual ~CDamping();
inline void setLimit(double limit){s_limit2=limit*limit;};
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()
);
}
static void zeroFlops(){s_flops=0;};
static int Flops(){return s_flops;};
double getDissipatedEnergy() const;
Vec3 getForce() const;
};
#include "Model/Damping.hpp"
#endif //__DAMPING_H
|