Poposhka
Computer
- May 9, 2006
- 6
hi all, i'm new here...
I'm a computer nerd who enjoy getting into trouble making hobby programming projects, and this time i'm working on a crude aerodynamics engine. problem is, my physics background is, shall we say, limited. Although i do enjoy the learning experience.
Here's my problem.
I'm trying to calculate the resulting force for an object, given the thrust of the jet engine, the mass of the object, and the drag coefficient. The values i'm working with, to make it simpler, are:
Weight = 3800 kg
Thrust = 17600 N
Air density = 1.225 kg/m^3
I'm dumbing it down a whole lot, using constants for some things ... so my resulting formula looks something like this:
F(t) = (17600/3800) - (0.5 * 1.225 * D * v(t)^2)
Now my big issue is with the drag coefficient D (i'm assuming the reference area is 1 m^2 for simplicity)...
If this craft is to obtain something even close to it's speed at sea level, which is 870 kph, the drag coefficient needs to be 0.0000129.. and that just seems WAY too small if you compare to some common values. If i'm using the drag coefficient that seems about right for this craft (0.25) it achieves only 5.71 m/s, which is just way off.
What am i doing wrong here?
I'm a computer nerd who enjoy getting into trouble making hobby programming projects, and this time i'm working on a crude aerodynamics engine. problem is, my physics background is, shall we say, limited. Although i do enjoy the learning experience.
Here's my problem.
I'm trying to calculate the resulting force for an object, given the thrust of the jet engine, the mass of the object, and the drag coefficient. The values i'm working with, to make it simpler, are:
Weight = 3800 kg
Thrust = 17600 N
Air density = 1.225 kg/m^3
I'm dumbing it down a whole lot, using constants for some things ... so my resulting formula looks something like this:
F(t) = (17600/3800) - (0.5 * 1.225 * D * v(t)^2)
Now my big issue is with the drag coefficient D (i'm assuming the reference area is 1 m^2 for simplicity)...
If this craft is to obtain something even close to it's speed at sea level, which is 870 kph, the drag coefficient needs to be 0.0000129.. and that just seems WAY too small if you compare to some common values. If i'm using the drag coefficient that seems about right for this craft (0.25) it achieves only 5.71 m/s, which is just way off.
What am i doing wrong here?