Put the sqrt(frac) terms back into the wing twist.
This commit is contained in:
parent
85115ef347
commit
fc565ebd86
1 changed files with 2 additions and 2 deletions
|
@ -349,7 +349,7 @@ void Wing::compile()
|
|||
sr->surface = s;
|
||||
sr->weight = chord * segWid;
|
||||
s->setTotalDrag(sr->weight);
|
||||
s->setTwist(_twist * frac);
|
||||
s->setTwist(_twist * Math::sqrt(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 * frac);
|
||||
s->setTwist(_twist * Math::sqrt(frac));
|
||||
_surfs.add(sr);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue