Removed integrator steps being global
parent
2b2e4641ad
commit
e395c6d8ae
|
@ -855,9 +855,6 @@ void SGDP4::DeepSpaceInitialize(const double& eosq, const double& sinio, const d
|
||||||
d_xli_ = d_xlamo_;
|
d_xli_ = d_xlamo_;
|
||||||
d_xni_ = RecoveredMeanMotion();
|
d_xni_ = RecoveredMeanMotion();
|
||||||
d_atime_ = 0.0;
|
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;
|
em = Eccentricity() + d_sse_ * t;
|
||||||
xinc = Inclination() + d_ssi_ * t;
|
xinc = Inclination() + d_ssi_ * t;
|
||||||
|
|
||||||
|
double stepp = 720.0;
|
||||||
|
double stepn = -720.0;
|
||||||
|
double step2 = 259200.0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* check if needed
|
* check if needed
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue