[Flightgear-devel] YASim and Windmilling

2003-03-29 Thread David Megginson
In YASim, propellers start turning backwards instead of windmilling. This code in PropEngine.cpp might be the problem: // Euler-integrate the RPM. This doesn't need the full-on // Runge-Kutta stuff. float rotacc = (engTorque-propTorque)/Math::abs(_moment); _omega += dt * rotacc;

Re: [Flightgear-devel] YASim and Windmilling

2003-03-29 Thread Andy Ross
David Megginson wrote: > In YASim, propellers start turning backwards instead of windmilling. > This code in PropEngine.cpp might be the problem: > > // Euler-integrate the RPM. This doesn't need the full-on > // Runge-Kutta stuff. > float rotacc = (engTorque-propTorque)/Math::abs(_mom