Skip to content

Commit

Permalink
revert CalcSsCorrectionTerm
Browse files Browse the repository at this point in the history
  • Loading branch information
YuseiAlexS committed Sep 24, 2024
1 parent 280b6ea commit 7b82068
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/math_physics/orbit/relative_orbit_models.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,12 @@ math::Matrix<6, 6> CalcSsStm(double orbit_radius_m, double gravity_constant_m3_s
return stm;
}

math::Vector<6> CalcSsCorrectionTerm(double orbit_radius_m, double gravity_constant_m3_s2, double elapsed_time_s, OrbitalElements* reference_oe) {
math::Vector<6> correction_term;
// ここでstmを計算してください
return correction_term;
}

math::Matrix<6, 6> CalcSabatiniStm(double orbit_radius_m, double gravity_constant_m3_s2, double elapsed_time_s, OrbitalElements* reference_oe) {
math::Matrix<6, 6> stm;
// ここでstmを計算してください
Expand Down

0 comments on commit 7b82068

Please sign in to comment.