Bjoern
worst developer ever
Looks like I was wrong about the condition levers. Autostart sets them to 40%, not 100%.
Here's a gauge to set the prop and throttle levers during the start sequence.
There's a ready for use version attached to this post.
Here's the manual install for those unwilling to register and or read-only mode:
The macros control the fine pitch limit, in case you need a value other than zero (percent). Just change the numbers to suit.
Copy above code and paste it into an empty text file, then save it as "PropStart.xml". Put the XML file into a folder named "PropStart", add it to your aircraft's "panel" folder.
Add this to the panel.cfg, to the [VCockpit01] (and [Window00], if flying from the 2D panel):
Change the "NN" to the next number in the gauge sequence.
Now when you start the aircraft, either with autostart or manually, the prop pitch and throttle levers will reset to the values given in the gauge. This only happens while the starter is engaged and the engine is not yet running, so after that, you've got full control again.
Another workaround is editing the value for fuel_flow_gain in the aircraft.cfg.
The default turboprops use 0.011. With 0.005 and the gauge, not even a very light C208 will budge during startup, despite not using parking brakes and modified (lower) ground friction values. Comes at the cost of a generally reduced engine spoolup speed.
Hope this helps.
Here's a gauge to set the prop and throttle levers during the start sequence.
There's a ready for use version attached to this post.
Here's the manual install for those unwilling to register and or read-only mode:
Code:
<Gauge Name="Prop And Throttle Control At Startup">
<Macro Name="FinePitchPct">0</Macro>
<Macro Name="ThrottlePct">0</Macro>
<Element>
<Select>
<Value>
(A:GENERAL ENG STARTER:1,bool) (A:GENERAL ENG COMBUSTION:1,bool) ! and
if{ (A:GENERAL ENG PROPELLER LEVER POSITION:1,percent) @FinePitchPct > if{ @FinePitchPct 16383 * (>K:PROP_PITCH1_SET) }
(A:GENERAL ENG THROTTLE LEVER POSITION:1,percent) @ThrottlePct > if{ @ThrottlePct 16383 * (>K:THROTTLE1_SET) } }
(A:GENERAL ENG STARTER:2,bool) (A:GENERAL ENG COMBUSTION:2,bool) ! and
if{ (A:GENERAL ENG PROPELLER LEVER POSITION:2,percent) @FinePitchPct > if{ @FinePitchPct 16383 * (>K:PROP_PITCH2_SET) }
(A:GENERAL ENG THROTTLE LEVER POSITION:2,percent) @ThrottlePct > if{ @ThrottlePct 16383 * (>K:THROTTLE2_SET) } }
(A:GENERAL ENG STARTER:3,bool) (A:GENERAL ENG COMBUSTION:3,bool) ! and
if{ (A:GENERAL ENG PROPELLER LEVER POSITION:3,percent) @FinePitchPct > if{ @FinePitchPct 16383 * (>K:PROP_PITCH3_SET) }
(A:GENERAL ENG THROTTLE LEVER POSITION:3,percent) @ThrottlePct > if{ @ThrottlePct 16383 * (>K:THROTTLE3_SET) } }
(A:GENERAL ENG STARTER:4,bool) (A:GENERAL ENG COMBUSTION:4,bool) ! and
if{ (A:GENERAL ENG PROPELLER LEVER POSITION:4,percent) @FinePitchPct > if{ @FinePitchPct 16383 * (>K:PROP_PITCH4_SET) }
(A:GENERAL ENG THROTTLE LEVER POSITION:4,percent) @ThrottlePct > if{ @ThrottlePct 16383 * (>K:THROTTLE4_SET) } }
</Value>
</Select>
</Element>
<Copyright>BK, 09/2017</Copyright>
</Gauge>
The macros control the fine pitch limit, in case you need a value other than zero (percent). Just change the numbers to suit.
Copy above code and paste it into an empty text file, then save it as "PropStart.xml". Put the XML file into a folder named "PropStart", add it to your aircraft's "panel" folder.
Add this to the panel.cfg, to the [VCockpit01] (and [Window00], if flying from the 2D panel):
Code:
gaugeNN=PropStart!PropStart,1,1,1,1
Change the "NN" to the next number in the gauge sequence.
Now when you start the aircraft, either with autostart or manually, the prop pitch and throttle levers will reset to the values given in the gauge. This only happens while the starter is engaged and the engine is not yet running, so after that, you've got full control again.
Another workaround is editing the value for fuel_flow_gain in the aircraft.cfg.
Code:
fuel_flow_gain = 0.005 //Gain on fuel flow
The default turboprops use 0.011. With 0.005 and the gauge, not even a very light C208 will budge during startup, despite not using parking brakes and modified (lower) ground friction values. Comes at the cost of a generally reduced engine spoolup speed.
Hope this helps.