Determination of airdrag coefficient

In summary: 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?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 give more accurate results.
  • #1
asgerbj
12
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
  • #2
Oh yea, so, there are no force from engine or anything else, just the wheels and airdrag. The rolling resistance is;
[itex]F_{rr} = C_{rr} \cdot m \cdot g [/itex]

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

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

In this case, the deacceleration should be calculated like this:
[itex]F_{res} = F_{rr} + F_{air}[/itex]
[itex]m \cdot a = F_{rr} + F_{air}[/itex]
 
  • #3
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?
 
  • #4
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.
 
  • #5
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.
 
  • #6
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:
[itex]A = 1.425m \cdot 1.462m = 2.08 m^2[/itex]

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

The mass of the car is 740 kg, and weight of our 2 passengers approx 75kg each:
[itex]m = 740kg + 2 \cdot 75kg = 890kg[/itex]
 
  • #7
There is an empirical method to find those coefficients in the http://books.sae.org/book-bosch8 (4th ed) and it is reproduced here.
 
  • #8
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: 422
  • #9
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: 446
  • #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.
[itex]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}[/itex]

This gave us some possible values, here's an example, using data from the image i posted above.
[itex]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[/itex]

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:

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

Where [itex]v[/itex] is the average speed.

That being said, I'm not sure you have enough data to determine [itex]C_d[/itex]. 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 [itex]C_d = 0.822[/itex], which is really different from 0.3962. With points {6.5; 4.85} and {25; 1.5}, it is even worst with [itex]C_d = 2.57[/itex].
 
  • #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 [itex]C_d = 0.822[/itex], which is really different from 0.3962. With points {6.5; 4.85} and {25; 1.5}, it is even worst with [itex]C_d = 2.57[/itex].

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.
 

1. What is the airdrag coefficient?

The airdrag coefficient, also known as the drag coefficient, is a dimensionless quantity that represents the resistance of an object moving through a fluid, like air. It is a measure of how much the fluid slows down the object's motion.

2. How is the airdrag coefficient determined?

The airdrag coefficient can be determined through experimentation and mathematical analysis. In general, it involves measuring the force of drag on an object moving through a fluid at different speeds and angles, and using this data to calculate the coefficient.

3. Why is the determination of airdrag coefficient important?

The airdrag coefficient is an important factor in the design and performance of vehicles and other objects that move through a fluid. It affects factors such as speed, fuel efficiency, and stability, making it crucial to understand and optimize for various applications.

4. What factors can affect the airdrag coefficient?

The airdrag coefficient can be affected by several factors, including the shape and size of the object, the density and viscosity of the fluid, and the object's velocity and orientation relative to the fluid flow. Surface roughness and boundary layer effects can also play a role.

5. Can the airdrag coefficient be reduced?

Yes, the airdrag coefficient can be reduced through various methods, such as changing the shape of the object to be more streamlined, adding aerodynamic features, or using materials with lower drag coefficients. However, there is a limit to how much it can be reduced, and other factors must also be considered in the design process.

Similar threads

  • Mechanical Engineering
Replies
3
Views
3K
  • Introductory Physics Homework Help
Replies
4
Views
921
  • Engineering and Comp Sci Homework Help
Replies
7
Views
3K
Replies
7
Views
8K
Replies
6
Views
1K
Replies
26
Views
5K
  • Mechanical Engineering
Replies
3
Views
4K
  • Classical Physics
2
Replies
56
Views
8K
  • Precalculus Mathematics Homework Help
Replies
3
Views
3K
  • Classical Physics
Replies
6
Views
1K
Back
Top