No - it's the pitching moment. So
Torque = 0.5 * air_density * relative_airspeed^2 * wing_area * wingChord * Cm
Just second, does it mean that resulting angular force of the body will depend only on Lift force in relation to center of mass of full system?
I thought that process is like this:
- we calculate Lift and Drag at aifoil system of coordinates, then we sum them up and after transforming to airplane system of coordinates apply them to center of mass of airplane
- to find resulting angular velocity our torque would be T = vector_from_com_to_airfoil X (Lift_airfoil + Drag_airfoil).
(Note - I fixed the pitching moment equation - sorry!)
The torque from the Cm term is in addition to that due to the lift and drag forces being applied away from the centre of mass.
So the procedure is this:
For each aerofoil component:
1. Calculate the local air flow (taking into account the movement of the plane), Set to zero the component that is along the wing's spanwise direction
2. From this calculate the angle of attack, AoA
3. From this calculate/look up Cl, Cd and Cm
(modify Cl, Cd, Cm and AoA depending on control surface deflections)
4. Calculate the "dynamic pressure": q = 0.5 * density * square(local air speed)
5. Calculate the lift force liftForce = Cl * wingArea * q
6. Apply the lift force at the "quarter chord" position (adjust this if the wing is stalled or in reverse flow), in a direction perpendicular to the local air flow and the spanwise wing direction (so this applies torque as well as force to the centre of mass). Note that this is _not_ the wing's "up" direction.
7. Calculate the drag force dragForce = Cd * wingArea * q
8. Apply the drag force at the quarter chord position (adjust as above), in the direction of the local air flow (this applies torque as well as force to the centre of mass). Note that this is _not_ the wing's "back" direction
9. Calculate the pitching moment: pitchingMoment = Cm * wingArea * q * wingChord
10. Apply the pitching moment (torque) around the wing's spanwise axis.