Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Stopping an engine from starting?

Featured Replies

What is the best way to stop an engine from starting? It's a twin turbine aircraft and I want to stop an engine from starting if all the switches have not been set correctly. Currently I am shutting off the fuel valve but I what to use this to allow fuel to be switched on while the start sequence is running. Is there anything else that can be set that will stop one engine from starting even though the KEY_TOGGLE_STARTER1 is being toggled?Thanks.

  • Author

There probably will be other ways as well, but one way is to keep the mixture for that engine forced to zero when not all start conditions are met.Like using events MIXTURE*_LEAN (with *: 1,2,3 or 4)Rob

""Is there anything else that can be set that will stop one engine from starting even though the KEY_TOGGLE_STARTER1 is being toggled?""Unless you are doing a CTL-E autostart, you should stop toggling the starter. Something like:"All Ok for start sequence"if{ toggle_starter1 "all Ok to add fuel" if{ 16384 mixture1_set } }Tom

Setting the mixture to fully lean sounds like a good idea, I can stop toggling the starter because I want the engine to turn over. The idea is to turn the engine when the start switch is held left or right but not to start if you have not switched on the fuel, ignition etc.

Ah ok. Then Rob's suggestion is the way to go. Before executing the start sequence, you may cut the fuel ( 0 (>K:MIXTURE1_SET) ) and command a "fuel on" ( 16384 (>K:MIXTURE1_SET) ) only when combustion conditions are met.Tom

I tried this and it works perfectly, thanks guys!

  • Author

By the way, don't induce the famous "continuous event" problem here; so test the actual state of the Mixture lever before giving an event to avoid a continous stream of events.Like (when engine start should be blocked):(A:GENERAL ENG1 MIXTURE LEVER POSITION,percent) 1 >if{ 0 (>K:MIXTURE1_SET) }Cheers, Rob

  • 2 months later...

And do you know how to interrupt the engine start if Ctrl-E autostart has been used?I tried to trigger an ENGINE_AUTO_SHUTDOWN event, but it doesn't work everytime.Thanks,Eric

Eric,AFAIT it is not possible to stop the autostart once begun until the first engine is running stable (not even with an AUTO SHUTDOWN event). The starting process seems to be hard coded in a different way than the standard set of starter-fuel mixture control events.Tom

According to the tests I have done, you are 100% right. The problem is that you can catch the autostart event with an "On Event" (or its equivalent in C++), but you can't intercept it. It means you can not abort an engine autostart, unless I missed something...Any clue?Thanks,Eric

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.