keps
Class SGP0

java.lang.Object
  extended by keps.PropagationModel
      extended by keps.SGP0

public class SGP0
extends PropagationModel

This class implements the SGP0 Orbital Propagation model.

Version:
1st of January, 2008
Author:
Phelps Williams

Constructor Summary
SGP0()
           
 
Method Summary
 void update(Satellite sat, double tsince, Vector3 pos, Vector3 velo)
          The abstract update method implements the propagation model which, provided a satellite and a time, calculates a position and velocity for the object.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SGP0

public SGP0()
Method Detail

update

public void update(Satellite sat,
                   double tsince,
                   Vector3 pos,
                   Vector3 velo)
The abstract update method implements the propagation model which, provided a satellite and a time, calculates a position and velocity for the object.

Specified by:
update in class PropagationModel
Parameters:
sat - Satellite The satellite to be propagated.
tsince - double The time at which predictions should be made.
pos - Vector3 The ECI position vector populated by the model.
velo - Vector3 The ECI velocity vector populated by the model.