Jump to content

Better trim for air-start missions


LeCuvier

Recommended Posts

When you start a mission in the air, the nose goes brutally down and left. You need to apply a lot of rudder -right and nose-up trim, plus a bit of aileron trim before you can fly her with any level of precision. In an instant action mission you may already be under fire before you are done trimming, and before you can make any adjustment to target wingspan and range, let alone worrying about engine settings.

The P-47D should have at least approximately correct trim settings when the mission starts airborne.

  • Like 1

LeCuvier

Windows 10 Pro 64Bit | i7-4790 CPU |16 GB RAM|SSD System Disk|SSD Gaming Disk| MSI GTX-1080 Gaming 8 GB| Acer XB270HU | TM Warthog HOTAS | VKB Gladiator Pro | MongoosT-50 | MFG Crosswind Pedals | TrackIR 5

Link to comment
Share on other sites

  • 1 month later...

I reduced the "gain" parameter for the 3 trim wheels from 0.025 to 0.0125 in the file "clickabledata.lua" in the folder "...\DCS World OpenBeta\Mods\aircraft\P-47D-30\Cockpit\Scripts".

Here is the block of lines with the 3 modified lines:

           -- Aileron Trim Wheel
            elements["pnt_91"] = cabin_axis_limited(0, _('Aileron Trim'),  devices.CONTROLS, device_commands.Button_1, 91, 0.0, 0.0125, false, false, {-1.0, 1.0}, {135, -45}, {45, -45})-- HWF changed Gain from 0.025 to 0.0125
            elements["pnt_91"].sound = {{SOUND_SW5}}
            -- Elevator Trim Wheel
            elements["pnt_92"] = cabin_axis_limited(0, _('Elevator Trim'), devices.CONTROLS, device_commands.Button_4, 92, 0.0, 0.0125, false, false, {-1.0, 1.0}, {-135, -20}, {-45, -30})-- HWF changed Gain from 0.025 to 0.0125
            elements["pnt_92"].sound = {{SOUND_SW5}}
            -- Rudder Trim Wheel
            elements["pnt_93"] = cabin_axis_limited(0, _('Rudder Trim'),   devices.CONTROLS, device_commands.Button_7, 93, 0.0, 0.0125, false, false, {-1.0, 1.0}, {135, -45}, {45, -45})-- HWF changed Gain from 0.025 to 0.0125
            elements["pnt_93"].sound = {{SOUND_SW5}}

 

LeCuvier

Windows 10 Pro 64Bit | i7-4790 CPU |16 GB RAM|SSD System Disk|SSD Gaming Disk| MSI GTX-1080 Gaming 8 GB| Acer XB270HU | TM Warthog HOTAS | VKB Gladiator Pro | MongoosT-50 | MFG Crosswind Pedals | TrackIR 5

Link to comment
Share on other sites

6 minutes ago, LeCuvier said:

Here is the block of lines with the 3 modified lines:

Thanks!  This is exactly what I was referring to.  I had to uninstall/reinstall DCS a month or so back, and immediately noticed the difference in trim performance.  Hopefully they fix this within module, so we can stop modifying lua files.

Link to comment
Share on other sites

Back to the original subject of this thread:
I was tired of having to mess with a lot of trimming at the start of airborn missions, so I figured something out.

1. all 3 trim wheels are in their center position when the mission starts.

2. Elevator trim must be more tailheavy, rudder needs a lot of yaw-right trim, and ailerons need a bit of right-wing down trim.

3. I determined, by trial and error, which action values would be required for the trim axes and found:

    Elevator = -0.4
    Rudder   = 0.2
    Ailerons = -0.15

Note: the action value for the center or "neutral" position is = 0.

I created a key command (to be bound to a pushbutton or keyboard key) that combines the 3 action values. This line of code is added to my "default.lua":

{down = device_commands.Button_6, pressed  = device_commands.Button_9, up = device_commands.Button_3, cockpit_device_id = devices.CONTROLS, value_down = -0.4, value_pressed = 0.2, value_up = -0.15, name = _('Elevator_Rudder_Aileron Trim Preset'), category = {_('Flight Control')}}, 

This creates a new command "Elevator_Rudder_Aileron Trim Preset" which I bound to a button on my joystick. Immediately after mission start I hit this button and from there I have very little trimming to do. (at about 300 knots IAS)

Those who don't mind modifying the "default.lua" are welcome to try this solution.


Edited by LeCuvier
  • Like 1
  • Thanks 2

LeCuvier

Windows 10 Pro 64Bit | i7-4790 CPU |16 GB RAM|SSD System Disk|SSD Gaming Disk| MSI GTX-1080 Gaming 8 GB| Acer XB270HU | TM Warthog HOTAS | VKB Gladiator Pro | MongoosT-50 | MFG Crosswind Pedals | TrackIR 5

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...