From 1e3f0f0050cd4860b8bf2b6ecb59ba040f8b934f Mon Sep 17 00:00:00 2001 From: andy Date: Thu, 10 Nov 2005 20:26:37 +0000 Subject: [PATCH] Fix stall widths for the "auxilliary" (reverse flow) stalls so they are sharp, as intended. These were are never seen in practice; I found the problem while looking at 360 degree lift curve graphs looking for discontinuities. --- src/FDM/YASim/Wing.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FDM/YASim/Wing.cpp b/src/FDM/YASim/Wing.cpp index 8816cfa99..5c9fd6a33 100644 --- a/src/FDM/YASim/Wing.cpp +++ b/src/FDM/YASim/Wing.cpp @@ -433,7 +433,7 @@ Surface* Wing::newSurface(float* pos, float* orient, float chord, int i; for(i=2; i<4; i++) { s->setStall(i, 0.2267f); - s->setStallWidth(i, 1); + s->setStallWidth(i, 0.01); } if(flap0) s->setFlapParams(_flap0Lift, _flap0Drag); -- 2.39.5