TUDelft-CNS-ATM / bluesky

The open source air traffic simulator
GNU General Public License v3.0
342 stars 239 forks source link

Fix turn rate calculation in traffic update loop. #468

Closed andubadea closed 1 year ago

andubadea commented 1 year ago

I think the turn rate calculation in the main traffic update loop has a misplaced parenthesis.

The calculation is currently: omega = g0 * tan(phi / V)

When I think it should be: omega = g0 * tan(phi) / V

andubadea commented 1 year ago

Noticed there is another pull request with the same change.