« Reentry or S/M Estimation » : différence entre les versions
Aller à la navigation
Aller à la recherche
Aucun résumé des modifications |
Aucun résumé des modifications |
||
(6 versions intermédiaires par le même utilisateur non affichées) | |||
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 ... | == Reentry date estimation == | ||
To compute an estimation of the reentry date, after initialization as described [[Basic_Principle|here]], 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"> | <syntaxhighlight lang="java"> | ||
// Reentry estimation computation | // Reentry estimation computation | ||
final | final OperaReentryResult 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> | |||
==S/M estimation == | |||
As for the Reentry date computation, we have to initialize as described [[Basic_Principle|here]] then calling the <font color=#4169E1>estimateInitialSm()</font> method given a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as input ... | |||
<syntaxhighlight lang="java"> | |||
// S/M estimation computation | |||
final OperaReentryResult result = simulation.estimateInitialSm(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("A priori S/m: "+result.getSmDragApriori()); | |||
System.out.println("Refined S/m: "+result.getSmDragRefined()); | |||
</syntaxhighlight> | </syntaxhighlight> |
Dernière version du 1 juillet 2019 à 13:56
Reentry date estimation
To compute an estimation of the reentry date, after initialization as described here, we must call for the estimateReentry() method given a list of TLE as input ...
// Reentry estimation computation
final OperaReentryResult 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");
S/M estimation
As for the Reentry date computation, we have to initialize as described here then calling the estimateInitialSm() method given a list of TLE as input ...
// S/M estimation computation
final OperaReentryResult result = simulation.estimateInitialSm(tles);
Then, we will just have to call for the right "getter" methods as in the example below.
System.out.println("A priori S/m: "+result.getSmDragApriori());
System.out.println("Refined S/m: "+result.getSmDragRefined());