10
2
Fork 0

digital-filters: smol pi

This commit is contained in:
Erin Moon 2020-05-25 22:02:30 -05:00
parent 3b31da88c8
commit 238cac691e
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ if abs(v(2)*a) > (pi/8)
endif
```
If this check is true (ie, there's >Π/8 radians of rotation error on the Y axis), we get the flag! So the challenge here is making the satellite think it's drifted when it hasn't, without making the Kalman filter angry. How can we do that?
If this check is true (ie, there's >π/8 radians of rotation error on the Y axis), we get the flag! So the challenge here is making the satellite think it's drifted when it hasn't, without making the Kalman filter angry. How can we do that?
The star filter observations are pulled right after the previous check, with the following code: