I need to estimate a drag race quarter mile time given the car's weight, bhp and preferably the drive (FWD, RWD, 4WD). I know $v(t) = ds/dt$ and $a(t) = dv/dt = d^2s/dt^2$, but how can I get the function $s(t)$ to calculate $v(t)$ and $a(t)$? I thought maybe Power to Weight ratio would help for solving the acceleration but I have no idea what to do with it and maybe the drive would just be a constant which is then subtracted from the calculated time. Can you help me?
|
migrated from math.stackexchange.com Aug 16 '12 at 13:51
|
As an alternative approach, one can use calculus to calculate $v(t)$ from $a(t)$ and then $s(t)$ from $v(t)$. In particular, $v(t)=v(0)+\int a(t)dt$ and so $s(t)=s(0)+\int v(t)dt$. One can model acceleration over time using the power-to-weight ratio (though other factors, such as gear ratio, will also come into play). You may either assume the weight is constant, or account for change of weight over time due to burning fuel. You can also take wind resistance into account, or ignore it. Ideally, for simplicity, assume zero wind resistance and a constant weight, but be aware that this will introduce some (not much) error. |
|||||
|
|
You can get the acceleration from Newton's second law $F=ma$ with the net driving force on the car. Then as @CameronBuie indicated, you integrate twice to find the expression for $s(t)$ from which you can solve for $t$. If you assume the force is constant, then it proceeds like this: $$ a = F/m \\ v = Ft/m \\ s(t) = \frac{Ft^2}{2m} \\ t_D = \sqrt{2Dm/F} $$ where the integration constants are zero since $s(0)=v(0)=0$ and we can solve for the quarter-mile time $t_D$ by putting $D=0.25\mathrm{miles}$. Here's an example. Assume a 1-ton car delivers 1000 ft-lbs of torque to the 12in-radius wheels the whole time and there is no drag, then approximately we have $$ F= 1000\mathrm{lb_f}\simeq 4448N \\ t_D = \sqrt{2\cdot 402m \cdot 1000kg / 4448N}\simeq 13.4s $$ To determine the force from the horsepower and drive type is partly a physics problem and partly an automotive engineering question, since it seems to depend a least on RPMs, gear ratios and transmission loss. You could try asking at physics.stackexchange.com or Google for some pointers. |
|||
|
|
Power is energy/time, so (you'll have to work out the units) bhp$=\frac d{dt} \frac {mv^2}2=mav$ Note that this says acceleration is infinite at startup ($v=0$) but you have a traction limit. So $a=\max(traction limit, \frac {bhp}{mv})$ While you are traction limited, $s=\frac 12 at^2$. When you are power limited, $\frac {dv}{dt}=\frac{bhp}{mv}$, so $\frac {v^2}2=\frac {bhp}m t+C$ where you evaluate $C$ to match the end of the traction limit phase. |
|||
|
|