From 47b230735620a285783566ace5e6cfd9ad08f664 Mon Sep 17 00:00:00 2001 From: andy Date: Tue, 19 Mar 2002 00:02:18 +0000 Subject: [PATCH] Oops, "one third from the edge" means "one SIXTH from the center". --- src/FDM/YASim/Surface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FDM/YASim/Surface.cpp b/src/FDM/YASim/Surface.cpp index baae993b8..536caf680 100644 --- a/src/FDM/YASim/Surface.cpp +++ b/src/FDM/YASim/Surface.cpp @@ -171,10 +171,10 @@ void Surface::calcForce(float* v, float rho, float* out, float* torque) // Airfoil lift (pre-stall and zero-alpha) torques "up" (negative // torque) around the Y axis, while flap lift pushes down. Both // forces are considered to act at one third chord from the - // center. Convert to local (i.e. airplane) coordiantes and store + // edge. Convert to local (i.e. airplane) coordiantes and store // into "torque". torque[0] = 0; - torque[1] = 0.33 * _chord * (flapLift - (_cz*_cz0 + stallLift)); + torque[1] = 0.1667 * _chord * (flapLift - (_cz*_cz0 + stallLift)); torque[2] = 0; Math::tmul33(_orient, torque, torque);