Jump to content
Sign in to follow this  
t4murphy

XP11 Carenado Fokker 50 VS issues and altitude hold

Recommended Posts

New V 1.0 Fokker 50 for XP11 having issues with vertical speed and holding altitude. The vertical speed adjust and altitude select arent adhered to with the autopilot. The aircraft will continue to climb and sometimes descend. Eventually I can get it to hold altitude by manually adjusting controls and then engage altitude hold. Cant get alt select to funtion like it should.

Edited by t4murphy

:P Timothy Murphy

Share this post


Link to post
Share on other sites

I had similar issues, but only on 2nd flights. On my 1st flight the autopilot would usually work just fine. Today I discovered that this dataref gets set to 0 when selecting the "STBY" button, which I press after every landing: sim/cockpit2/autopilot/electric_trim_on

Since it never (as far as I can find) gets set back to 1 the autopilot loses the ability to control the trim wheel. To fix it I wrote a small lua script (to be used with FlyWithLua):

DataRef( "trim", "sim/cockpit2/autopilot/electric_trim_on", "writable")

function trimfix()
 if trim < 1
 then
    trim = 1
 end
end

do_every_frame("trimfix()")

 

  • Like 2

Share this post


Link to post
Share on other sites
On 3/30/2020 at 3:22 PM, NoPizzaNoGlory said:

I had similar issues, but only on 2nd flights. On my 1st flight the autopilot would usually work just fine. Today I discovered that this dataref gets set to 0 when selecting the "STBY" button, which I press after every landing: sim/cockpit2/autopilot/electric_trim_on

Since it never (as far as I can find) gets set back to 1 the autopilot loses the ability to control the trim wheel. To fix it I wrote a small lua script (to be used with FlyWithLua):


DataRef( "trim", "sim/cockpit2/autopilot/electric_trim_on", "writable")

function trimfix()
 if trim < 1
 then
    trim = 1
 end
end

do_every_frame("trimfix()")

 

Thanks for this script. Old post but recently moved everything over to 11.52 Vulkan with same BS. Script works like a charm. Thanks


:P Timothy Murphy

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Tom Allensworth,
    Founder of AVSIM Online


  • Flight Simulation's Premier Resource!

    AVSIM is a free service to the flight simulation community. AVSIM is staffed completely by volunteers and all funds donated to AVSIM go directly back to supporting the community. Your donation here helps to pay our bandwidth costs, emergency funding, and other general costs that crop up from time to time. Thank you for your support!

    Click here for more information and to see all donations year to date.
×
×
  • Create New...