Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

High fidelity noise models for orbit determination #146

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,16 +135,15 @@ jobs:
# grcov . -s . --binary-path ./target/debug/ -t html --branch --ignore-not-existing -o ./target/debug/coverage/ # Export as HTML
run: |
cargo test --lib
cargo test stop_cond_nrho_apo
cargo test od_robust
cargo test od_resid_reject_
grcov . --binary-path ./target/debug/ -t lcov -s . > lcov.txt
grcov . --binary-path ./target/debug/ -t lcov -s . > lcov-lib.txt
cargo test -- cosmic mission_design orbit_determination propulsion test_monte_carlo_epoch
grcov . --binary-path ./target/debug/ -t lcov -s . > lcov-integ.txt

- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./lcov.txt
files: ./lcov-lib.txt, ./lcov-integ.txt

release:
name: Release
Expand Down
2 changes: 1 addition & 1 deletion src/cosmic/orbit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use crate::io::{
};
use crate::linalg::{Const, Matrix3, Matrix6, OVector, Vector3, Vector6};
use crate::mc::MultivariateNormal;
use crate::md::ui::Objective;
use crate::md::prelude::Objective;
use crate::md::StateParameter;

use crate::time::{Duration, Epoch, Unit};
Expand Down
4 changes: 2 additions & 2 deletions src/dynamics/spacecraft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ use crate::io::gravity::HarmonicsMem;

use crate::io::{ConfigError, Configurable};
use crate::linalg::{Const, DimName, OMatrix, OVector, Vector3};
pub use crate::md::ui::SolarPressure;
use crate::md::ui::{Harmonics, PointMasses};
pub use crate::md::prelude::SolarPressure;
use crate::md::prelude::{Harmonics, PointMasses};
use crate::State;

use std::fmt;
Expand Down
2 changes: 1 addition & 1 deletion src/io/dynamics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl ConfigRepr for DynamicsSerde {}
fn test_serde() {
use crate::cosmic::Cosm;
use crate::io::Configurable;
use crate::md::ui::SpacecraftDynamics;
use crate::md::prelude::SpacecraftDynamics;
use std::collections::HashMap;

let yaml = "
Expand Down
1 change: 0 additions & 1 deletion src/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ pub mod frame_serde;
/// Handles loading of gravity models using files of NASA PDS and GMAT COF. Several gunzipped files are provided with nyx.
pub mod gravity;
pub mod matrices;
// pub mod odp;
pub mod orbit;
pub mod quantity;
/// Handles reading random variables
Expand Down
Loading