Calculating wing angle of attack

A place to discuss everything related to Newton Dynamics.

Moderators: Sascha Willems, walaber

Calculating wing angle of attack

Postby PJani » Fri Aug 27, 2010 12:45 pm

Hy guys i am trying to calculate wing angle of attack. I have wing normal , their center of mass and velocity of fuselage. :roll:


This is my lift curve(angle of atack is in radians)...i calculated this polynomial from points.
Code: Select all
   struct SubF
   {
   static dFloat liftCurve(dFloat x)
   {

      if(x>-0.087 && x<0.521)
         return -13432.556f
               * (-0.52151586f + x)
               * (0.087f + x)
               * (0.092538092f + x)
               * (0.20620989f + (-0.84661103f + x)* x)
               * (0.047291951f + (-0.15885782f +x)* x);

      return 0.0;

   }
   };
| i7-5930k@4.2Ghz, EVGA 980Ti FTW, 32GB RAM@3000 |
| Dell XPS 13 9370, i7-8550U, 16GB RAM |
| Ogre 1.7.4 | VC++ 9 | custom OgreNewt, Newton 300 |
| C/C++, C# |
User avatar
PJani
 
Posts: 448
Joined: Mon Feb 02, 2009 7:18 pm
Location: Slovenia

Return to General Discussion

Who is online

Users browsing this forum: No registered users and 26 guests

cron