Update Advanced-Idle.md

Updated to reflect when the Coasting Idle Table is used and how it is determined. This could probably go in a separate "phases" reference later.

fabfd6a413/firmware/controllers/actuators/idle_thread.cpp (L55-L62)
This commit is contained in:
DenisMitchell 2024-08-15 13:28:12 -04:00 committed by GitHub
parent e819d4fa9f
commit 2bd99da4a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -6,4 +6,4 @@ Setting this value to __true__ enables the use of the Idle Ignition Table and Id
## Coasting Idle tables
Setting this value to __true__ will enable the _Coasting IAC Position_ table. This will manually over-ride the Idle Air Control valve position during the coasting phase. This can be used to help reduce engine braking and may be useful if the engine has difficulty returning to idle.
The coasting phase is determined by checking if the current RPM is greater than the maximum idle RPM (_Idle Target RPM_ + _RPM Upper limit_) and the engine is no longer in the cranking taper period.
The coasting phase is determined by first checking if the TPS (or throttle pedal position if using ETB) is less than the _TPS Threshold_. If so, FOME next checks if the current RPM is greater than the maximum idle RPM (`Idle Target RPM + RPM Upper limit`) and the engine is no longer in the _cranking IAC taper duration_. If all of these conditions are true, the engine phase is coasting and the _Coasting Idle Table_ is used.