« Basic Principle » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Ligne 7 : Ligne 7 :


To obtain the results, some "getter" methods 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.
== Do not forget to initilaize PATRIUS DATA SET !!! ==
As every computation using [[http://patrius.cnes.fr PATRIUS]], it is mandatory to well intialize a data set including main information to propagate trajectories (atmospheric models, third bodies ephemeris, <font color=#FF8C00 title="Coordinated universal time>UTC</font>/<font color=#FF8C00 title="Temps Atomique International>TAI</font> shifts, ...). Thanks to tha additional jar available here, it is really easy to do it calling the <font color=#4169E1>addResourcesFromPatriusDataset()</font> static method.
<syntaxhighlight lang="java">
// Patrius Dataset initialization (needed for example to get the UTC time)
PatriusDataset.addResourcesFromPatriusDataset() ;
</syntaxhighlight>


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

Version du 1 juillet 2019 à 12:46

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

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

Do not forget to initilaize PATRIUS DATA SET !!!

As every computation using [PATRIUS], it is mandatory to well intialize a data set including main information to propagate trajectories (atmospheric models, third bodies ephemeris, UTC/TAI shifts, ...). Thanks to tha additional jar available here, it is really easy to do it calling the addResourcesFromPatriusDataset() static method.

// Patrius Dataset initialization (needed for example to get the UTC time)
PatriusDataset.addResourcesFromPatriusDataset() ;

How to initialize Opera Properties

A properties file is mandatory to initialize all the parameters needed to tune an OPERA computation. For more explanation about this kind of file, see here.

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<OperaSolarActivityRow> solarActivity = OperaSolarActivity.getSolarActivityFromFile(realPath, predPath, switchCJD);

Reentry simulation object

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

// Reentry simulation creation
final OperaReentrySimulation simulation = new OperaReentrySimulation(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);