Gear ratios affect variable

Hey guys, I’m pretty new to all the electric building, so I don’t know many sources to check. I was wondering how gear ratios can affect speed, acceleration, and torque. Also, should wheel size be chosen off of your gear ratios to balance out the torque, acceleration and speed? I know y’all are a great help. Thanks

Thanks, but I wasn’t looking for a calculator. I wanted to know how gear ratios affect torque acceleration and speed😕

A bigger ratio give more torque and less top speed.


say a hub motor has a ratio of 1:1 so very fast (40mph) but not crazy acceleration.

a standard belt drive has 16/36t = 1:2.25, so 2.25 X the torque of a direct drive, but less top speed. see calculator.

on my build going from 16/36 to 14/36 = 2.57, better for hills and acceleration, abot 3-4 mph slower max.

1 Like

Not only gear ratios affect speed, acceleration, and torque. Don’t forget everything about the motor will, motor width, 50mm vs 63mm. Motor length 54mm vs 64mm vs ~74mm. KV rating of the motor. Then you have the ESC which can control the voltage to the motor. Then you have the actual batteries themselves, cell count, voltage sag, amperage. Then wheel size, wheel surface area.

But for your question, gear ratios, you trade off between higher top speed lower torque/acceleration and lower top speed and higher torque/acceleration.

What build is best? We definitely need your desired results to figure that out, the environment as in how hilly you’ll be skating around, and the rider’s weight.

1 Like

Yes, you are looking for a calculator. It’s going to be a swap between speed and torque.

Use a calculator. Plug in your setup. My example for you will be a really vanilla one using Enertion’s typical:

83mm (flywheel or clone) - 190kv (RSpec example) - 8s (safe starting setup) - 15/36 (motor/wheel gearing):

My calc vs RC Calc is pretty close. 22-26mph top speed. 5400-6300 rpm. According to Benjamin Vedder the sweet spot is around 8600 rpm (someone correct - this is from memory).

to your point - this is a gear reduction of 2.4:1. The higher the ration (i usually top out around 3:1) - the better the startup accel and torque, with less top speed. I also target a top speed of 25mph.

Maybe clarify what you’re trying to accomplish. How heavy are you, how steep of hills do you want to climb (or flats?), and how fast do you want to go?

HTH - GL!

1 Like

Thanks for the great help. I’m writing a presentation with a compilation of basic facts, diagrams, and pictures for the beginner builders like me.

How do the number of teeth on a belt affect the gear ratios and the boards overall torque, acceleration, and speed?

run a calculator and do the math if you want exact ratios.

i usually see 3mm wheel difference equals about 1-1.5mph increase/decrease. Pretty linear (as you’d expect). the voltage makes the biggest difference, with 6s to 12s = 2x the speed (also as expected).

this is good ‘ol transmission and differential gearing equations. What we don’t’ usually have is actual torque output in ft lbs or similar. No idea how to get that unless you are going to Dyno your esk8! (someone do it for science!)

according to the code I found on the calculator @rodriguejoe1 linked to you (I translated that code from JS to ruby), you can see at this line (original HTML page code line 742), or on my code at this line here… there’s something similar to this “simple” formula:

top_speed_km_per_hour = motor_rpm * wheel_size_in_mm * Math::PI * gear_ratio

(this is actually valid code #ruby_ftw ^^)

You derive motor_rpm from the motor KV and the voltage you are running, Math::PI is always π and gear_ratio you get it from your pulley teeths. That altogether gets you the (theoretical max) top speed.

original code (JS in HTML page line 742):

var topspeedMPH = motorRPM * gearWheelSize * 3.1415926535897932 * 0.00003728226 * gearRatio;

^^

What is the “0.00003728226” value in the top speed calculation ?