ESyS-Particle
4.0.1
|
Frictional+Elastic interaction between particles with fractal distribution of the coefficient of friction. More...
#include <FractalFriction.h>
Public Types | |
typedef FractalFrictionIGP | ParameterType |
typedef double(CFractalFriction::* | ScalarFieldFunction )() const |
typedef Vec3(CFractalFriction::* | VectorFieldFunction )() const |
typedef pair< bool, double > (CFractalFriction::* | CheckedScalarFieldFunction )() const |
![]() |
Public Member Functions | |
CFractalFriction (CParticle *, CParticle *, const FractalFrictionIGP &) | |
![]() | |
CFrictionInteraction (CParticle *, CParticle *) | |
CFrictionInteraction (CParticle *, CParticle *, const CFrictionIGP &) | |
virtual void | calcForces () |
virtual bool | isPersistent () |
void | setTimeStepSize (double dt) |
std::pair< bool, double > | getAbsFrictionalForce () const |
std::pair< bool, double > | getAbsFN () const |
std::pair< bool, double > | getAbsMuFN () const |
std::pair< bool, double > | getSlipVelocity () const |
std::pair< bool, double > | getNormalStress () const |
std::pair< bool, double > | getMaxFricStress () const |
std::pair< bool, double > | getAbsFrictionalStress () const |
double | getAbsForceDeficit () const |
double | getPotentialEnergy () const |
double | getSlipping () const |
double | getSticking () const |
double | getDissipatedEnergy () const |
virtual double | Count () const |
Vec3 | getForce () const |
Vec3 | getNormalForce () const |
virtual Vec3 | getPos () const |
std::pair< bool, double > | getMuEff (const Vec3 &, const Vec3 &) const |
std::pair< bool, double > | getMuEffXY () const |
std::pair< bool, double > | getMuEffXZ () const |
virtual void | saveRestartData (std::ostream &oStream) |
virtual void | loadRestartData (std::istream &iStream) |
![]() | |
APairInteraction (CParticle *, CParticle *) | |
const CParticle * | first () const |
const CParticle * | second () const |
CParticle * | first () |
CParticle * | second () |
pair< int, int > | getPairID () const |
void | setPP (CParticle *, CParticle *) |
void | checkIDs () |
virtual bool | hasTag (int, int) const |
virtual Vec3 | getPosFirst () const |
virtual Vec3 | getPosSecond () const |
esys::lsm::quintuple< Vec3, double, Vec3, double, Vec3 > | getRaw2Data () const |
template<class TmplParticle > | |
void | setPP (const vector< TmplParticle * > &pp) |
![]() | |
bool | initialized () const |
virtual void | calcHeatTrans () |
virtual void | calcHeatFrict () |
vector< int > | getAllID () const |
int | getID () |
Static Public Member Functions | |
static string | getType () |
static ScalarFieldFunction | getScalarFieldFunction (const string &) |
static VectorFieldFunction | getVectorFieldFunction (const string &) |
static CheckedScalarFieldFunction | getCheckedScalarFieldFunction (const string &) |
Friends | |
class | TML_PackedMessageInterface |
ostream & | operator<< (ostream &, const CFractalFriction &) |
Additional Inherited Members | |
![]() | |
double | m_k |
spring constant | |
double | m_r0 |
equilibrium distance | |
double | m_mu |
coefficient of friction | |
double | m_ks |
shear stiffness (Cundall) | |
double | m_dt |
time step | |
Vec3 | m_Ffric |
current frictional force | |
Vec3 | m_force_deficit |
difference between fric. force & force necessary for slip | |
Vec3 | m_cpos |
contact position | |
Vec3 | m_normal_force |
current normal force | |
bool | m_is_slipping |
static/dynamic status of the interaction | |
bool | m_is_touching |
contact status of the interaction | |
double | m_E_diss |
dissipated energy | |
bool | m_scaling |
scaling k with particle radius | |
![]() | |
CParticle * | m_p1 |
CParticle * | m_p2 |
![]() | |
vector< int > | m_id |
id's of the particles involved | |
int | m_iid |
interaction id | |
bool | m_init |
Frictional+Elastic interaction between particles with fractal distribution of the coefficient of friction.
CFractalFriction::CFractalFriction | ( | CParticle * | p1, |
CParticle * | p2, | ||
const FractalFrictionIGP & | param | ||
) |
Construct a CFractalFriction from 2 particle pointers and the parameters
p1 | pointer to the first particle |
p2 | pointer to the second particle |
param | the interaction parameters |
References FractalFrictionIGP::dy, CFrictionInteraction::m_cpos, CFrictionInteraction::m_dt, CFrictionInteraction::m_k, CFrictionInteraction::m_ks, CFrictionInteraction::m_mu, CFrictionInteraction::m_r0, FractalFrictionIGP::mu, and FractalFrictionIGP::ny.
|
static |
Get the particle member function which returns a checked scalar field of a given name.
name | the name of the field |
Reimplemented from CFrictionInteraction.
References CFrictionInteraction::getAbsFrictionalForce(), CFrictionInteraction::getAbsMuFN(), and CFrictionInteraction::getSlipVelocity().
|
static |
Get the particle member function which returns a scalar field of a given name.
name | the name of the field |
Reimplemented from CFrictionInteraction.
References CFrictionInteraction::Count(), CFrictionInteraction::getPotentialEnergy(), and CFrictionInteraction::getSlipping().
|
static |
Get the particle member function which returns a vector field of a given name.
name | the name of the field |
Reimplemented from CFrictionInteraction.