if cdEstimated:
driver.setSelected(True)
driver.setMinValue(1.0)
driver.setMaxValue(3.0)
Which will constrain the Cd to 1 to 3. If you’re getting very large errors, it sounds like your atmospheric density isn’t matching - try the Strengthlevel.WEAK instead?
How many GPS measurements do you have? What length of time do they cover?
What mass and cross-sectional area (in m^2) have you put in for your spacecraft?
What sort of propagator are you using? If you’re using the NRLMSISE model, you should be using the numeric propagator.
What other forces have you added to your propagator?
What is the semi-major axis and eccentricity for your satellite (i.e. what orbital regime is it in)?
-39 is an absurd number - simply limiting the Cd range will stop it happening, but it won’t cure the real problem. Clearly something else is going on here.
Hi all,
thank you so much for your suggestions.
here are the answers:
more or less 360 measurements in a 30 minute interval.
60-70 kg with a cross section close to about 0.8 m^2.
the propagator is numerical.
the forces considered are SRP, Sun/Moon body, relativity, NSG up to 64.64, tides, drag.
the orbit is a SSO at about 600 km.
I noticed that I was missing propagatorBuilder.setMass(satellite_mass) (before it was the default value of 1000 kg).
Now I get values that are about - 1.7 ; -2.2, so still negative, but more consistent (in absolute value).
I think it could be something about the STD of the measurement or the estimator setting: I am using those values:
STD
sigma_position = 5.0 # Noise (in terms of standard deviation of gaussian distribution) of input position data in [m]
sigma_velocity = 0.05 # Noise of input velocity data in [m/s]
weight_position = 1.0 #1/sigma_position**2 # Base weight
You can find an explanation for what the switches mean here. Remember to run the update.sh executable first.
Setting all the weights for the measurement points to 1. I’m not saying this is the reason for the odd Cd value, but generally I’ve always worked with data sets where all the points were equally weighted and it’s the only thing I can think of offhand that might make things a little wonky for you.
Try updating the atmosphere model first, then adjusting your weight values if that doesn’t help.
One other thing I can think of is really hard for me to know if it’s right or not because it’s dependent on how you’re flying your s/c. Essentially if you have a satellite that would have a significantly different cross-sectional area depending on its orientation, and you’re choosing an average value that is significantly different from what the answer would be for the particular data set you’re using, that might be the cause of the error.