-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
53 lines (53 loc) · 2.7 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.cnes.sirius.patrius</groupId>
<artifactId>patrius-tutorials</artifactId>
<version>1.0</version>
<description>Tutorials to learn how to use the CNES' PATRIUS library. For context, PATRIUS is a core space dynamics Java library that enables developers to quickly develop high level algorithms such as orbit extrapolator. PATRIUS contains several sub-libraries that work together and cover low level classes (i.e.: such as matrix, vectors, orbits parameters) as well as high level classes and interfaces (i.e.: numerical propagators, attitude laws, manoeuvers sequences). All the main domains of space dynamics are available: Analysis, algebra and geometry core library (quaternions, derivable functions, integrators …) Core objects for space dynamics (dates, orbits, frames...) Orbit propagation: analytical, semi-analytical and numerical propagators, a full set of force models Maneuvers: impulsive or continuous thrust, sequences Attitude: extensible set of attitude laws, sequences and guidance framework Events: event detection (orbital, sensor events, etc.) and post-processing (chronograms) Spacecraft: characteristics of mass, geometry (drag force), sensors field of view, etc. </description>
<url>https://patrius.cnes.fr</url>
<organization>
<name>CNES</name>
<url>https://cnes.fr</url>
</organization>
<developers>
<developer>
<name>CNES</name>
<email>[email protected]</email>
<organization>CNES</organization>
<organizationUrl>https://cnes.fr</organizationUrl>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>fr.cnes.sirius.addons</groupId>
<artifactId>patriusdataset</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>fr.cnes.sirius.patrius</groupId>
<artifactId>patrius</artifactId>
<version>4.14.1</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compile.source>1.5</maven.compile.source>
<maven.compile.target>1.5</maven.compile.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>