Results 1 to 2 of 2
  1. #1
    10+ Posting Member gandofalcon's Avatar
    Join Date
    Feb 2008
    Location
    Spain
    Posts
    11
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    OfSched PMsisytem 170

    568C .0 OfSched. Some condition for this one?, if....else

  2. #2
    25+ Posting Member
    Join Date
    Jun 2008
    Location
    Europe
    Posts
    40
    Contribute If you enjoy reading the
    content here, click the below
    image to support MyCockpit site.
    Click Here To Contribute To Our Site

    Re: OfSched PMsisytem 170

    Quote Originally Posted by gandofalcon View Post
    568C .0 OfSched. Some condition for this one?, if....else
    I use this:

    // OFF SCHEDULE DESCEND
    MCPAutopilotAlt = (AutopilotAlt / 65536 * 3.2808399)
    Descending = (ground = 0) and (MCPAutopilotAlt < AltimeterValue)
    Climbing = (ground = 0) and (MCPAutopilotAlt > AltimeterValue)

    if Climbing and (AltimeterValue > 9000) and (Verticalspeed <-1000 )
    OffSchedDscnd = 1
    else
    OffSchedDscnd = 0
    endif

    if Descending then OffSchedDscnd = 0

    You need these additional offsets in the sysvar.txt file:

    02C8 4 Verticalspeed
    07D4 4 AutopilotAlt
    3324 4 AltimeterValue

    regards
    Potroh

  3. Thanks gandofalcon thanked for this post