Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Orekit
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
37
Issues
37
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Orekit
Orekit
Commits
7f09d6da
Commit
7f09d6da
authored
Jan 14, 2019
by
Luc Maisonobe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated test after clock offsets introduction.
parent
e306b4ce
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
33 deletions
+33
-33
src/test/java/org/orekit/estimation/leastsquares/OrbitDeterminationTest.java
...rekit/estimation/leastsquares/OrbitDeterminationTest.java
+4
-4
src/test/resources/orbit-determination/GNSS/od_test_GPS07.in
src/test/resources/orbit-determination/GNSS/od_test_GPS07.in
+29
-29
No files found.
src/test/java/org/orekit/estimation/leastsquares/OrbitDeterminationTest.java
View file @
7f09d6da
...
@@ -228,12 +228,12 @@ public class OrbitDeterminationTest {
...
@@ -228,12 +228,12 @@ public class OrbitDeterminationTest {
GravityFieldFactory
.
addPotentialCoefficientsReader
(
new
ICGEMFormatReader
(
"eigen-6s-truncated"
,
true
));
GravityFieldFactory
.
addPotentialCoefficientsReader
(
new
ICGEMFormatReader
(
"eigen-6s-truncated"
,
true
));
//orbit determination run.
//orbit determination run.
ResultOD
odGNSS
=
run
(
input
,
tru
e
);
ResultOD
odGNSS
=
run
(
input
,
fals
e
);
//test
//test
//definition of the accuracy for the test
//definition of the accuracy for the test
final
double
distanceAccuracy
=
11.
2
;
final
double
distanceAccuracy
=
11.
5
;
final
double
velocityAccuracy
=
3.9
e
-
3
;
final
double
velocityAccuracy
=
4.0
e
-
3
;
//test on the convergence
//test on the convergence
final
int
numberOfIte
=
3
;
final
int
numberOfIte
=
3
;
...
@@ -252,7 +252,7 @@ public class OrbitDeterminationTest {
...
@@ -252,7 +252,7 @@ public class OrbitDeterminationTest {
//test on statistic for the range residuals
//test on statistic for the range residuals
final
long
nbRange
=
4009
;
final
long
nbRange
=
4009
;
final
double
[]
RefStatRange
=
{
-
2.
555
,
2.830
,
0.0
,
0.750
};
final
double
[]
RefStatRange
=
{
-
2.
706
,
2.566
,
0.0
,
0.738
};
Assert
.
assertEquals
(
nbRange
,
odGNSS
.
getRangeStat
().
getN
());
Assert
.
assertEquals
(
nbRange
,
odGNSS
.
getRangeStat
().
getN
());
Assert
.
assertEquals
(
RefStatRange
[
0
],
odGNSS
.
getRangeStat
().
getMin
(),
0.1
);
Assert
.
assertEquals
(
RefStatRange
[
0
],
odGNSS
.
getRangeStat
().
getMin
(),
0.1
);
Assert
.
assertEquals
(
RefStatRange
[
1
],
odGNSS
.
getRangeStat
().
getMax
(),
0.1
);
Assert
.
assertEquals
(
RefStatRange
[
1
],
odGNSS
.
getRangeStat
().
getMax
(),
0.1
);
...
...
src/test/resources/orbit-determination/GNSS/od_test_GPS07.in
View file @
7f09d6da
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment