Skip to content

Commit 228b77d

Browse files
committed
revert CalcSsCorrectionTerm
1 parent b72dc9e commit 228b77d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/math_physics/orbit/relative_orbit_models.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ math::Matrix<6, 6> CalcSsStm(double orbit_radius_m, double gravity_constant_m3_s
117117
return stm;
118118
}
119119

120+
math::Vector<6> CalcSsCorrectionTerm(double orbit_radius_m, double gravity_constant_m3_s2, double elapsed_time_s, OrbitalElements* reference_oe) {
121+
math::Vector<6> correction_term;
122+
// ここでstmを計算してください
123+
return correction_term;
124+
}
125+
120126
math::Matrix<6, 6> CalcSabatiniStm(double orbit_radius_m, double gravity_constant_m3_s2, double elapsed_time_s, OrbitalElements* reference_oe) {
121127
math::Matrix<6, 6> stm;
122128
// ここでstmを計算してください

0 commit comments

Comments
 (0)