Results 1 to 10 of 40

Thread: Summary Notes

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #18
    Joe (Moderator) joecar's Avatar
    Join Date
    Apr 2003
    Posts
    28,400

    Default Injector Pulse Width

    IBPW is the commanded injector pulsewidth, the scantool provides pids for this (IBPW1, IBPW2, INJDC1, INJDC2).

    IPW is the internal injector pulsewidth as would be computed by the PCM before converting it to IBPW.

    This is how IBPW appears to be computed from IPW:

    Code:
    IFR = lookup(B4001)(injector flow rate);
    
    IPW = airmass / AFR / IFR * 1000;
     
    IPW = IPW + TF(transient fueling modifiers);
    
    if IPW <= B9021(minimum transient pulsewidth) then 
        IPW = B9021;
    
    else if IPW <= B4003(minimum pulsewidth) then  
        IPW = B4004(default pulsewidth);
    
    else if IPW < B4006(small pulse threshold) then  
        IPW = IPW + B4005(small pulse adder);
    
    end
    
    IPW = IPW + B3701(voltage/manvac offset); 
    
    IBPW = IPW; 
    
    
    (table name is shown as a green comment following the table id)

    This is important because correctly modeling the injectors is critical, it allows the rest of the tuning exercise to correctly fit into place, and it allows dynamic fueling (i.e. port wall wetting/evaporation) to work properly.
    5.7ute has performed some difficult and time consuming experiments to arrive at that sequence, good job Mick

    See here: showthread.php?13364-IBPW-B4005-B3701-correlation
    Last edited by joecar; September 29th, 2011 at 01:49 PM.

Similar Threads

  1. Tuning Notes by WeathermanShawn
    By WeathermanShawn in forum Gen III V8 Specific
    Replies: 182
    Last Post: July 12th, 2013, 03:21 AM
  2. Release notes
    By PSWired in forum General (Petrol, Gas, Ethanol)
    Replies: 0
    Last Post: January 8th, 2009, 03:40 AM
  3. Beta Releases and Log Files Full Of Notes
    By swingtan in forum FlashScan V2 BB Logging
    Replies: 3
    Last Post: April 28th, 2008, 10:10 PM
  4. User Notes
    By Lextech in forum General (Petrol, Gas, Ethanol)
    Replies: 7
    Last Post: April 8th, 2007, 12:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •