Airfoil simulation

Started by
9 comments, last by BoredEngineer 8 years ago

Got some good progress:

Executable is here: https://www.dropbox.com/s/55dazkm8q4s0axn/MMT_Content.zip?dl=0

Implemented algorithm posted earlier. What I do now is split wing into segments, so some segments can have control surfaces. Contribution from each segment is scaled in proportion to wing area that segment covers. Cl/Cd/Cm are not parametrized but stored as curves for a single Reynold's number of 500k. It looks like this for NACA0012:

https://www.dropbox.com/s/gf0fppzi3l8uqtp/NACA0012_Cl_With_Flaps.JPG?dl=0

https://www.dropbox.com/s/ib04mky85acra3t/NACA0012_Cd_With_Flaps.JPG?dl=0

https://www.dropbox.com/s/mtfv0fexsvr2ejp/NACA0012_Cm_With_Flaps.JPG?dl=0

Red curve is flaps at 0 degrees deflection, green is at +15 and blue is at -15.

I've got curves from JavaFoil for a range of -20 to +20 degrees of angle of attack and then smoothed them out with curves for high angle of attack according to this article:

http://www.aerospaceweb.org/question/airfoils/q0150b.shtml

Another thing that was added is taking into account beta angle of attack as this:

q = 1/2 * p * V2 * cos2 ?

Overall, using approximations from Thin Line Theory and combining control surfaces with wing surface got more interesting results. Airplane reacts less linearly to steering. Both Fokker Dr.I and "Flying Aerosled" are using new model. Fokker took about an hour to balance, had to tweak position of center of mass and angle of horizontal stabilizer. The damn thing really likes to flip over the wheel during take-off. Moving center of gravity by 10 centimeters to the front, guarantees flip, moving it 10 centimeters to the back makes it unstable in flight. Wing geometry is limited to rectangular wings without tapper or sweep, I'll add function to account them in area and aspect ratio calculations later.

Overall I'm happy with the result. But what I can't do so far is to get airplane into unrecoverable spin. I can stall wings or tail, but as fuselage has less airdrag along the frontal section (propeller drag is not modeled) it just turns itself back into position where wings can catch air. What should I do about this? Is propeller drag plays important role in this process?

The other thing I didn't managed to get working is delta wing. Perhaps NACA0012 is not suitable for them or I need a higher quality and more precise pitching moment curve.

I haven't found formulation for pitching moment in approximation of thin line theory and using this:

Torque = 1/2 * p * V2 * WingArea * WingChord * Cm
not sure if this is precise enough to balance delta wing pitch.

Edit: Fixed links to coefficient curves

This topic is closed to new replies.

Advertisement