Hi all,
I am starting to use the class WalkerConstellation and its related classes. I want to propagate the orbits of the entire constellation and I was wondering if my understanding of the use of the class was correct.
To propagate an entire constellation, instead of propagating each satellite individually, the most efficient way is to:
- set an initial state and build a propagator only for this one
- build the Walker constellation (definition of nb of planes and satellites)
- propagate the initial state
- on each step, rebuild the regular slots
I am guessing this is time-efficient but probably less accurate in terms of propagation? The propagation model will make the whole constellation drift as one, whereas if I had propagators for each individual satellite, the drift for each satellite will be slightly different.
Is this correct?
final EphemerisGenerator generator = propagator.getEphemerisGenerator();
SpacecraftState finalState = propagator.propagate(initialDate.shiftedBy(simDuration));
BoundedPropagator ephemeris = generator.getGeneratedEphemeris();
// Create Walker Constellation
WalkerConstellation constellation = new WalkerConstellation(1152, 24, 0);
List<List<WalkerConstellationSlot<Orbit>>> constellationSlots;
//Propagate from the initial date one day ahead
for (AbsoluteDate propagationDate = initialDate;
propagationDate.compareTo(initialDate.shiftedBy(simDuration)) <= 0;
propagationDate = propagationDate.shiftedBy(dt)){
currentStep++;
double progress = (double) currentStep / totalSteps * 100;
if (progress % 10 == 0){
System.out.printf("Date: %s Progress: %.0f%%\n", propagationDate, progress);
}
SpacecraftState spacecraftState = ephemeris.propagate(propagationDate);
constellationSlots = constellation.buildRegularSlots(spacecraftState.getOrbit());
}