Author Topic: F-18 Flaps  (Read 19676 times)

Razgriz

  • Hero Member
  • *****
  • Posts: 699
Re: F-18 Flaps
« Reply #15 on: December 10, 2008, 09:39:31 pm »
If you are comfortable changing the aircrafts cfg files ,,you can deleate the auto-flap function
I did and ,to me , it works much better
Randy

How does one go about doing this?

Which lines in the aircraft.cfg file need to be removed / modified?

Find this coding in your Aircraft.cfg
Code: [Select]
[flaps.0]
type             = 2                                    // 1 - tail, 2 - lead
span-outboard    = 0.8                                  // 0.0 .. 1.0
extending-time   = 2.05                                 // seconds
flaps-position.0 = 0                                    // degrees
flaps-position.1 = 12                                   // degrees
flaps-position.2 = 33                                   // degrees
max_on_ground_position = 1
maneuvering_flaps=1

[flaps.1]
type             = 1                                    // 1 - tail, 2 - lead
span-outboard    = 0.8                                  // 0.0 .. 1.0
extending-time   = 2.05                                 // seconds
flaps-position.0 = 0                                    // degrees
flaps-position.1 = 30                                   // degrees
flaps-position.2 = 45                                   // degrees
maneuvering_flaps=1

Change it to this.
Code: [Select]
[flaps.0]
type             = 2                                    // 1 - tail, 2 - lead
span-outboard    = 0.8                                  // 0.0 .. 1.0
extending-time   = 2.05                                 // seconds
flaps-position.0 = 0                                    // degrees
flaps-position.1 = 12                                   // degrees
flaps-position.2 = 33                                   // degrees
max_on_ground_position = 1
maneuvering_flaps=0 //Changed from 1 to 0 to disable the autoflap system of the FCS.

[flaps.1]
type             = 1                                    // 1 - tail, 2 - lead
span-outboard    = 0.8                                  // 0.0 .. 1.0
extending-time   = 2.05                                 // seconds
flaps-position.0 = 0                                    // degrees
flaps-position.1 = 30                                   // degrees
flaps-position.2 = 45                                   // degrees
maneuvering_flaps=0 //Changed from 1 to 0 to disable the autoflap system of the FCS.

vortex_25

  • Newbie
  • *
  • Posts: 19
Re: F-18 Flaps
« Reply #16 on: December 11, 2008, 12:46:46 am »
Thanks!