Reentry or S/M Estimation
Aller à la navigation
Aller à la recherche
To compute an estimation of the reentry date, we must call for the estimateReentry method given a list of TLE as input ...
// Reentry estimation computation
final ReentryResult result = simulation.estimateReentry(tles);
System.out.println("Reentry date with " + historyDuration +" days interval: "+result.getReentryDate());
System.out.println("Error estimation: " + result.getErrorEstimationDays() + "days");
System.out.println("Estimated S/M: " + result.getSmDragRefined() + "m2/kg");