« Reentry or S/M Estimation » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 4 : Ligne 4 :
// Reentry estimation computation
// Reentry estimation computation
final ReentryResult result = simulation.estimateReentry(tles);
final ReentryResult result = simulation.estimateReentry(tles);
</syntaxhighlight>


Then, we will just have to call for the right "getter" methods as in the example below.
<syntaxhighlight lang="java">
System.out.println("Reentry date with " + historyDuration +" days interval: "+result.getReentryDate());
System.out.println("Reentry date with " + historyDuration +" days interval: "+result.getReentryDate());
System.out.println("Error estimation: " + result.getErrorEstimationDays() + "days");
System.out.println("Error estimation: " + result.getErrorEstimationDays() + "days");
System.out.println("Estimated S/M: " + result.getSmDragRefined() + "m2/kg");
System.out.println("Estimated S/M: " + result.getSmDragRefined() + "m2/kg");
</syntaxhighlight>
</syntaxhighlight>

Version du 26 juin 2019 à 15:53

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);

Then, we will just have to call for the right "getter" methods as in the example below.

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");