Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90920933
compute_gravity.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, 00:29
Size
646 B
Mime Type
text/x-c++
Expires
Fri, Nov 8, 00:29 (2 d)
Engine
blob
Format
Raw Data
Handle
22157256
Attached To
R7571 SP4E-TB-TL-FR
compute_gravity.hh
View Options
#ifndef __COMPUTE_GRAVITY__HH__
#define __COMPUTE_GRAVITY__HH__
/* -------------------------------------------------------------------------- */
#include "compute_interaction.hh"
//! Compute Newton gravity interaction
class ComputeGravity : public ComputeInteraction {
// Virtual implementation
public:
//! Newton gravity implementation
void compute(System& system) override;
// Accessors
public:
//! set the gravitational constant
void setG(Real G);
// Members
private:
//! newton constant
Real G = 1.;
};
/* -------------------------------------------------------------------------- */
#endif //__COMPUTE_GRAVITY__HH__
Event Timeline
Log In to Comment