Determination of airdrag coefficient

Click For Summary

Discussion Overview

The discussion revolves around determining the air drag coefficient and rolling resistance coefficient for an electric car simulation using a DC-engine. Participants explore the calculations necessary to achieve accurate results based on deceleration data collected during runout tests, focusing on the effects of air resistance and rolling resistance at low speeds.

Discussion Character

  • Exploratory
  • Technical explanation
  • Mathematical reasoning
  • Debate/contested

Main Points Raised

  • Some participants propose that the rolling resistance coefficient is around 0.014, while the air drag coefficient is expected to be between 0.3 and 0.9.
  • One participant describes the equations for rolling resistance and air resistance, indicating that the total resistance can be expressed as the sum of these forces.
  • Another participant suggests calculating acceleration from velocity data to isolate air drag, questioning the specific difficulties encountered in the calculations.
  • Concerns are raised about the significance of air drag at low speeds, with one participant expressing surprise that it plays a major role under 5 m/s.
  • Participants discuss the potential impact of track slope on the results, noting that even a small incline could affect the calculations.
  • One participant shares an empirical method for determining the coefficients from a referenced book, while another provides a plot of deceleration using a specific rolling resistance value.
  • A later reply critiques the formulation used for calculating the drag coefficient, suggesting an alternative equation and expressing uncertainty about the adequacy of the data for accurate determination.
  • Participants note that small changes in data can lead to significant variations in the calculated drag coefficient, emphasizing the need for more data at higher speeds for better accuracy.

Areas of Agreement / Disagreement

Participants express differing views on the importance of air drag at low speeds and the adequacy of the data for accurately determining the drag coefficient. There is no consensus on the best approach to calculate the coefficients or the significance of various factors affecting the results.

Contextual Notes

Limitations include potential inaccuracies due to low-speed data, the influence of track slope, and unmeasured environmental factors such as wind speed. The discussion highlights the complexity of the calculations and the need for careful consideration of assumptions.

asgerbj
Messages
12
Reaction score
0
So, we're trying to simulate an electric car running with a DC-engine. To get the calculations right we must determine the rolling resistance coefficient and airdrag coefficient.

(We've already determined the rolling resistance to about 0.014, doing some linear calculations at low speeds < 2m/s, where the airresistance is ~ 0)

We've gathered data of the deacceleration of the car (doing a runout test) using GPS data. This means that we have the speed as a function of time. However, no matter what we do, it seems that we get the calculations wrong, as we expect the rolling resistance coefficient to be somewhere between 0.010 - 0.020 and the air drag might be 0.3 - 0.9.

Here is a graph of the speed as a function of time.

http://dl.dropbox.com/u/202411/p2/runout1.png

The graph is generated with MATLAB using this data: http://dl.dropbox.com/u/202411/p2/v.txt , notice that this is just the speed, however, we sample 5hz, which means Δt = 0.2s between each datapoint.

So, how do we calculate the correct airdrag- and rolling resistance coefficient, preferably with the lowest possible error?
 
Last edited by a moderator:
Engineering news on Phys.org
Oh yea, so, there are no force from engine or anything else, just the wheels and airdrag. The rolling resistance is;
F_{rr} = C_{rr} \cdot m \cdot g

C_{rr} is the coefficient of rolling resistance, m the mass and g the gravitational constant (9,82 m/s^2).

and the air resistance is
F_{air} = \frac{1}{2} \cdot \rho \cdot A \cdot C_d \cdot v^2
and likewise.. \rho the density of air, A the front area of car, C_d the air drag coefficient and v the speed of the car.

In this case, the deacceleration should be calculated like this:
F_{res} = F_{rr} + F_{air}
m \cdot a = F_{rr} + F_{air}
 
If you have velocity versus time just determine the acceleration and then if you know the rolling resistance you can easily solve for the air drag assuming that is the only other force acting on you car. What exactly are you having trouble with?
 
We seem to get a function a(v), where as the other function is v(t), and something here messes up. However, when we do the calculations manually with just Δa at the time Δt, we seem to get approx values that sound plausible. But we want to use it mathematicly right in MATLAB.
 
Why don't you supply us with the vehicle mass and frontal cross section? With your very low speeds (under 5 m/sec), I am surprised that air drag is important.
 
Bob S said:
Why don't you supply us with the vehicle mass and frontal cross section? With your very low speeds (under 5 m/sec), I am surprised that air drag is important.

Frontal area is:
A = 1.425m \cdot 1.462m = 2.08 m^2

We use the density of air at 17 degree celsius:
ρ = 1.2250 \frac{kg}{m^3}

The mass of the car is 740 kg, and weight of our 2 passengers approx 75kg each:
m = 740kg + 2 \cdot 75kg = 890kg
 
There is an empirical method to find those coefficients in the http://books.sae.org/book-bosch8 (4th ed) and it is reproduced here.
 
Here is a plot of your car deceleration using a Crr of 0.017. There is no curvature. If I add air drag, I see no effect until the drag coefficient is over 1. Stokes (linear) air drag may apply at these speeds. How level is your track? A change in slope of 0.1% makes a difference.
 

Attachments

  • CarRolling res1.jpg
    CarRolling res1.jpg
    19.1 KB · Views: 499
jack action said:
There is an empirical method to find those coefficients in the http://books.sae.org/book-bosch8 (4th ed) and it is reproduced here.

OK, We will take a look there.

Bob S said:
Here is a plot of your car deceleration using a Crr of 0.017. There is no curvature. If I add air drag, I see no effect until the drag coefficient is over 1. Stokes (linear) air drag may apply at these speeds. How level is your track? A change in slope of 0.1% makes a difference.

I can't deny that there might be a slope of 0.1%, but it should be more or less as level as it can be... So you might recommend us doing calculations at higher speeds?
 
  • #10
Bob S said:
Here is a plot of your car deceleration using a Crr of 0.017. There is no curvature. If I add air drag, I see no effect until the drag coefficient is over 1. Stokes (linear) air drag may apply at these speeds. How level is your track? A change in slope of 0.1% makes a difference.

Yes, if you just use Crr there won't be any curvature. Can you tell me how you made the calculations/graphs using both rolling and air resistance, and tried changing the drag coefficient?
 
  • #11
I used The program shown in the attachment (written in True Basic). A slope of 0.1% (1.2 inches per 100 feet) in your track is equivalent to changing your Crr by 0.001 ( i.e., from 0.016 to 0.017. You might run the test in the opposite direction, or using a different section of track. Higher speeds will make the turbulent air drag larger, and use a larger section of track, but running test in both directions will decrease the dependence on slope.
 

Attachments

  • Carrolling resistanceprog.jpg
    Carrolling resistanceprog.jpg
    30.5 KB · Views: 520
  • #12
OK, Thanks for the help everybody. Just to close this topic, here's what we did. (I hate when there are no ending answers when looking around internet forums, so here we go :D)

Here is an example of data we gathered using GPS (something similar is already presented in the topic).

qT7WC.png


We quit trying to solve the differential equation that we started out with, and solved it using average change in deacceleration during the time.
C_d = \frac{m \cdot \frac{\Delta v}{\Delta t} - m \cdot g \cdot {\mu}_{rr}}{\frac{1}{2} \cdot \rho \cdot A \cdot (\frac{\Delta v}{\Delta t})^2 \cdot \Delta t^2}

This gave us some possible values, here's an example, using data from the image i posted above.
C_d = \frac{890kg \cdot \frac{ 4,85 m/s - 0 m/s}{ 38,5s - 6,5 s} - 890kg \cdot 9,82 m/s^2 \cdot 0,014}{\frac{1}{2} \cdot 1.293 kg/m^3 \cdot 2,08 m^2 \cdot (\frac{4,85 m/s - 0 m/s}{38,5s - 6,5s})^2 \cdot (38,5s - 6,5s)^2} = 0,3962

To prove that this was right, I created a program in MATLAB which calculates the run with different drag coefficients, rolling resistances and slope of the road. (This is done by making a for loop calculating the deacceleration, calculating the new speed ... and so on until you hit 0m/s) .. Playing around with different values proved that the calculated values were possible with a slope of 0.1 % (0.1 meter rise over a distance of 100m, and we can't really neglect this being a possibility)... Also, airforce and windspeeds (with or against the car) were not measured either, so these could have influence.
 
  • #13
Although it gives out the same answer, I think the correct formulation for your equation would be:

C_d = \frac{m \cdot \frac{\Delta v}{\Delta t} - m \cdot g \cdot {\mu}_{rr}}{\rho \cdot A \cdot v \cdot \Delta v}

Where v is the average speed.

That being said, I'm not sure you have enough data to determine C_d. You need more data at a higher speed.

To prove that, if we used your equation with the points {6.5; 4.85} and {35; 0.15} instead of {6.5; 4.85} and {38.5; 0}, we get C_d = 0.822, which is really different from 0.3962. With points {6.5; 4.85} and {25; 1.5}, it is even worst with C_d = 2.57.
 
  • #14
jack action said:
To prove that, if we used your equation with the points {6.5; 4.85} and {35; 0.15} instead of {6.5; 4.85} and {38.5; 0}, we get C_d = 0.822, which is really different from 0.3962. With points {6.5; 4.85} and {25; 1.5}, it is even worst with C_d = 2.57.

Yes, I agree, there are big changes with just a little change in the data used. To determine it more accurately we need measurements at much higher speeds (70-100 km/h)... However, we are modelling and simulating an electric car, which means that our calculations will only need to satisfy speeds at 20-40 km/h.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 7 ·
Replies
7
Views
10K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 7 ·
Replies
7
Views
5K
  • · Replies 26 ·
Replies
26
Views
7K
  • · Replies 56 ·
2
Replies
56
Views
9K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 1 ·
Replies
1
Views
2K