Acceleration Increase Fuel Table (ADD_FUEL)
Moderator: Matt
-
- Posts: 149
- Joined: Tue Jan 15, 2008 1:51 pm
Acceleration Increase Fuel Table (ADD_FUEL)
From what I read this table adds extra fuel for quick acceleration and uses the TPS as a reference.
Is the Y-axis the amount of addition fuel to add, or is it the TPS voltage value?
On some ka24det tunes I see it changed from 203 to 255 (max value.)
When tuning does anyone mess with this map? If so why do you?
For a NA tune is there any point in messing with it?
Is the Y-axis the amount of addition fuel to add, or is it the TPS voltage value?
On some ka24det tunes I see it changed from 203 to 255 (max value.)
When tuning does anyone mess with this map? If so why do you?
For a NA tune is there any point in messing with it?
-
- Posts: 38
- Joined: Sat May 03, 2008 8:03 am
That is the 'increase fuel'
Whate devin wrote:
Whate devin wrote:
This topic was never completely finished. The indexes are what I have were RPM from what I did find originally when putting it together but not sure about the meaning of the number itself. Cant find any referenced in the GRID mapmaker to this, or other Japanese documentation. It is something that came from the ROM Editor config files but no real info behind itOne table of interest is the Throttle Enrichment Table. When you stab the gas pedal the TB (throttle body) opens and a rush of air enters the engine. At this point the engine needs an immediate boost in fuel and can not wait for the MAF sensor. So depending upon the angle of the TB an extra amount of fuel is added. From what I have heard the stock Throttle Enrichment Table is very good and it should only be altered on highly modified cars that have been dynod and need specific AFR adjustment. Also the TTP Max helps to keep the Throttle Enrichment from dumping too much fuel at lower rpms.
-
- Posts: 112
- Joined: Wed May 03, 2006 5:51 pm
- Location: Id, USA
I am not sure if this is what you are referencing, but the function of "accel increase volume" commonly found at &H0200 in the 4cyl ecus (ka, sr) is to max the TP load variable used to plot the fuel correction table.
The table (accel increase volume) is indexed with RPM and the data value is compared with the current TPS adc count. If the TPS is greater than the current "accel increase volume" data value, the regular TP used to plot the fuel correction table will be bypassed and a value of &HFFFF (maximum TP) will be used instead.
Basically what it does is shift the plot the the last column. The description provided "accel increase volume" is actually a good one for this function, though I sometimes call it "TPS maxout TP"
Small problem here is that the actual TP is not affected, thus the map trace will not reflect this happening. This is the only condition where TP maptracing will not accurately display the correct location being used by the ecu.
EDIT: I believe this is what the original poster was referring to. Most sr/ka ecus have this set to 203. So when the TPS is 4060mv or above, the ecu will always be using the last column of the fuel correction table.
The table (accel increase volume) is indexed with RPM and the data value is compared with the current TPS adc count. If the TPS is greater than the current "accel increase volume" data value, the regular TP used to plot the fuel correction table will be bypassed and a value of &HFFFF (maximum TP) will be used instead.
Basically what it does is shift the plot the the last column. The description provided "accel increase volume" is actually a good one for this function, though I sometimes call it "TPS maxout TP"
Small problem here is that the actual TP is not affected, thus the map trace will not reflect this happening. This is the only condition where TP maptracing will not accurately display the correct location being used by the ecu.
EDIT: I believe this is what the original poster was referring to. Most sr/ka ecus have this set to 203. So when the TPS is 4060mv or above, the ecu will always be using the last column of the fuel correction table.
Thanks for the feedback gabe.
So that value 203 * 0.20mv = TPS voltage threshold before using maximum possible TP. Thats an extra translation I can add in the next version
I have seen that FFFF assigned to TP in the fuel map code as well as the 'Accel increase fuel' table but didnt know how they were linked
So that value 203 * 0.20mv = TPS voltage threshold before using maximum possible TP. Thats an extra translation I can add in the next version
I have seen that FFFF assigned to TP in the fuel map code as well as the 'Accel increase fuel' table but didnt know how they were linked
-
- Posts: 149
- Joined: Tue Jan 15, 2008 1:51 pm
-
- Posts: 149
- Joined: Tue Jan 15, 2008 1:51 pm
If it isn't too much trouble to figure out from the code what is the TPS voltage required for the ecu to start using the increase fuel table?Matt wrote:From looking at the code it is gear independent, and once the TPS voltage for the particular RPM is exceeded then the look up for TP is set to 65535 [255] but not shown up as such in consult as gabe mentioned
There is no real way to display when this is occuring
I know it's gear independent but is it close to being around a specific voltage?
+4V? +4.3?
I believe that is done already, the current RPM accessed is traced, and then you match the TPS voltage against what the guage is
If it is over then your TP internally to the ECU is at maximum
If it is over then your TP internally to the ECU is at maximum
- Attachments
-
- increase_fuel.JPG
- acceleration increase fuel
- (100.47 KiB) Downloaded 4643 times
-
- Posts: 149
- Joined: Tue Jan 15, 2008 1:51 pm
Ah I see. Yes that makes it pretty easy to know if the current AFR in the cell I'm in when I play back a log is influenced by the increase fuel table on not..Matt wrote:I believe that is done already, the current RPM accessed is traced, and then you match the TPS voltage against what the guage is
If it is over then your TP internally to the ECU is at maximum
Thanks!
Edit:
I think I misunderstood what this is used for.
I thought that making the values higher would cause a higher TP and richer fuel mixture on acceleration over a certain TPS value, but instead these values are a maximum threshold of the TPS values to accept before altering the TP with data other then that on the Fuel Map.
-
- Posts: 112
- Joined: Wed May 03, 2006 5:51 pm
- Location: Id, USA
There are additional TPS based fuel corrections in these ecus as well, but they have to do with transitional issues with the MAF sensor. Basically as you come off the throttle and back on, the rush of air can cause the standard fuel control algorithm to overshoot and rich AF. In such cases the ecu will use a type of alphaN (TPS based) maf emulation.
Throttle enrichment is extremely important with all fuel controllers obviously. The reason we do not have to fiddle with enrichment settings all the time is due to the accurate high response nature of the MAF (aside from condition listed above).
The standard fuel control algorithm takes care of most(all) of the acceleration enrichment.
A speed density system is much slower to react and the volume accuracy is not as fine (after it is calculated). So needless to say a lot of TPS enrichment functions are required with those systems (and they are generally not as efficient)
From what I have noticed, the MAF technology also got better throughout the years, the later model MAF has better response and does not require as much compensation (like first paragraph).
Throttle enrichment is extremely important with all fuel controllers obviously. The reason we do not have to fiddle with enrichment settings all the time is due to the accurate high response nature of the MAF (aside from condition listed above).
The standard fuel control algorithm takes care of most(all) of the acceleration enrichment.
A speed density system is much slower to react and the volume accuracy is not as fine (after it is calculated). So needless to say a lot of TPS enrichment functions are required with those systems (and they are generally not as efficient)
From what I have noticed, the MAF technology also got better throughout the years, the later model MAF has better response and does not require as much compensation (like first paragraph).
-
- Posts: 149
- Joined: Tue Jan 15, 2008 1:51 pm
Awesome. Thanks for the info.GZ@hybridka wrote:There are additional TPS based fuel corrections in these ecus as well, but they have to do with transitional issues with the MAF sensor. Basically as you come off the throttle and back on, the rush of air can cause the standard fuel control algorithm to overshoot and rich AF. In such cases the ecu will use a type of alphaN (TPS based) maf emulation.
Throttle enrichment is extremely important with all fuel controllers obviously. The reason we do not have to fiddle with enrichment settings all the time is due to the accurate high response nature of the MAF (aside from condition listed above).
The standard fuel control algorithm takes care of most(all) of the acceleration enrichment.
A speed density system is much slower to react and the volume accuracy is not as fine (after it is calculated). So needless to say a lot of TPS enrichment functions are required with those systems (and they are generally not as efficient)
From what I have noticed, the MAF technology also got better throughout the years, the later model MAF has better response and does not require as much compensation (like first paragraph).