Skip to content

Commit

Permalink
Merge pull request #146 from nyx-space/88-high-fidelity-transponder-m…
Browse files Browse the repository at this point in the history
…odeling-different-noise-models

High fidelity noise models for orbit determination
  • Loading branch information
ChristopherRabotin committed May 15, 2023
2 parents bae4921 + 0125897 commit 9df435a
Show file tree
Hide file tree
Showing 55 changed files with 223 additions and 5,058 deletions.
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

0 comments on commit 9df435a

Please sign in to comment.