Snowboard Speed Estimator Formula
Understand the math behind the snowboard speed estimator. Each variable explained with a worked example.
Formulas Used
Estimated Max Speed
speed_mph = round(speed_mps * 2.237 * 10) / 10Speed (km/h)
speed_kmh = round(speed_mps * 3.6 * 10) / 10Vertical Drop
vertical_drop = round(vertical_m * 3.281)Variables
| Variable | Description | Default |
|---|---|---|
slope_angle_deg | Slope Angle(°) | 20 |
run_length_m | Run Length(meters) | 500 |
friction_factor | Snow Conditions | 0.7 |
vertical_m | Derived value= run_length_m * slope_angle_deg / 57.2958 | calculated |
speed_mps | Derived value= sqrt(2 * 9.81 * vertical_m * friction_factor) | calculated |
How It Works
How Snowboard Speed Is Estimated
Simplified Physics
Speed = sqrt(2 x g x Vertical Drop x Friction Factor)
Where g = 9.81 m/s^2 and the friction factor (0-1) accounts for snow friction and air drag.
Typical Speeds
Factors
Actual speed varies with wax quality, rider position (tucking vs standing), wind, temperature, and snow type.
Worked Example
A 20° groomed slope, 500 m run length.
slope_angle_deg = 20run_length_m = 500friction_factor = 0.7
- 01Vertical drop = 500 x sin(20°) = 500 x 0.349 = 174.5 m.
- 02Speed = sqrt(2 x 9.81 x 174.5 x 0.7) = sqrt(2396) = 48.9 m/s.
- 03Speed in mph = 48.9 x 2.237 = 109.4 mph.
- 04Note: actual speed will be lower due to turning and speed-limiting technique.
Ready to run the numbers?
Open Snowboard Speed Estimator