Ford 4.6 2v, PI-head motor, SVO supercharger and methanol injection
I have scaled my tune because my injectors are 'too large'. CDAN4 can't handle 40+ lb injectors. To resolve this, my injector parameters, MAF transfer, and SARCHG are all scaled to 50% (maintaining load, etc. while bringing my injectors under the clip limit).
The best document I have to reference for information is the CDAN2 document from ford (CDAN2.txt/pdf). I figure its probably close enough to my strategy to still apply. To calculate filtering coefficients, CDAN2 does something similar to (this only applies under certain conditions, the calculation can change for tip out, idle, etc):
Code: Select all
AIR_NUM_MULT = (11781.34/AIR_MAN_VOL) * FN1052(ACT,ECT)
AIR_B3_N = FN052N(N)
MAP_AIR_0 = FN052M(N) * FN052BP(BP)
air_k_base := AIR_NUM_MULT / [AIR_B3_N + (MAP_AIR_0/AIR_CHG(old))]
AIR_FK := air_k_base
AIR_NUM_MULT is determined by the 'manifold volume' scalar, AIR_B3_N is FN052N, and MAP_AIR_0 is proportional FN052M.
Note: I have BP in my tune dummied out / locked to 29.88. I use PRLDSW = 0 and the BP term was messing up my PERLOAD numbers.
Code: Select all
PERLOAD = [LOAD * 29.9] / [FN035(N) * BP]
I think this is more correct than scaling ONLY manifold volume, as some have done before - if you ONLY change manifold volume, than you don't end up with the same air_k_base as before. If you only change either FN052BP or FN052M...its okay?
Code: Select all
air_k_base := 2*AIR_NUM_MULT / [AIR_B3_N + (MAP_AIR_0/AIR_CHG(old))]
= AIR_NUM_MULT / 0.5*[AIR_B3_N + (MAP_AIR_0/AIR_CHG(old))]
= AIR_NUM_MULT / [0.5*AIR_B3_N + 0.5*(MAP_AIR_0/AIR_CHG(old))]
= AIR_NUM_MULT / [0.5*AIR_B3_N + (0.5*MAP_AIR_0/AIR_CHG(old))]
air_k_base := AIR_NUM_MULT / [AIR_B3_N + (0.5*MAP_AIR_0/AIR_CHG(old))]
My results in doing this have been positive. Between performing this and halving other mass unit values in the tune (transient fuel mass, etc.), tunes seem to act nearly the same before and and after scaling.
Does this seem right to anyone? I'd love to hear feedback / comments / experience. Do other strategies work similarly?
My other question - does anyone have any information on how to actually tune FN052N and FN052M? I can't find any good explanations online of how to empirically gather corrections to either of them. I'm using the stock NPI 2v head values and I think it contributes to fuel error at times (I have 2v PI heads). Could anyone post these functions for a 2v PI head car? I found some spreadsheets from the user mitchb with 2004 2v engine values, but it doesn't list the units (in case he see's this - what are the units used in the file MAP_vs_airchg_19p14k.xls that you posted?)
Really, any information about manifold and VE modelling is welcome, especially for CDAN4 EECs
Thanks guys