Quote:
Originally Posted by josemapiro
Not have to define the number of injectors car?
If yes, where it is defined, in the setup menu does not have that option.
|
It looks like that option has not been enabled in your copy of the code. You will need to go to this line, and uncomment the beginning of it.
Code:
//#define useCalculatedFuelFactor true // Ability to calculate that pesky us/gal (or L) factor from easily available published fuel injector data
You may need to also do a minor code edit, because I think the most recent version in this thread has an incorrect label, somewhere near line 2290.
It should be this:
Code:
#ifdef useCalculatedFuelFactor
idxNumerPressure,
idxNumerPressure,
#endif
Not this:
Code:
#ifdef useIsqrt
idxNumerPressure,
idxNumerPressure,
#endif