Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91214768
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
Sat, Nov 9, 01:23
Size
646 B
Mime Type
text/x-c++
Expires
Mon, Nov 11, 01:23 (2 d)
Engine
blob
Format
Raw Data
Handle
22157256
Attached To
R9484 sp4e-homework-lars-bertil
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