« Basic Principle » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Ligne 6 : Ligne 6 :
* call for a given method of the <font color=#4169E1>ReentrySimulation</font> object  with a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as arguments
* call for a given method of the <font color=#4169E1>ReentrySimulation</font> object  with a list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> as arguments


To obtain the results, some "getters" method will be available depending on the type of computation.
To obtain the results, some "getter" methods will be available depending on the type of computation.


== How to initialize Opera Properties ==
== How to initialize Opera Properties ==


Thanks to the static method <font color=#4169E1>getConfigurationProperties</font> from <font color=#4169E1>OperaConfigurationProperties</font> class, we have just to precise the file path:
Thanks to the static method <font color=#4169E1>getConfigurationProperties()</font> from <font color=#4169E1>OperaConfigurationProperties</font> class, we have just to precise the file path:


<syntaxhighlight lang="java">
<syntaxhighlight lang="java">
Ligne 19 : Ligne 19 :
== How to initialize solar activity ==
== How to initialize solar activity ==


Similarly, we can use another static method from the <font color=#4169E1>OperaSolarActivity</font> class. This method (<font color=#4169E1>getSolarActivityFromFile</font>) needs as input parameters:
Similarly, we can use another static method from the <font color=#4169E1>OperaSolarActivity</font> class. This method (<font color=#4169E1>getSolarActivityFromFile()</font>) needs as input parameters:


* the path for the file where actual activity is stored
* the path for the file where actual activity is stored
Ligne 46 : Ligne 46 :
Getting the list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> is done in two steps:
Getting the list of <font color=#FF8C00 title="Two Lines Elements">TLE</font> is done in two steps:


# Getting all the available <font color=#FF8C00 title="Two Lines Elements">TLE</font> for a given Norad Id calling the static <font color=#4169E1>OperaTleManager.readTLEs</font> method
# Getting all the available <font color=#FF8C00 title="Two Lines Elements">TLE</font> for a given Norad Id calling the static <font color=#4169E1>OperaTleManager.readTLEs()</font> method
# Extract from this previous list the needed sublist corresponding to a given duration and an "End Of History" date calling the static <font color=#4169E1>OperaTleManager.selectTLEs</font> method
# Extract from this previous list the needed sublist corresponding to a given duration and an "End Of History" date calling the static <font color=#4169E1>OperaTleManager.selectTLEs()</font> method





Version du 26 juin 2019 à 16:00

OPERA proposed a Java interface. To use this Java interface, the developer will have to:

  • Create the OPERA ReentrySimulation object with ...
    • a OperaConfigurationProperties object created from an existing file
    • a List<SolarActivityRow> object including actual and predicted solar activities
  • call for a given method of the ReentrySimulation object with a list of TLE as arguments

To obtain the results, some "getter" methods will be available depending on the type of computation.

How to initialize Opera Properties

Thanks to the static method getConfigurationProperties() from OperaConfigurationProperties class, we have just to precise the file path:

// Opera properties configuration
final OperaConfigurationProperties conf = OperaConfigurationProperties.getConfigurationProperties("data/opera-configuration.properties");

How to initialize solar activity

Similarly, we can use another static method from the OperaSolarActivity class. This method (getSolarActivityFromFile()) needs as input parameters:

  • the path for the file where actual activity is stored
  • the path for the file where predicted activity is stored
  • the CNES Julian date corresponding to the switch between actual and predicted activity
// Solar activity initialization
final String realPath = "data/solar/ACSOL_REAL.act";
final String predPath = "data/solar/ACSOL_PREDICTED.act";
final double switchCJD = 22700.0;                
final List<SolarActivityRow> solarActivity = OperaSolarActivity.getSolarActivityFromFile(realPath, predPath, switchCJD);

Reentry simulation object

To create such an object only consists in calling the dedicated constructor with both previous getConfigurationProperties and List<SolarActivityRow> objects:

// Reentry simulation creation
final ReentrySimulation simulation = new ReentrySimulation(conf, solarActivity);

Getting list of TLE

Getting the list of TLE is done in two steps:

  1. Getting all the available TLE for a given Norad Id calling the static OperaTleManager.readTLEs() method
  2. Extract from this previous list the needed sublist corresponding to a given duration and an "End Of History" date calling the static OperaTleManager.selectTLEs() method


// TLEs initialization
final int noradId = 10479;
final SortedSet<TLE> tlesSet = OperaTleManager.readTLEs("data/tles", noradId);
        
// TLEs selection
final double historyDuration = 80.;
final double endOfHistoryCJD = 22605.0;                
final List<OperaTLE> tles = OperaTleManager.selectTLEs(tlesSet, endOfHistoryCJD, historyDuration);