Calculating wheel torque from engine torque

AI Thread Summary
The discussion focuses on calculating wheel torque from engine torque to optimize gear shift points for maximum acceleration. Participants emphasize that while engine power can be useful, torque is sufficient for determining traction force and acceleration. The relationship between torque, wheel radius, and vehicle mass is crucial for calculating acceleration, and it's suggested to use a piecewise function of torque against RPM for more accurate results. Additionally, the optimal shift point is where the power in the new gear matches that of the old gear, typically occurring after the power peak. Overall, understanding the dynamics of torque and power is essential for effective performance tuning in vehicles.
Jack Duncan
Messages
8
Reaction score
0
Im currently writing a code to find the optimum rpm points to shift gears to maximize acceleration. Thus far I've found the shift points and the rpm's after an upshift, meaning I have my bounds on my rpm vs torque curve. For simplicity's sake I'm assuming and increase of 1000 rpm to take 1 second. My is, after I take my engine torque and multiply it by the gear and final gear ratios, that torque is presumably applied at the axel, so how would I find the rotational acceleration of the wheel? (And would I need to divide the engine torque by two assuming the power is going to two wheels?)
Thanks in advance
 
Engineering news on Phys.org
The engine power (which is the same as the wheel power + the drivetrain losses) will split between the 2 wheels, and if the the 2 wheels are at the same rpm, then the axle torque will split between the 2 wheels.

But that doesn't really matter as you will need to sum them up for the next step. Knowing the total wheel torque and tire radius, you can find the traction force applied to the ground F_T. This force will go against the resistance forces \sum F_{R\ @\ v} (aerodynamic drag, rolling resistance, slope of the road) at the given speed v. Then:
F_T - \sum F_{R\ @\ v} = ma
Once you found the acceleration of the vehicle a, you can find the new speed of the vehicle after the one second you assumed to be elapsed. Find the new engine rpm and torque at that new speed (v = rpm_{wheel}\times r_{wheel}), rinse and repeat.
 
jack action said:
The engine power (which is the same as the wheel power + the drivetrain losses) will split between the 2 wheels, and if the the 2 wheels are at the same rpm, then the axle torque will split between the 2 wheels.

But that doesn't really matter as you will need to sum them up for the next step. Knowing the total wheel torque and tire radius, you can find the traction force applied to the ground F_T. This force will go against the resistance forces \sum F_{R\ @\ v} (aerodynamic drag, rolling resistance, slope of the road) at the given speed v. Then:
F_T - \sum F_{R\ @\ v} = ma
Once you found the acceleration of the vehicle a, you can find the new speed of the vehicle after the one second you assumed to be elapsed. Find the new engine rpm and torque at that new speed (v = rpm_{wheel}\times r_{wheel}), rinse and repeat.
Thanks so much, exactly what I was looking for.
 
There's a much simpler way to do this. Optimum shift point is where the power the engine will be making in the new gear is the same as the power will be making in the old gear, so you'll be shifting after the power peak, but in a place where the new gear will be before the power peak. This will maximize the average horsepower, and thus the acceleration.
 
  • Like
Likes CWatters
cjl said:
There's a much simpler way to do this. Optimum shift point is where the power the engine will be making in the new gear is the same as the power will be making in the old gear, so you'll be shifting after the power peak, but in a place where the new gear will be before the power peak. This will maximize the average horsepower, and thus the acceleration.
Well that makes sense, although for now I'm working with torque data, if I did use power data, wouldn't I need power output for ever gear? Or would the shift point be the same in each gear?
 
It would be different for each gear depending on the ratio spread. Also, if you have torque data, power data is easy to get - it's just proportional to torque*rpm.
 
cjl said:
It would be different for each gear depending on the ratio spread. Also, if you have torque data, power data is easy to get - it's just proportional to torque*rpm.
Okay, well if I multiply rpm*torque, how would I go about finding the actual power if I wanted to use that to calculate acceleration, given that, that product would only be in proportion to, not equal to power?
 
You do not need to compute power to get acceleration. Torque is sufficient since it will give you the force on the road.
Traction force = Torque / Wheel radius.
The mass of the vehicle is known, and F = m*a; So acceleration = torque / ( wheel radius * mass of vehicle).

If you need to convert RPM to angular frequency in radians per second, multiply RPM by 60 seconds * 2Pi radians.
Angular frequency = 277 * RPM.
 
Baluncore said:
You do not need to compute power to get acceleration. Torque is sufficient since it will give you the force on the road.
Traction force = Torque / Wheel radius.
The mass of the vehicle is known, and F = m*a; So acceleration = torque / ( wheel radius * mass of vehicle).

If you need to convert RPM to angular frequency in radians per second, multiply RPM by 60 seconds * 2Pi radians.
Angular frequency = 277 * RPM.
Right that's what I was trying, but because the torque (and therefore acceleration) is non constant, do I have to evaluate the acceleration at each time step dt or can I somehow calculate a net acceleration with net torque and total time?
 
  • #10
The start and stop points in different gears will be at slightly different RPMs.
You will need to have a table or piecewise function of torque against RPM.
The form of that data representation will decide the method used to get acceleration and speed.
Start with discrete computation and get some results.
If you later use a polynomial for the relationship, you might integrate the acceleration more quickly.
 
  • #11
Baluncore said:
The start and stop points in different gears will be at slightly different RPMs.
You will need to have a table or piecewise function of torque against RPM.
The form of that data representation will decide the method used to get acceleration and speed.
Start with discrete computation and get some results.
If you later use a polynomial for the relationship, you might integrate the acceleration more quickly.
Okay that makes sense, I've found the rpm shift points and the rpm post shift, so I have my bounds, I also have the area under the curve between these rpm's for each gear (the graph is rpm vs torque) I'll do it out on paper to check if it works, but I'm hoping that since I'm assuming it takes 1 second to increase the rpm by 1000, if I take these integrals, I can just say that the area under the curve is equal to net torque applied over the given rpm (time) interval. Thanks so much for all of the help
 
  • #12
Baluncore said:
You do not need to compute power to get acceleration. Torque is sufficient since it will give you the force on the road.
Traction force = Torque / Wheel radius.
The mass of the vehicle is known, and F = m*a; So acceleration = torque / ( wheel radius * mass of vehicle).

If you need to convert RPM to angular frequency in radians per second, multiply RPM by 60 seconds * 2Pi radians.
Angular frequency = 277 * RPM.

True, but using the power curve and looking for shift points such that power in the new gear is the same as power in the old gear is one of the easiest ways to find optimal shift points. You can definitely achieve the same thing just by looking at tractive force too though (and very nearly as easily).
 
  • #13
cjl said:
True, but using the power curve and looking for shift points such that power in the new gear is the same as power in the old gear is one of the easiest ways to find optimal shift points.
I quite agree. But when selecting high and low RPM points with equal power, the constant of proportionality can be allowed to cancel.
RPM * torque is sufficient to find those points, no matter what data units are available.
 
  • #14
cjl said:
There's a much simpler way to do this. Optimum shift point is where the power the engine will be making in the new gear is the same as the power will be making in the old gear, so you'll be shifting after the power peak, but in a place where the new gear will be before the power peak. This will maximize the average horsepower, and thus the acceleration.
I learned you should aim to keep the engine between peak HP (at the top end) and peak Torque (at the low end)... It's quite rare to ever go above the engine's peak RPM for max acceleration, and usually the torque is declining very quickly at that point, and you're better off with the 'penalty' of a higher gear ratio but more engine torque.
 
  • #15
Using power is futile (more on that later). Just generate a set of output torque curves for each gear and overlay them. Your shift points may be determined by two factors: First, you run out of RPM so you have to shift, and second, output torque in the current gear falls below output torque in the next gear.

Power is not related to acceleration. Here's an example problem as illustration: You have a 3,220 pound car (mass of 100 slugs) in a vacuum (zero air resistance, keeping things simple). You observe that the net horsepower at the rear wheels is 100 HP. What is the rate of acceleration?

Here's another. That same car is accelerating at a rate of 10 ft/sec^2. How much horsepower does it take to do that?
 
  • #16
OldYat47 said:
Power is not related to acceleration. Here's an example problem as illustration: You have a 3,220 pound car (mass of 100 slugs) in a vacuum (zero air resistance, keeping things simple). You observe that the net horsepower at the rear wheels is 100 HP. What is the rate of acceleration?
Power is the rate at which work is done and is directly related to acceleration:

P=Fv
F=ma
so
P=mav
and so
a = P / mv

P and m are constants so acceleration goes to zero as velocity increases.
At 100km/hr it'll accelerate at 1.8 m/s2, at 50km/hr it'll accelerate at twice that etc.
 
  • #17
Regardless of the torque the engine is making, if it's making peak power, and you're effectively applying it to the ground at whatever speed you're traveling, that's about as good as it's going to get... if you're going 100 kph and putting 100 hp, shifting into the next gear (where you're only making 60 hp prehaps) isn't going to make you accelerate any faster.. On the other hand, Peak power occurs when torque drops precipitously and going above that isn't going to do you any good either
 
  • #18
Look at that equation, a = P/mv. Note that power is force X velocity. So the equation can be written a = fv/mv, which reduces to a = f/m. Lastly, note that for a given constant acceleration and mass power changes whenever velocity does. Acceleration cannot be calculated without converting from power to force. So you can plug in an infinite number of values for velocity and calculate the acceleration from that, but the resulting acceleration curve will be some (multiple or fraction, depending on the values) of the torque curve.

In the second example problem, knowing the acceleration and mass you can't determine the power. It varies constantly with velocity. You can develop a power curve from that information, which is what chassis dynamometers do. They record the rate of rotation of a massive cylinder vs. engine RPM over time. From that a horsepower curve is calculated.

Rx7man, it often is better to run past the peak power curve for optimum acceleration. Remember that shifting to a higher gear reduces torque multiplication. Sometimes it's better to use (less torque X lower gear) than (more torque X next higher gear). You can't "see" this instinctively from the power curve. That's why it's better to map out rear wheel torque curves for each gear and overlay them. Peak power is useful if you are trying to design gear ratios, for example. The goal for optimum performance gearing would be for the highest gear to provide the highest top speed (balance between drag forces and propelling forces) using work and velocity. This can be done strictly using torque, too.
 
  • #19
OldYat, Every engine will have different characteristics.. In all cases though, peak power will occur after peak torque, and peak torque usually starts to fall off pretty quickly after peak power (It's been falling for a while, otherwise peak power would be later)... I should perhaps have reworded my last post a little.. going MUCH past peak power will usually not be beneficial because of how quickly torque drops at that point.
 
  • #20
OldYat47 said:
Using power is futile (more on that later). Just generate a set of output torque curves for each gear and overlay them. Your shift points may be determined by two factors: First, you run out of RPM so you have to shift, and second, output torque in the current gear falls below output torque in the next gear.
When the output torque in the current gear equals the output torque in the next gear, then the wheel power is the same in both cases. And since engine power is equivalent to the wheel power, you don't need to calculate all the torque transformations done in the gearbox to find the shifting points.
OldYat47 said:
Power is not related to acceleration. Here's an example problem as illustration: You have a 3,220 pound car (mass of 100 slugs) in a vacuum (zero air resistance, keeping things simple). You observe that the net horsepower at the rear wheels is 100 HP. What is the rate of acceleration?

Here's another. That same car is accelerating at a rate of 10 ft/sec^2. How much horsepower does it take to do that?
Here's another: You have a 3,220 pound. You observe that the net maximum engine horsepower is 100 HP. What is the rate of acceleration?

With a simple equation, you can estimate the ¼-mile ET to be 18.51 s @ 73.64 mph.

Even with a more complete calculator, for a RWD, you can estimate the ¼-mile to be 18.21 s @ 75 mph, the 0-60 mph to be 11.18 s and the top speed to be 115 mph.

But try with this one instead: You have a 3,220 pound. You observe that the net maximum engine torque is 200 lb.ft. What is the rate of acceleration?

You will never find any relationship between engine torque alone and car acceleration. But you can with engine power and car acceleration.

Power is the most fundamental value you should know to estimate the acceleration of a car.

When you take a car at a given velocity and increase the wheel torque, you are right, you increase the car acceleration. But by doing so, you also have increased the wheel power as well, and that is the important variable. This means that you could have kept the same engine rpm and increase the engine torque, but you could just as well decrease the engine torque and increase the engine rpm and it would have had the same effect, if both cases produced the same power output.

When @billy_joule says:
billy_joule said:
Power is the rate at which work is done
It is a very important concept to understand.
 
  • Like
Likes billy_joule
  • #21
jack action said:
You will never find any relationship between engine torque alone and car acceleration. But you can with engine power and car acceleration.

You won't with power, you will with torque. Rear axle torque is engine torque times reduction ratio. Knowing the radius of the drive wheels gives you drive wheel torque. Now you have force and mass so you can directly calculate acceleration.

You can estimate 1/4 mile times, but that's just an estimate. And restating, you must convert power to force in order to calculate acceleration. I'd be interested in any equations which get from power and mass to acceleration directly. Please post them if you have one or more.

Lastly, power is an "invented" concept, not a fundamental property. James Watt came up with the concept in order to compare water lift capacities of different types of pumps. You can do any and all engineering tasks without ever using power.
 
  • #22
OldYat47 said:
You won't with power, you will with torque. Rear axle torque is engine torque times reduction ratio. Knowing the radius of the drive wheels gives you drive wheel torque. Now you have force and mass so you can directly calculate acceleration.

You can estimate 1/4 mile times, but that's just an estimate. And restating, you must convert power to force in order to calculate acceleration. I'd be interested in any equations which get from power and mass to acceleration directly. Please post them if you have one or more.

Lastly, power is an "invented" concept, not a fundamental property. James Watt came up with the concept in order to compare water lift capacities of different types of pumps. You can do any and all engineering tasks without ever using power.
Really? Pretty bold statement... Seems to me that any equation that has time involved requires power to be known...
Power and force are *related* but not the same thing.
 
  • #23
OldYat47 said:
Lastly, power is an "invented" concept, not a fundamental property.
Power is the rate of flow of energy. It is the number of joules of energy being converted per second.
Rx7man said:
Seems to me that any equation that has time involved requires power to be known...
Power and force are *related* but not the same thing.
Power or the rate work is done, or energy is converted, are related by force multiplied by the distance moved.
 
  • Like
Likes Rx7man
  • #24
OldYat47 said:
You won't with power, you will with torque. Rear axle torque is engine torque times reduction ratio. Knowing the radius of the drive wheels gives you drive wheel torque. Now you have force and mass so you can directly calculate acceleration.

You can estimate 1/4 mile times, but that's just an estimate. And restating, you must convert power to force in order to calculate acceleration. I'd be interested in any equations which get from power and mass to acceleration directly. Please post them if you have one or more.

Lastly, power is an "invented" concept, not a fundamental property. James Watt came up with the concept in order to compare water lift capacities of different types of pumps. You can do any and all engineering tasks without ever using power.

Let's take a vehicle powered with an engine (any type) that is transmitting its power through the wheels. What is the maximum force transmitted by the wheels, assuming no friction limit?

First, what do we know about this vehicle? We know it has an engine that produces power and that power cannot be unlimited: It has a maximum power (All engine/motor are defined by their power). We also know that the velocity of the car will change. Now, thanks to the concept of power (Thank you, Mr. Watt!), we can find the maximum force the engine can produce at the wheels:
F_{max} = \frac{P_{max}}{v}
Which gives in graph form:

fmax-vs-v.jpg


As you can see, we now know the maximum tractive force the car can produce at any speed, no matter the radius of the wheels, the gear ratios (if any), the engine torque or RPM, even the engine's type (piston, turbine, electric motor, etc.).

As you already mentioned, this available force can be translated into acceleration, if you know the vehicle mass (which is also a fundamental value of your vehicle).

The only thing left to the vehicle designer is to select the appropriate method to make sure that the maximum power will be available at any speed (For example, using a gearbox with a piston engine like in the figure below. Note that - even though each curve correspond to the torque curve of the engine - the «Constant power» curve meets the maximum power in each gear).

image003.jpg


From that simple concept of power, I can determine what type of engine will be needed to achieve the acceleration curve I desired, and the fundamental value of the engine will be its power.

So I can choose a diesel engine, do a first draft, find out it pollutes too much, and then decide to change to four electric motors. If I expect the same performance, what will be the common point between the diesel engine and the four electric motors? The sum of the power produced by the four electric motors will be equal to the power produced by the diesel engine.

As for the equations to estimate the ¼-mile, it is an estimate based on a real physics base, not just a statistical curve fitting. The energy gain by the vehicle from 0 to v must be equal to the one delivered by the engine at constant power P during the time t or:
\frac{1}{2}mv^2 = \int_0^t Pdt = Pt
or (equation 1):
v = \left(\frac{2Pt}{m}\right)^{\frac{1}{2}}
Also, the distance d traveled by the car during time t is easily found by integration:
d = \int_0^t vdt = \int_0^t \left(\frac{2Pt}{m}\right)^{\frac{1}{2}}dt = \frac{2}{3}\left(\frac{2P}{m}\right)^{\frac{1}{2}}t^{\frac{3}{2}}
or (equation 2):
t=\left(\frac{3}{2}\left(\frac{m}{2P}\right)^{\frac{1}{2}}d\right)^{\frac{2}{3}}=\left(\frac{3}{2}d\right)^{\frac{2}{3}}\left(\frac{m}{2P}\right)^{\frac{1}{3}}
Since we know that for a ¼-mile, d = 402.336 m (SI unit), then:
t=56.68\left(\frac{m}{P}\right)^{\frac{1}{3}}
or, converting from SI unit to hp and lb:
t_{\lbrack s]}=4.802\left(\frac{m_{\lbrack lb]}}{P_{\lbrack hp]}}\right)^{\frac{1}{3}}
And combining equation 2 with equation 1:
v = \left(3d\frac{P}{m}\right)^{\frac{1}{3}}
Since we know that for a ¼-mile, d = 402.336 m (SI unit), then:
v = 10.65\left(\frac{P}{m}\right)^{\frac{1}{3}}
Converting from SI unit to mph, hp and lb, you get:
v_{\lbrack mph]} = 281.2\left(\frac{P_{\lbrack hp]}}{m_{\lbrack lb]}}\right)^{\frac{1}{3}}

The only thing that vary slightly from the actual equations used across the web are the constants, such that it takes into account some other variables of minor importance. (ref.: http://stealth316.com/2-calc-hp-et-mph.htm)
 
  • Like
Likes Dale, cjl and billy_joule
  • #25
The equation you posted says force = (force X velocity) / velocity. But does maximum force (torque in this case) occur at maximum power? Look at some torque vs. power curves for internal combustion engines. Peak torque occurs somewhat before peak power, not at the same RPM. Remember that power increases linearly with speed. At constant torque, or if torque falls off in a less than 1:1 ratio with RPM the power will continue to rise. If torque falls linearly with RPM the value for power remains the same.

And all those shift point curves could be generated directly from torque curves and overall reduction ratios.

I should add that the last part of your post assumes constant power. Assuming you had a power source that supplied a constant power, then the force falls off linearly with velocity so acceleration decreases throughout the 1/4 mile.
 
  • #26
In reply to the two earlier posts, since power is force X velocity any calculation that involves power can be done using force X velocity. The reverse is not true. There are many cases where you cannot substitute power for force X velocity. The example problem of calculating acceleration of a mass knowing the mass and the power is a good example. To solve that you have to know the velocity, converting power to force.
 
  • #27
OldYat47 said:
But does maximum force (torque in this case) occur at maximum power?
For a given car speed, yes, maximum tractive force always happens at maximum power, that is what F_{max} = \frac{P_{max}}{v} means.
OldYat47 said:
I should add that the last part of your post assumes constant power.
Of course, I assume I'm at maximum power, all the time (like with a CVT for example).
OldYat47 said:
Assuming you had a power source that supplied a constant power,
That is the purpose of a transmission in a race car.
OldYat47 said:
then the force falls off linearly with velocity so acceleration decreases throughout the 1/4 mile.
That is why I put the graphs, I wanted you to see that.

You should re-read my post with an open mind, because you are just repeating my arguments.
 
  • #28
jack action said:
For a given car speed, yes, maximum tractive force always happens at maximum power, that is what Fmax=PmaxvF_{max} = \frac{P_{max}}{v} means.
and
jack action said:
Of course, I assume I'm at maximum power, all the time (like with a CVT for example).

In the first quote, that is not true. As I showed, torque (and so force) can decline while power increases. So maximum force may not (and most probably doesn't) coincide with Pmax.

In the second quote, that also is not generally true. Similarly, it depends on the shape of the torque curve. For example, suppose you have an engine that generates 250 units torque at 7,000 RPM and 233.3 units of torque at 7,500 RPM. The power in both cases is the same (1.75X10^6 units of power). Suppose maximum power occurs at 7,250 RPM. Then it's easy to generate a power curve that would be maximum at that point and yields 242.8 units of torque (1.76X10^6 units of power).

The purpose of any transmission is to change input torque and speed vs.output torque and speed. In cars their purpose is to multiply torque. Drive wheel power is always net engine power less drive train frictional losses. Drive wheel torque is not, it is (net engine torque less drive train losses) X reduction ratio (and modified by rear wheel diameter). And restating, acceleration is related to force, not power. That's also why, for maximum acceleration, it may be better to delay shifting into the next higher gear until past the peak power point. The next higher gear reduces torque across the RPM range.

You can try it yourself. Take a set of engine torque curves from an actual vehicle, use the transmission ratios and lay out rear axle torque curves vs. RPM.
 
  • #29
OldYat47 said:
In the first quote, that is not true. As I showed, torque (and so force) can decline while power increases. So maximum force may not (and most probably doesn't) coincide with Pmax.
Yes, torque declines when power increases. That is because the rpm increased, and with it the speed of the car too. At a higher speed, the maximum tractive force will always be smaller for a given power (P = F X v). So that is why I said:
jack action said:
For a given car speed, yes, maximum tractive force always happens at maximum power, that is what F_{max} = \frac{P_{max}}{v} means.
OldYat47 said:
In the second quote, that also is not generally true. Similarly, it depends on the shape of the torque curve. For example, suppose you have an engine that generates 250 units torque at 7,000 RPM and 233.3 units of torque at 7,500 RPM. The power in both cases is the same (1.75X10^6 units of power). Suppose maximum power occurs at 7,250 RPM. Then it's easy to generate a power curve that would be maximum at that point and yields 242.8 units of torque (1.76X10^6 units of power).
But the car doesn't go at the same speed at 7000, 7250 or 7500 rpm.

Let's say I want the wheel to turn at 1000 rpm. The gear ratio needed for having the engine at 7000 rpm will be 7:1. For 7250 rpm, you will need a 7.25:1 gear ratio and a 7.5:1 for 7500 rpm. What are the wheel torque then, knowing the wheel rpm is the same in all cases?

250 * 7 = 1750 units torque
242.8 * 7.25 = 1760 unit torque
233.3 * 7.5 = 1750 units torque

Note how the wheel torque is the same when at 7000 or 7500 rpm; That is because the power is the same in both cases. Yet, the wheel torque is greater at 7250 rpm; That is because the power is greater. And the wheel torque increase is directly proportional to the power increase (1.76X10^6 / 1.75X10^6 = 1760 / 1750).
OldYat47 said:
You can try it yourself. Take a set of engine torque curves from an actual vehicle, use the transmission ratios and lay out rear axle torque curves vs. RPM.
I did, I put a graph in my previous post especially for that. Here's that same graph with added info:

force-vs-speed.jpg


All black dots on the «Constant power» curve correspond to the maximum power in each gear.

At a speed of 40 km/h, where is the maximum tractive force? In 2nd gear. Why? Because I'm at maximum engine power. In 1st gear (I extended the 1st gear torque curve in green), I'm passed the maximum power rpm, so I produce less wheel torque (even though I'm in a lower gear ratio) because there is less power available. In 3rd gear, I'm at maximum engine torque, but because I have a higher gear ratio, I produce less wheel torque than in 2nd gear. How could I've known that in a simpler manner? Well, I also knew that I produce less power at maximum engine torque, and the wheel torque decrease is proportional to the engine power decrease. If the power would have been the same, it would have produce the same traction force as in 2nd gear. In top gear, there's even less power because of the higher gear ratio that set my engine rpm even lower.

See, at any car speed, the maximum tractive force is always at maximum power.

That is why you can draw the curve F_{max} = \frac{P_{max}}{v} and you will know for sure that you will never be able to set the tractive force outside the green envelop (see below); The upper (white) region is off limit, no matter the gear ratio, tire diameter or if you produce that power with an electric motor, a diesel engine or a gas turbine.
force-vs-velocity.jpg
 
  • Like
Likes billy_joule
  • #30
OH NO. NOT THIS THREAD AGAIN.
 
  • Like
Likes cjl and Rx7man
  • #31
Yeah, xxChrisxx, me too. But there are some very basic and important issues here.

Remember this thread started with the question of optimum shift points for maximum acceleration.

You've selected 40 KPH, but I don't understand why. Where is the maximum force in 2nd gear? Not at 40 KMH, but at about 25 KMH, below the peak power curve (it's important to understand why). Where is the maximum force at 45 KPH? In 2nd gear, below the constant power curve. So shifting to 3rd at the maximum power point in 2nd is not the way to accelerate most quickly. Look at your 2nd and 3rd gear curves. Past 40 KPH until about 50 KPH 2nd gear is delivering more force than 3rd gear. Shifting at the "dot" in 2nd gear would reduce vehicle acceleration between 40 and about 50 KPH. Same with the other gears.
 
  • #32
Oh well, I tried my best ...

:cry::)):sorry:?:):frown::eek::rolleyes:o_O
 
  • Like
Likes billy_joule
  • #33
OldYat47 said:
Yeah, xxChrisxx, me too. But there are some very basic and important issues here.

Remember this thread started with the question of optimum shift points for maximum acceleration.

You've selected 40 KPH, but I don't understand why. Where is the maximum force in 2nd gear? Not at 40 KMH, but at about 25 KMH, below the peak power curve (it's important to understand why). Where is the maximum force at 45 KPH? In 2nd gear, below the constant power curve. So shifting to 3rd at the maximum power point in 2nd is not the way to accelerate most quickly. Look at your 2nd and 3rd gear curves. Past 40 KPH until about 50 KPH 2nd gear is delivering more force than 3rd gear. Shifting at the "dot" in 2nd gear would reduce vehicle acceleration between 40 and about 50 KPH. Same with the other gears.
Right. I've had my Saturday night beers. So it's time for some abrasive posting.

Take the time to go back and actually READ AND COMPREHEND JACK'S POST AND THE VERY SPECIFIC POINT IT WAS ADRESSING. (hint it wasn't talking about shift points). Capped for effect.

Then once you've done that. You will probably realize that if asked to go away calculate the optimum shift point. You'll both give the same answer.

The basic concept is almost insanely simple. Be as close to Fmax as possible at all times.

You can calcuate it using torque or power. If you do your sums correctly, you'll both arrive at the exact same answer.

Job. Done.
 
  • Like
Likes cjl and Rx7man
  • #34
Sorry @xxChrisxx for still arguing on this issue, but when I read statements like these:
OldYat47 said:
Using power is futile
OldYat47 said:
Power is not related to acceleration.
OldYat47 said:
Sometimes it's better to use (less torque X lower gear) than (more torque X next higher gear). You can't "see" this instinctively from the power curve.
OldYat47 said:
Lastly, power is an "invented" concept, not a fundamental property.
I feel an obligation to spread the good words. Though, I'm learning to quit when I began to repeat myself to the same crowd.

But I still do it as I even learn something new sometimes; like I never went in depth before to see where those ¼-mile equations came from. Somehow, it gives me a feeling of accomplishment :partytime:.
 
  • #35
jack action said:
But I still do it as I even learn something new sometimes;
There are many ways to explain the theory and practice. We learn to explain it better every time.

The different answers from different members will hopefully provide an answer that can be understood by questioners who come from different educational paths and diverse backgrounds.
 
  • #36
The claim was that Fmax = Pmax/v. That premise is false. Look at Jack Action's 2nd gear torque curve. On that curve [Fmax (from about 20 KPH to 39 KPH)] > [Pmax/(v=40 KPH)]. From 20 to 39 KPH the torque curve is above the horizontal blue line. So Fmax doesn't equal Pmax/v. (Aside, if you plot torque vs. RPM instead of torque vs. velocity that constant power curve is a straight vertical line at max power. That's the way plots like this are generally done).

Power must be converted to force in order to calculate acceleration. If you have an example of calculating acceleration from mass and power please post it. Jack, I understand the 1/4 mile calculation but it's not a calculation of acceleration, it's a calculation of average acceleration. Here's a better sample problem: "A car is generating 1,000 Watts at the drive wheels. Its mass is 1,400 kg. How fast is it accelerating? Ignore friction and wind resistance".

Chris, you said, "The basic concept is almost insanely simple. Be as close to Fmax as possible at all times". In reference to a shift point chart it's better to say, "stay in gear until you run out of RPM or the rear wheel torque falls below what the rear wheel torque would be after the shift". In Jack Action's example, stay in 2nd gear until about 47 KPH before shifting to 3rd.

I said, "Sometimes it's better to use (less torque X lower gear) than (more torque X next higher gear)". Again, Jack Action's curves show this to be the case. The vehicle will accelerate faster in 2nd gear until about 47 KPH than it will after shifting to 3rd gear.
 
  • #37
OldYat47 said:
In reference to a shift point chart it's better to say, "stay in gear until you run out of RPM or the rear wheel torque falls below what the rear wheel torque would be after the shift".

And do you know when that is? It's when the power after the shift is the same as the power before the shift.
 
  • #38
Damn it! I can't quit ...

@OldYat47, I'm sure you are in good faith, so let's go at it one more time. You have a tendency to choose and pick the statements you answer and ignore the other ones, so I indicated in my post where you should stop and think about what you read and give us your opinion about what I wrote. Don't ignore a single «check point» I inserted if you want to answer to this post. I just want to know where you agree with me and, if not, how you see it. If you don't understand what I said, please tell me, I'll try to find another way for you to picture it.

If you answer to argue this post in anyway, please tell me you understand and agree to the previous paragraph, got it? (answer here)

You seem to like numbers better than variables, so let's go back to the graph I made earlier:

force-vs-speed-jpg.100843.jpg


First let's assume that the black dots on the «Constant power» curve are where the curve meets the other gear curves. Before & after is really close, but not quite on it. Let us assume that, such that we don't argue that the 2nd gear is tangent to «Constant power» curve at 40 km/h or 43 km/h. It is 40 km/h, because someone put the black dot there and he reads data better than he draws.

If you answer to argue this post in anyway, please tell me you understand and agree to the previous paragraph, got it? (answer here)

Now, you are saying that in 2nd gear there is more torque at 25 km/h than at at 40 km/h, and you are right. Don't think nobody else noticed that. Let us look at the 3rd gear instead. Let us look at just 40 km/h (The red line I drew). You can see that I am at maximum torque in 3rd gear, right? There is no way I can produce more torque into that gear ratio, right? But I can also shift it in 2nd gear and you can appreciate that - always at 40 km/h - I produce a larger tractive force in that gear. You must see this, since you said it yourself:
OldYat47 said:
Again, Jack Action's curves show this to be the case. The vehicle will accelerate faster in 2nd gear until about 47 KPH than it will after shifting to 3rd gear.
If I shifted from 3rd to 2nd and increase my traction force - always being at 40 km/h - than someone could logically state:

«Let's shift in 1st gear, there is a lower gear ratio, therefore it must produce an even bigger force.»

But when we look at the graph, we see that it is not the case. The traction force in 1st gear is still slightly higher than in 3rd gear, but it is less than in 2nd gear. So that way of thinking is obviously wrong. What happened? What is so special about 2nd gear at 40 km/h?

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

You answer that question like there is some kind of voodoo going on, like nobody understand what is happening:
OldYat47 said:
Sometimes it's better to use (less torque X lower gear) than (more torque X next higher gear).
In essence, you are telling us to go by trial and error: Try every possible gear ratio that you can think of, find the rpm the engine is in at 40 km/h, calculate the wheel torque for every case, and find out the gear ratio that gives out the larger wheel torque.

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

You even go further by saying:
OldYat47 said:
You can't "see" this instinctively from the power curve.
But look at the graph once more. Where is situated the traction force on the 2nd gear at 40 km/h? It meets the «Constant power» curve, which is the tractive force produced with the maximum power of the engine. So you are wrong: We can «see» this instinctively from the power curve. For a given car speed (I can't stress this enough), you will always produce the maximum tractive force when the engine produces its maximum power (In math form: F_{max} = \frac{P_{max}}{v}, where v is a constant for the purpose of comparison). So if you want to produce the maximum tractive force you can think of at 40 km/h, you need to find the gear ratio that will set the engine's rpm where it produces its maximum power at 40 km/h. No need for trial and error.

So what is the gear that produces the maximum tractive force at:
  • 25 km/h? 1st gear. Why? The engine is at its maximum power;
  • 40 km/h? 2nd gear. Why? The engine is at its maximum power;
  • 60 km/h? 3rd gear. Why? The engine is at its maximum power;
  • 85 km/h? Top gear. Why? The engine is at its maximum power.
If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

If we had 1 million gear ratios, we could select a gear for every car speed. In any case, when the selected gear produces more tractive force that any other at a given car speed (again, I can't stress this enough), that is because the engine is producing its maximum power at this car speed.

SHIFT POINTS

What started this discussion? It is this statement:
OldYat47 said:
Using power is futile (more on that later). Just generate a set of output torque curves for each gear and overlay them. Your shift points may be determined by two factors: First, you run out of RPM so you have to shift, and second, output torque in the current gear falls below output torque in the next gear.

Power is not related to acceleration.
That was your quote, which was in direct opposition with a previous one made by @cjl:
cjl said:
There's a much simpler way to do this. Optimum shift point is where the power the engine will be making in the new gear is the same as the power will be making in the old gear, so you'll be shifting after the power peak, but in a place where the new gear will be before the power peak. This will maximize the average horsepower, and thus the acceleration.

Going back at the graph, where are the best shift points to maximize acceleration? There are where the different gear curves meet one another. That is:
  • Go from 1st to 2nd at 35 km/h;
  • Go from 2nd to 3rd at 47 km/h;
  • Go from 3rd to top gear at 68 km/h.
If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

Why is the tractive force the same in both gears at those particular speed? You will notice that - in all cases - the lower gear is slightly after the peak power and the higher gear is slightly before the peak power. If you would have the actual power curve, you would see that it would correspond to 2 points on that curve where the engine produces the exact same amount of power. It is easy to prove by stating that P = Fv for the car. So if the tractive force is the same and the car speed is the same, therefore the power must also be the same. And the power at the wheel is the same as the power provided by the engine (not including losses).

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

If we add gears - say if we had 1 million gear ratios - The shift points would be closer and closer to the «Constant power» curve (Which correspond to keeping the engine's rpm at its maximum power at any car speed).

Why is your method working?

The «power» method is kind of cool, because we don't really need to know the engine's rpm; All we need is to know the actual power produced by the engine and we know the following will produce the best shift points:

52848d1121151805-transmission-intergear-ratios-vs-proper-shift-points-shift-point-illustration.gif


Where the horizontal line's locations depends solely on the gear ratios themselves, i.e. where:
\frac{rpm_{lo}}{rpm_{hi}} = \frac{GR_{hi}}{GR_{lo}}

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

When you have access to the torque curve only, you will need to find the wheel torque & rpm from the engine torque & rpm and the gear ratio:
T_{w\ lo} = T_{e\ lo}GR_{lo}
rpm_{w\ lo} = \frac{rpm_{e\ lo}}{GR_{lo}}
T_{w\ hi} = T_{e\ hi}GR_{hi}
rpm_{w\ hi} = \frac{rpm_{e\ hi}}{GR_{hi}}

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

Then, you will visually inspect your data to find points where T_{w\ hi} = T_{w\ lo} and rpm_{w\ hi} = rpm_{w\ lo} or, in math form:
rpm_{w\ hi} = rpm_{w\ lo}
\frac{rpm_{e\ hi}}{GR_{hi}} = \frac{rpm_{e\ lo}}{GR_{lo}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{GR_{hi}}{GR_{lo}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{\frac{T_{w\ hi}}{T_{e\ hi}}}{\frac{T_{w\ lo}}{T_{e\ lo}}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{T_{w\ hi}}{T_{w\ lo}}\frac{T_{e\ lo}}{T_{e\ hi}}
By defintion:
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = (1)\frac{T_{e\ lo}}{T_{e\ hi}}
T_{e\ hi}rpm_{e\ hi} = T_{e\ lo}rpm_{e\ lo}
Or simply put:
P_{e\ hi} = P_{e\ lo}
We are again brought back to the power in low gear equals the power in high gear.

Whenever you need to know about torque and rpm, you will most likely have to multiply them at some point in order to find the power generated; whether you do it mathematically (like I just did) or that you do it intuitively by looking at a graph (like you are doing).
 
  • Like
Likes billy_joule
  • #39
Let's do this in small steps. Let's look at two pieces of this discussion to start with.

jack action said:
Now, you are saying that in 2nd gear there is more torque at 25 km/h than at at 40 km/h, and you are right. Don't think nobody else noticed that. Let us look at the 3rd gear instead. Let us look at just 40 km/h (The red line I drew). You can see that I am at maximum torque in 3rd gear, right? There is no way I can produce more torque into that gear ratio, right?

Yes, at 40 KPH the engine is at maximum torque in 3rd gear. But you said that Fmax = Pmax/v. That is not the case. Fmax point will not coincide with the intersection of any gear ratio for this engine torque and the constant power curve.

Let's look at a 2nd to 3rd gear shift. From 40 KPH through about 48 KPH in 2nd gear there is more torque at the drive wheels than at any point on the 3rd gear curve. So shifting to 3rd at the maximum power point in 2nd will reduce acceleration, increasing the time to achieve any speed above 40 KPH.

Please start with these two points. We can, I am sure, reach agreement.
 
  • #40
cjl, you may be able to find pairs of gear ratios where that would be true but it is not the general case.
 
  • #41
OldYat47 said:
cjl, you may be able to find pairs of gear ratios where that would be true but it is not the general case.

It is absolutely the general case, since that's the definition of power. Power is (at least in one definition) force times velocity. So, if the tractive force is the same in two gears at the same speed, the power must, by definition, be exactly equal (ignoring differing drivetrain losses for different gear ratios)
 
  • #42
Yes, if the speed is the same for two different gear ratios at the same vehicle speed the power is the same. So if you shift when the torque is the same before and after the shift the power will be the same. But this is not always possible. One example is when peak torque is close to maximum RPM. The reduced torque at maximum RPM may be higher than available torque in the next gear at that speed. A similar variation of that case is when gear ratios are too far apart.
 
  • #43
It's relatively clear you know where the shift points should be. Noone is disputing that. Everyone has all picked the same points.

The fact that you say you disagree with P=FV is slightly worrying from a conceptual point of view. Ignore engines, gearboxes wheels. Ignore all numbers.

Do you understand where P=FV comes from and why it is always valid? And by extension why its useful?
 
  • #44
What I am pointing out that Jack Action's premise is incorrect. His premise is that maximum force (torque in this case) occurs at maximum power at some specific speed.

The reason it's "easier" to get shift point and acceleration charts with torque curves is that power is not related to acceleration or force. P=FV, so for any given value of power there is an infinite number of valid values for and force and acceleration. F=MA, so P=MAV. Again, there is an infinite number of values for M, A and V that will yield the same P.
 
  • #45
OldYat47 said:
What I am pointing out that Jack Action's premise is incorrect. His premise is that maximum force (torque in this case) occurs at maximum power at some specific speed.

The reason it's "easier" to get shift point and acceleration charts with torque curves is that power is not related to acceleration or force. P=FV, so for any given value of power there is an infinite number of valid values for and force and acceleration. F=MA, so P=MAV. Again, there is an infinite number of values for M, A and V that will yield the same P.

Maximum tractive force at any given speed does occur by maximizing power. As for your P = MAV, think about that for just a second. We can rearrange that to state that A = P/(M*V), and since for any given vehicle, M is not changing, we can see that max A for any given V occurs by maximizing P.
 
  • #46
You obviously did not read what I wrote and/or think about what you've read at the check points I set in my last post. Time for more drawings. Note how I will answer EVERY statements you've made in your last post, just to show you what I understand about what you are saying (It is call listening).
OldYat47 said:
Yes, at 40 KPH the engine is at maximum torque in 3rd gear. But you said that Fmax = Pmax/v. That is not the case. Fmax point will not coincide with the intersection of any gear ratio for this engine torque and the constant power curve.
This is what I'm taking about:

fmax-vs-speed.jpg


This is what you are taking about:

fmax-vs-gear.jpg


Nobody cares about the maximum tractive force in a particular gear. Why? Because in a lower gear, you can always have a higher tractive force for the same car speed. Why would you choose to be in 3rd gear at 40 km/h, if you can get more tractive force in 2nd gear? Remember, the goal is to have the highest tractive force to get the maximum acceleration.

Yes, in 2nd gear, I have more tractive force at 25 km/h. But when my car will be at that speed, I will choose 1st gear to get F_{max}.
F_{max} = \frac{P_{max}}{v}
See, there are no gear ratios in the equation. There is car speed v, though. You might be in 1st, 2nd, 3rd or top gear - You might even have an electric motor with no transmission at all - for any given speed (this should be in large bold red letters to emphasize the point, but I'm not sure other people can see it, tell me you are not seeing it), F_{max} = \frac{P_{max}}{v}.
OldYat47 said:
Let's look at a 2nd to 3rd gear shift.
Okidoki.
OldYat47 said:
Fro 40 KPH through about 48 KPH in 2nd gear there is more torque at the drive wheels than at any point on the 3rd gear curve.
That is what I've been saying all along. Actually there is more torque at the drive wheels from 0 to 48 km/h than at any point on the 3rd gear curve.

The real questions are:
  1. Why is there more torque in 2nd gear than in 3rd gear before 48 km/h?
  2. Why is there the same amount of torque in 2nd gear and in 3rd gear at 48 km/h?
  3. Why is there less torque in 2nd gear than in 3rd gear after 48 km/h?
Please answer those. (HINT: It has to do with power.)
OldYat47 said:
So shifting to 3rd at the maximum power point in 2nd will reduce acceleration, increasing the time to achieve any speed above 40 KPH.
Nobody is shifting from 2nd to 3rd at maximum power in this case. You obviously did not read the part of my last post entitled «SHIFT POINTS». A lot of people have told you that you are saying the same thing as I do shift-point-wise, but you don't seem to accept that. This next drawing should convince you. These are the shift points:

shift-points.jpg


I'm sure we are on the same page now. So you shouldn't focus at all on this anymore. You should focus on why I (and all other people on this tread) say acceleration is directly related to engine power (for which, I don't think you are convinced).

Now, can you tell me why those are the shift points? (HINT: It has do to with power.)

What the heck - in case the scrolling feature is broken on your computer - let's make sure you will read my arguments thoroughly, so here they are again:
jack action said:
SHIFT POINTS

What started this discussion? It is this statement:
Using power is futile (more on that later). Just generate a set of output torque curves for each gear and overlay them. Your shift points may be determined by two factors: First, you run out of RPM so you have to shift, and second, output torque in the current gear falls below output torque in the next gear.

Power is not related to acceleration.
That was your quote, which was in direct opposition with a previous one made by @cjl:
There's a much simpler way to do this. Optimum shift point is where the power the engine will be making in the new gear is the same as the power will be making in the old gear, so you'll be shifting after the power peak, but in a place where the new gear will be before the power peak. This will maximize the average horsepower, and thus the acceleration.
Going back at the graph, where are the best shift points to maximize acceleration? There are where the different gear curves meet one another. That is:
  • Go from 1st to 2nd at 35 km/h;
  • Go from 2nd to 3rd at 47 km/h;
  • Go from 3rd to top gear at 68 km/h.
If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

Why is the tractive force the same in both gears at those particular speed? You will notice that - in all cases - the lower gear is slightly after the peak power and the higher gear is slightly before the peak power. If you would have the actual power curve, you would see that it would correspond to 2 points on that curve where the engine produces the exact same amount of power. It is easy to prove by stating that P = Fv for the car. So if the tractive force is the same and the car speed is the same, therefore the power must also be the same. And the power at the wheel is the same as the power provided by the engine (not including losses).

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

If we add gears - say if we had 1 million gear ratios - The shift points would be closer and closer to the «Constant power» curve (Which correspond to keeping the engine's rpm at its maximum power at any car speed).

Why is your method working?

The «power» method is kind of cool, because we don't really need to know the engine's rpm; All we need is to know the actual power produced by the engine and we know the following will produce the best shift points:

52848d1121151805-transmission-intergear-ratios-vs-proper-shift-points-shift-point-illustration.gif


Where the horizontal line's locations depends solely on the gear ratios themselves, i.e. where:
\frac{rpm_{lo}}{rpm_{hi}} = \frac{GR_{hi}}{GR_{lo}}

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

When you have access to the torque curve only, you will need to find the wheel torque & rpm from the engine torque & rpm and the gear ratio:
T_{w\ lo} = T_{e\ lo}GR_{lo}
rpm_{w\ lo} = \frac{rpm_{e\ lo}}{GR_{lo}}
T_{w\ hi} = T_{e\ hi}GR_{hi}
rpm_{w\ hi} = \frac{rpm_{e\ hi}}{GR_{hi}}

If you answer to argue this post in anyway, please tell me if you agree with the previous observation first. (answer here)

Then, you will visually inspect your data to find points where T_{w\ hi} = T_{w\ lo} and rpm_{w\ hi} = rpm_{w\ lo} or, in math form:
rpm_{w\ hi} = rpm_{w\ lo}
\frac{rpm_{e\ hi}}{GR_{hi}} = \frac{rpm_{e\ lo}}{GR_{lo}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{GR_{hi}}{GR_{lo}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{\frac{T_{w\ hi}}{T_{e\ hi}}}{\frac{T_{w\ lo}}{T_{e\ lo}}}
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = \frac{T_{w\ hi}}{T_{w\ lo}}\frac{T_{e\ lo}}{T_{e\ hi}}
By defintion:
\frac{rpm_{e\ hi}}{rpm_{e\ lo}} = (1)\frac{T_{e\ lo}}{T_{e\ hi}}
T_{e\ hi}rpm_{e\ hi} = T_{e\ lo}rpm_{e\ lo}
Or simply put:
P_{e\ hi} = P_{e\ lo}
We are again brought back to the power in low gear equals the power in high gear.

Whenever you need to know about torque and rpm, you will most likely have to multiply them at some point in order to find the power generated; whether you do it mathematically (like I just did) or that you do it intuitively by looking at a graph (like you are doing).
 
  • #47
OldYat47 said:
What I am pointing out that Jack Action's premise is incorrect. His premise is that maximum force (torque in this case) occurs at maximum power at some specific speed.

This is where the disconnect is. You are thinking he means peak engine power output (as it sits on the engine curve) he doesn't. It's a boundary condition. Obviously this isn't possible with a real internal combustion engine and fixed gearing (where it would touch the curve once per gear). However the it's an important step conceptually, as it defines your envelope of performance.

You know your real power train and drive line combo must sit within this envelope. You will have heard of acceleration being 'traction limited' and 'power limited'. The 'power limited' is effectively the right hand curve, 'traction limit' would be a horizontal line.

The key difference here is how powerful the tool is in designing a system from a clean sheet vs. simply analysing a fixed known system.

For example. A theoretical maximum 0-60 is 5 seconds. The engine curve lines, sit with no gap to the Fmax line. If someone doesn't understand the implication of this they could spend the rest of time tinkering with clutches, gear ratios and final drives and never get any better. One look at that performance map would show instantly that there is no performance to be gained from drive line changes. The engine must produce more power.
 
  • #48
Let's eliminate all the stuff where we already agree to simplify these posts.

- We all agree where the optimum shift points should be using either the torque curves or that latest power-vs-shift point curve Jack Action posted. No need to go over that again, let's eliminate that from the discussions. Agreed?
- We all agree that the rate of vehicle acceleration at any given speed in any given gear is proportional to the amount of torque available at that speed. We can eliminate that as well. Agreed?

Maybe we can come to agreement on two more items before proceeding further. The first is the formula Fmax=Pmax/v (this may be an issue of semantics). The second is the significance of the intersection of the power and ratio curves. The two issues are related, I think.

Some quantity of force is available at Pmax. In any gear that amount of force can be determined by dividing Pmax by the speed at which Pmax occurs. F=P/v. But that's not Fmax, is it? It is F at Pmax. To me, Fmax = (some value of P)/(some value of v), the "some value" part depends on the gear ratio.

What is significant about the intersection of a ratio curve and the power curve? It's not the optimum shift point. It's not where the vehicle is acceleration most quickly. It's not the upper limit of acceleration potential (the engine torque curve is that limit). So why is it important?

Let's stick with that first. One bite at at time? Please?
 
  • #49
OldYat47 said:
Some quantity of force is available at Pmax. In any gear that amount of force can be determined by dividing Pmax by the speed at which Pmax occurs. F=P/v. But that's not Fmax, is it?

It is Fmax @ speed v.

For another speed, say v2, for the same Pmax, you will get another value, say Fmax2.

If v2 > than v the Fmax2 < Fmax, and vice-versa.

This is shown in figure 1:

fmax-vs-speed-jpg.101160.jpg

OldYat47 said:
To me, Fmax = (some value of P)/(some value of v), the "some value" part depends on the gear ratio.
For any gear ratio, you have Fmax = GR / r * Tmax which is what you mean and what is shown by figure 2:

fmax-vs-gear-jpg.101161.jpg


Can you see that Fmax at 40 km/h (figure 1) is greater than Fmax in 3rd gear (figure 2), which is also at 40 km/h? (Follow the vertical red line)

Therefore F = P / (40 km/h). If P is at its maximum value, then F must also be at its maximum value, don't you think?
OldYat47 said:
It's not where the vehicle is acceleration most quickly.
Yes it is.
OldYat47 said:
It's not the upper limit of acceleration potential
Yes it is.
 
  • #50
OK, so part of it is semantics. I don't like using Fmax unless it is the highest value of F for that ratio. But I'm not going to argue semantics. I'll agree to use your terminology.

Let's suppose we are trying to accelerate. You shift from 1st to 2nd so you wind up at Fmax in 2nd gear. From that speed until the intersection of the 2nd gear ratio and the constant power line the vehicle is accelerating more quickly than it is at that intersection point (torque values higher, A=F/M, more F = more A). For that reason I make the statement that that intersection point is not the point of maximum acceleration. It is at 40 KPH in 2nd gear, but not overall in 2nd gear.

That intersection point is also not the upper limit of rate of acceleration in 2nd gear. The upper limit of acceleration in 2nd gear is around 25 KPH, Fmax in 2nd gear.

Can we agree on that?
 
Back
Top