|
-
mtbr member
Reputation:
how much to shorten a stem for a wider bar
I appreciate this is very subjective but I'm looking at using a wider handlebar and am trying to decide how much to shorten the stem to keep the steering the same. As a rule of thumb does 1cm off the stem for an extra inch on the bar sound about right?
thanks.
-
10mm shorter stem for every 20mm of bar width. Of course, this should be taken as a general rule of thumb.
I would follow you into the mists of Avalon if that's what you mean.
If all else fails, I blame it on my tiny wheel size
-
Hiyo,
I think that short stem / wide bars is an arm-shoulder-chest ergonomics thing and a center of gravity relative to the bike thing, more than geometry. I know people are sensitive to steering 'speed'. So I did the trigonometry in a crappy python script. If I had all alfternoon I would look into getting it to work in HTML somehow so it would be interactive in the thread(??). Also, this is flattened to 2D.
Sample output using numbers I think are common to XC setups looking for their first wide-bar experience:
Enter handlebar width in millimeters.
> 680
Enter stem length in millimters.
> 90
Steering coefficient is:
351.710107901
The following table shows stem-bar combinations with the same steering coefficient.
35 699.928567784
40 698.856208386
45 697.638875064
50 696.275807421
55 694.766147707
60 693.108938047
65 691.303117308
70 689.347517585
75 687.240860252
80 684.981751582
85 682.568677863
90 680.0
95 677.273947528
100 674.388612003
I was really surprised to see how little bar length goes up as stem length comes down to retain the same leverage (what I called 'steering coefficient'). That's where the ergonomics issue comes in. Percieved steering speed and overall handling are going to take your body's position relative to the bars into account, not just force on a lever like some robot in a test rig. Wide feels good! But It looks like it slows your steering considerably, even w/ a short stem.
code follows if someone wants to check the math. Cheers!
# Handlebar calculator
import math
def calculate_lever(bar_width, stem_length):
lever = math.sqrt(pow((bar_width * 0.5), 2) + pow(stem_length, 2))
return lever
print "Enter handlebar width in millimeters."
bar_width = int(raw_input("> "))
print "Enter stem length in millimters."
stem_length = int(raw_input("> "))
print "Steering coefficient is:"
lever = calculate_lever(bar_width, stem_length)
print lever
print "The following table shows stem-bar combinations with the same steering coefficient."
for stems in range(35, 105, 5):
s2 = pow(stems, 2)
lever2 = pow(lever, 2)
b2 = lever2 - s2
b = 2 * math.sqrt(b2)
print stems, b
-
Nice list.
I think the 20mm for 10mm is a fairly good method to follow.
Personally, I feel that too short a stem can cause the rider to be more prone to OTB's. A wider bar won't keep keep your reach in front of you like a longer stem will. That said, I currently have a 70mm stem with a 750mm bar (which will get cut to 730mm soon.)
-
So I went from a 685 to a Havoc carbon fiber 750 bar with my original 100 stem. People told me I had to go to a shorter stem because it couldn't work. I'm 6-3, riding an xl Tracer vp. I like the ride/love the wider bars, but I have noticed a little bit of front end dive in some tight turns. I was thinking about going to an 80mm stem but I wonder about the overall stability over the tight corner dive? It's only 1/2" difference but is it worth the try/expense?
"El Cajon?, that's the anus of San Diego"
-
mtbr member
Reputation:
snfoilhat - I was thinking it would be useful to try something like this but also include head angle so you could also think about stem / handlebar combos to compensate for going with a longer fork. Can't help feeling your results from your script look a little suspect, am not really too sure about the maths behind this. Would be interesting to look at what other people have done on this, there must be something out there.
Dubthang - I think when going with the shorter stem approach you really need to give it some thought when buying the bike so you can get something with a longer top tube, the wider bar only gives you so much (or you go with a layback post if you're not concerned about maintaining the saddle position relative to the bb). Otherwise yes, if you just put on the short stem when your sat in the saddle I think it will screw up your weight distribution.
Rojo - I think to say "it wouldn't work" is a bit dramatic but you are missing out on some of the possible advantage of the short stem, its my understanding that the short stem makes the bike feel more stable on the descents as you're further behind the front wheel. I guess it all depends on how much of a bike geek you are, whether tinkering with these things is part of your interest in mountain biking or just a distraction. I'd certainly give it a go, I think the head angle of the tracer vp is 68 or 69 degrees so an 80 stem with a 750 bar would sound fairly standard, perhaps even a hair shorter, although that might be a bit much change in one go. Why not just buy a cheap stem and see how it feels.
-
 Originally Posted by floyd
Dubthang - I think when going with the shorter stem approach you really need to give it some thought when buying the bike so you can get something with a longer top tube, the wider bar only gives you so much (or you go with a layback post if you're not concerned about maintaining the saddle position relative to the bb). Otherwise yes, if you just put on the short stem when your sat in the saddle I think it will screw up your weight distribution.
Correct. I was thinking about it in the terms of riding while standing. Should have stated that.
-
mtbr member
Reputation:
Wow I never knew people put so much math into their cycling! I bought some wider bars and a shorter stem. I figured out the math like this bars 29.95 + stem 19.95 (plus postage) the first time I rode it I knew I got the right ones!
-
780/65 here
@Rojo - 1/2" is a big change on stem length. If I had to guess on the "front end dive" I would say it was more fork related, unless you mean the front end is washing out or pushing...
-
Interesting. I was using a 70 mm stem with a 785 mm bar. I just swapped out the 70 mm stem out for an old 50 mm so I get that short cockpit feel of a gravity bike. I'm curious to ride it now.
2013 Transition TransAM 29er - up and down.
2011 Yeti 303R DH - just down.
2005 Trek Bruiser
Similar Threads
-
By markersniffen in forum Beginner's Corner
Replies: 26
Last Post: 11-20-2012, 04:37 PM
-
By Bjdraw in forum Bike and Frame discussion
Replies: 13
Last Post: 09-16-2012, 06:45 PM
-
By kotajack in forum All Mountain
Replies: 3
Last Post: 03-20-2012, 05:00 PM
-
By vizsladog in forum 29er Bikes
Replies: 19
Last Post: 12-21-2011, 05:06 AM
-
By Whip Chop! in forum All Mountain
Replies: 12
Last Post: 08-24-2011, 08:34 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|