You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, during orbit estimation, the ephemeris of the selected object is updated with the previously estimated state each time it is called. This can be undesirable. This setup gives issues for example, when you are estimating parameters for different dynamical model configurations in a for-loop on a given set of observations. At the moment, only the first model configuration will be estimated correctly, and afterwards the object ephemeris are not reverted back to the original observation set (to be used for the next estimation).
This can be manually diverted by implementing an if statement that only calls estimation.simulate_observations for the first for-loop iteration.
I propose to add a True/False input to either estimation.simulate_observations or numerical_simulation.Estimator, which stops the estimator from updating the object ephemeris with the estimated state or which reverts it back to the original observation set.
The text was updated successfully, but these errors were encountered:
Currently, during orbit estimation, the ephemeris of the selected object is updated with the previously estimated state each time it is called. This can be undesirable. This setup gives issues for example, when you are estimating parameters for different dynamical model configurations in a for-loop on a given set of observations. At the moment, only the first model configuration will be estimated correctly, and afterwards the object ephemeris are not reverted back to the original observation set (to be used for the next estimation).
This can be manually diverted by implementing an if statement that only calls estimation.simulate_observations for the first for-loop iteration.
I propose to add a True/False input to either estimation.simulate_observations or numerical_simulation.Estimator, which stops the estimator from updating the object ephemeris with the estimated state or which reverts it back to the original observation set.
The text was updated successfully, but these errors were encountered: