Removed integrator steps being global

feature/19
Daniel Warner 2011-03-29 23:15:57 +01:00
parent 2b2e4641ad
commit e395c6d8ae
2 changed files with 4 additions and 6 deletions

View File

@ -855,9 +855,6 @@ void SGDP4::DeepSpaceInitialize(const double& eosq, const double& sinio, const d
d_xli_ = d_xlamo_;
d_xni_ = RecoveredMeanMotion();
d_atime_ = 0.0;
d_stepp_ = 720.0;
d_stepn_ = -720.0;
d_step2_ = 259200.0;
}
}
@ -983,6 +980,10 @@ void SGDP4::DeepSecular() {
em = Eccentricity() + d_sse_ * t;
xinc = Inclination() + d_ssi_ * t;
double stepp = 720.0;
double stepn = -720.0;
double step2 = 259200.0;
/*
* check if needed
*/

View File

@ -260,9 +260,6 @@ private:
double d_xli_;
double d_xni_;
double d_atime_;
double d_stepp_;
double d_stepn_;
double d_step2_;
struct Constants {
double AE;