From 08aca14c8a4c05e9007c918954ba4aeb72d9014b Mon Sep 17 00:00:00 2001 From: jmt Date: Sun, 8 Nov 2009 18:48:54 +0000 Subject: [PATCH] Dave Perry: smooths transition to glideslope for CenturyIII autopilot --- Aircraft/Generic/century3.nas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Aircraft/Generic/century3.nas b/Aircraft/Generic/century3.nas index 6088a75cb..4212e9521 100644 --- a/Aircraft/Generic/century3.nas +++ b/Aircraft/Generic/century3.nas @@ -607,18 +607,18 @@ var gsArm = func { return; } ## - # If the deflection is more than 0.2 degrees wait 2 seconds and check again. + # If the deflection is more than 0.1 degrees wait 2 seconds and check again. ## - if (abs(deviation) > 0.2) + if (abs(deviation) > 0.1) { #print("deviation"); settimer(gsArm, 2); return; } ## - # If the deviation is less than 0.1 then activate the GS pitch mode. + # The deviation is less than 0.1 then activate the GS pitch mode. ## - elsif (abs(deviation) < 0.2) + else { #print("capture"); lockAltHold.setBoolValue(0);