1
0
Fork 0

Yank the sqrt() terms from the twist calculations. They were causing

solution failures for reasons I have still to investigate.
This commit is contained in:
andy 2004-02-13 18:12:08 +00:00
parent 7da5a741fb
commit 1bc3c5eca0

View file

@ -349,7 +349,7 @@ void Wing::compile()
sr->surface = s;
sr->weight = chord * segWid;
s->setTotalDrag(sr->weight);
s->setTwist(_twist * Math::sqrt(frac));
s->setTwist(_twist * frac);
_surfs.add(sr);
if(_mirror) {
@ -360,7 +360,7 @@ void Wing::compile()
sr->surface = s;
sr->weight = chord * segWid;
s->setTotalDrag(sr->weight);
s->setTwist(_twist * Math::sqrt(frac));
s->setTwist(_twist * frac);
_surfs.add(sr);
}
}