#include <orsa_interaction.h>
Public Member Functions | |
Relativistic () | |
Relativistic (const Relativistic &) | |
void | Acceleration (const Frame &, std::vector< Vector > &) |
double | PotentialEnergy (const Frame &) |
Interaction * | clone () const |
InteractionType | GetType () const |
bool | depends_on_velocity () const |
void | SkipJPLPlanets (const bool b) |
bool | IsSkippingJPLPlanets () const |
Protected Attributes | |
bool | skip_JPL_planets |
Definition at line 377 of file orsa_interaction.h.
Relativistic | ( | ) |
Definition at line 640 of file orsa_interaction.cc.
Referenced by Relativistic::clone().
Relativistic | ( | const Relativistic & | ) |
Definition at line 644 of file orsa_interaction.cc.
Implements Interaction.
Interaction * clone | ( | ) | const [virtual] |
Implements Interaction.
Definition at line 648 of file orsa_interaction.cc.
References Relativistic::Relativistic().
00648 { 00649 return new Relativistic(*this); 00650 }
bool depends_on_velocity | ( | ) | const [inline, virtual] |
Reimplemented from Interaction.
Definition at line 394 of file orsa_interaction.h.
InteractionType GetType | ( | ) | const [inline, virtual] |
Implements Interaction.
Definition at line 389 of file orsa_interaction.h.
References orsa::RELATIVISTIC.
00389 { 00390 return RELATIVISTIC; 00391 }
bool IsSkippingJPLPlanets | ( | ) | const [inline, inherited] |
Definition at line 98 of file orsa_interaction.h.
References Interaction::skip_JPL_planets.
Referenced by Evolution::Integrate(), Stoer::Step(), DissipativeRungeKutta::Step(), RungeKutta::Step(), Radau15::Step(), Leapfrog::Step(), and OrsaFile::Write().
00098 { 00099 return skip_JPL_planets; 00100 }
double PotentialEnergy | ( | const Frame & | f | ) | [virtual] |
Implements Interaction.
Definition at line 705 of file orsa_interaction.cc.
References Newton::PotentialEnergy().
void SkipJPLPlanets | ( | const bool | b | ) | [inline, inherited] |
Definition at line 95 of file orsa_interaction.h.
References Interaction::skip_JPL_planets.
00095 { 00096 skip_JPL_planets = b; 00097 }
bool skip_JPL_planets [protected, inherited] |
Definition at line 102 of file orsa_interaction.h.
Referenced by Interaction::IsSkippingJPLPlanets(), Newton::Newton(), and Interaction::SkipJPLPlanets().