Air/Fuel ratio calculation

TheBac

Why do I keep doing this?
Staff member
Apr 19, 2008
15,314
1,601
113
Mid Michigan
Taking two of the few useful posts from the TS thread:

As much as I LOVE coal!, Nathans right! Its sinking our own ship.

You know, the more and more we see fast and faster trucks coming of age, the more prevalent were seein the big numbers put down with low smoke output! A light haze seems to be the sweet spot! I remember reading a statment from Banks a while ago about ideal diesel air/fuel ratio. Diesels start to produce visible smoke @ 18:1 A/F ratio but optimum A/F is 16:1...............There ya go, light haze;)

Well said Nathan. I totally agree with this from a Drag racing stand point and a street stand point. I think that a low to not smoke rule for drag racing is a good thing and can be done. For pulling I am not sure it can be done. With pulling classes setup the way they are. Basicly by turbo size I see no way around it. I know what Gale Banks say about being smoke being wasted power but I call BS. To get rid of the smoke you need and AFR of over 20. That does not make the power that and AFR of 16 does. Yes it smokes but it makes more power. A lot more power. I dont have a problem with my truck smoking the way it does. But it is not a street truck. My street truck is cleaner running than it was stock. FWIW turbo gasser smoke to. My old GN would puff black on WOT shifts with an AFR of low 11s. Most max effort turbo gassers a least haze.



I had always wondered what ideal A/F for a diesel was.
Questions:
1) How does a person log/track A/F on a diesel?
2)What sensor values would you want to look at to calculate A/F?
3) Is there a PID in EFILive for it? If not, can one be added?
 
Last edited:

03 D-max

Honorary "Tosser"
Apr 29, 2008
3,539
0
36
Lowville NY
Do wide band O2 Sensors work for diesels?

as for your Q's i dont think there is anything on the lb7's to check AFR because there isnt an O2 sensor in the exhaust. not sure if the other motors have one.

If wide band O2's will work for diesels then that is what you will need
 

JOHNBOY

< Rocking the Big Single!
Aug 30, 2006
2,159
0
0
Saegertown, Pa
Last edited:

JoshH

Daggum farm truck
Staff member
Vendor/Sponsor
Feb 14, 2007
13,597
629
113
Texas!!!
I have heard of people that have put wide band O2 sensors on their truck.
 

TheBac

Why do I keep doing this?
Staff member
Apr 19, 2008
15,314
1,601
113
Mid Michigan
So a gasser A/F meter will work on a diesel? Interesting.

If you installed an O2 sensor in the exhaust, couldnt you use the info from that, the MAF and mm3 of fuel to figure it out?
 
Last edited:

TheBac

Why do I keep doing this?
Staff member
Apr 19, 2008
15,314
1,601
113
Mid Michigan
I thought we could rescale the MAF to get higher readings? I couldve sworn I read that somewhere.



(BTW, can someone please help me stop my brain from thinking up all this other stuff while my current projects sit in the shop unfinished?) :rofl:
 
Last edited:

JOHNBOY

< Rocking the Big Single!
Aug 30, 2006
2,159
0
0
Saegertown, Pa
(BTW, can someone please help me stop my brain from thinking up all this other stuff while my current projects sit in the shop unfinished?) :rofl:
Your hopelessly lost like the rest of us.
This place is a support group for addicts like us.:happy2:
 

sweetdiesel

That's better
Aug 6, 2006
10,390
0
0
51
Thailand
So a gasser A/F meter will work on a diesel? Interesting.

If you installed an O2 sensor in the exhaust, couldnt you use the info from that, the MAF and mm3 of fuel to figure it out?

You should be able to use a calc PID with the sensor from greenlight:)

Ive read before that its not the greatest to use mm3 values instead try using Act boost/rpm

Fingers would be the good to talk to about this and IIRC he has allready made some good pids.

Also ive read that our diesels are around 40-60 to 1 at idle and crusing depending on tuning can be anywhere from 14:1 to 22:1

there are a lot of great articles in SAE and all over the net:)
 

sweetdiesel

That's better
Aug 6, 2006
10,390
0
0
51
Thailand
Found a old spread sheet .....Dont know if it will even help you at all
 

Attachments

  • Diesel%20AF%20ratios(1).zip
    5.1 KB · Views: 62

2500HeavyDuty

Book 'em, Danno!
Feb 14, 2008
2,209
0
0
Katy, Tx
www.myspace.com
you can rescale the maf, you can rescale the maf to where the truck will use a certian timing table under Amount of air of boost and use another for when the truck sucks in enough air to be racing.

or you can rescale it to better use the max injected fuel quantity table to control smoke.
 

Fingers

Village Idiot
Vendor/Sponsor
Apr 1, 2008
1,713
84
48
White Oak, PA
You should be able to use a calc PID with the sensor from greenlight:)

Ive read before that its not the greatest to use mm3 values instead try using Act boost/rpm

Fingers would be the good to talk to about this and IIRC he has allready made some good pids.

Also ive read that our diesels are around 40-60 to 1 at idle and crusing depending on tuning can be anywhere from 14:1 to 22:1

there are a lot of great articles in SAE and all over the net:)

I wrote a PID that uses pressure and duration to estimate the fuel being used compared to the air ingested. The scaling factor will need to be adjusted to your truck's injectors and tune. I set it to read 1:1 just as smoke comes out of the pipe.

Right now, it is limited by your MAF sensor's range. I have another, yet untested version that uses speed-density to estimate the air flow, but it is greatly affected by the engines volumetric efficiency. The MAF is more accurate and I am trying to learn enough to have the PID switch between the two methods when the MAF maxes out.

I'll post the MAF PID if anyone is interested.
 

Fingers

Village Idiot
Vendor/Sponsor
Apr 1, 2008
1,713
84
48
White Oak, PA
The two lines of interest out of my calc_pids.txt file are:

Code:
#Equiv
*CLC-00-005
:1               0.0              1.5      .2   "({GM.MAINBPW}+{GM.PILOTBPW})*SQRT({GM.FRPACT})/({CALC.CYLAIR}*16115)"

and

Code:
CALC.Equiv                     F601 CLC-00-005   ":1"             Performance   "A/F ratio"

You will have to adjust the 16115 up or down to match your injectors. I prefer to have the result read 1:1 when the exhaust gas just goes from haze to black. With that as a base, I figure "best" to be somewhere around 0.80

It is not perfect, and does not track as well with large injectors, but at least it is consistent.