Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Speed computation (non-kinematic) uses a*v^3 for air resistance #730

Open
radim-asamm opened this issue Sep 13, 2024 · 3 comments
Open

Speed computation (non-kinematic) uses a*v^3 for air resistance #730

radim-asamm opened this issue Sep 13, 2024 · 3 comments

Comments

@radim-asamm
Copy link
Contributor

radim-asamm commented Sep 13, 2024

There is this comment explaining how speed for segments ("way segment") is calculated

    // Solves a * v^3 + c * v = d with a Newton method
    // to get the speed v for the section.

Where a represents drag coefficient * reference area for a cyclist. Is the use of cubic term a good model? In many common situations, air resistance (or drag) is modeled as being quadratic with respect to speed, not cubic.

@vodie
Copy link
Contributor

vodie commented Sep 13, 2024

The air resistance is quadratic, but the required power is cubic. For twice the speed you need the eightfold power for the air resistance.

@poutnikl
Copy link
Contributor

poutnikl commented Sep 13, 2024

P = F . v = (F_rolling + F_slope + F_drag ).v = (A + B.sin(alfa)+ Cv^2 ). v = (A + B.sin(alfa)).v + Cv^3

@radim-asamm
Copy link
Contributor Author

I see. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants