« Reentry or S/M Estimation » : différence entre les versions
Aller à la navigation
Aller à la recherche
(Page créée avec « TBW ... ») |
Aucun résumé des modifications |
||
Ligne 1 : | Ligne 1 : | ||
To compute an estimation of the reentry date, we must call for the <font color=#4169E1>estimateReentry</font> method given a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as input ... | |||
<syntaxhighlight lang="java"> | |||
// 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"); | |||
</syntaxhighlight> |
Version du 26 juin 2019 à 15:52
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");