« Basic Principle » : différence entre les versions

De Opera
Aller à la navigation Aller à la recherche
Aucun résumé des modifications
Aucun résumé des modifications
Ligne 13 : Ligne 13 :


<syntaxhighlight lang="java">
<syntaxhighlight lang="java">
        // Opera properties configuration
// Opera properties configuration
        final OperaConfigurationProperties conf = OperaConfigurationProperties.getConfigurationProperties("data/opera-configuration.properties");
final OperaConfigurationProperties conf = OperaConfigurationProperties.getConfigurationProperties("data/opera-configuration.properties");
</syntaxhighlight>
</syntaxhighlight>


== How to initialize solar activity ==
== How to initialize solar activity ==

Version du 26 juin 2019 à 15:21

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 "getters" method will be available depending on the type of computation.

How to initialize a Opera Properties

Thanks to a staic method brought by OEPRA, we have just to precise where to search the file :

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

How to initialize solar activity