Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90938982
ping_pong_ball.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
Wed, Nov 6, 05:28
Size
909 B
Mime Type
text/x-c++
Expires
Fri, Nov 8, 05:28 (2 d)
Engine
blob
Format
Raw Data
Handle
22163138
Attached To
R7571 SP4E-TB-TL-FR
ping_pong_ball.hh
View Options
#ifndef __PING_PONG_BALL__HH__
#define __PING_PONG_BALL__HH__
/* -------------------------------------------------------------------------- */
#include "particle.hh"
//! Class for ping-pong ball
class PingPongBall : public Particle {
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
//! Get contact dissipation
Real& getContactDissipation() { return contact_dissipation; }
//! Get ball radius
Real& getRadius() { return radius; }
void printself(std::ostream& stream) const override;
void initself(std::istream& sstr) override;
private:
Real radius, contact_dissipation;
};
/* -------------------------------------------------------------------------- */
#endif //__PING_PONG_BALL__HH__
Event Timeline
Log In to Comment