Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91307630
ntn_friction_coulomb.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 9, 20:52
Size
3 KB
Mime Type
text/x-c++
Expires
Mon, Nov 11, 20:52 (2 d)
Engine
blob
Format
Raw Data
Handle
22238437
Attached To
rAKA akantu
ntn_friction_coulomb.hh
View Options
/**
* @file ntn_friction_coulomb.hh
* @author David Kammer <david.kammer@epfl.ch>
* @date Tue Nov 20 14:19:43 2012
*
* @brief implementation of coulomb friction
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu 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 3 of the License, or (at your option) any
* later version.
*
* Akantu 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 Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __AST_NTN_FRICTION_COULOMB_HH__
#define __AST_NTN_FRICTION_COULOMB_HH__
/* -------------------------------------------------------------------------- */
// simtools
#include "ntn_contact.hh"
#include "ntn_friction.hh"
__BEGIN_SIMTOOLS__
/* -------------------------------------------------------------------------- */
using namespace akantu;
/* -------------------------------------------------------------------------- */
class NTNFrictionCoulomb : public NTNFriction {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
NTNFrictionCoulomb(NTNContact & contact,
const FrictionID & id = "friction_coulomb",
const MemoryID & memory_id = 0);
virtual ~NTNFrictionCoulomb() {};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
/// register syncronizedarrays for sync
virtual void registerSyncronizedArray(SyncronizedArrayBase & array);
/// dump restart file
virtual void dumpRestart(std::string file_name) const;
/// read restart file
virtual void readRestart(std::string file_name);
/// function to print the contain of the class
virtual void printself(std::ostream & stream, int indent = 0) const;
protected:
/// compute frictional strength according to friction law
virtual void computeFrictionalStrength();
/* ------------------------------------------------------------------------ */
/* Accessors */
/* ------------------------------------------------------------------------ */
public:
// set friction coefficient to all nodes
void setMu(Real mu);
// set friction coefficient only to node (global index)
void setMu(UInt node, Real mu);
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
protected:
// friction coefficient
SyncronizedArray<Real> mu;
};
/* -------------------------------------------------------------------------- */
/* inline functions */
/* -------------------------------------------------------------------------- */
//#include "ntn_friction_coulomb_inline_impl.cc"
/// standard output stream operator
inline std::ostream & operator <<(std::ostream & stream, const NTNFrictionCoulomb & _this)
{
_this.printself(stream);
return stream;
}
__END_SIMTOOLS__
#endif /* __AST_NTN_FRICTION_COULOMB_HH__ */
Event Timeline
Log In to Comment