According to the PDF document on the LC-1, the factory programmed settings for the second A/D output (the first is a narrow band simulator) is as follows:
less tha 0.5 volts is while the LC-1 is warming up or error condition
0.5V = 7.35 AFR
5.0V = 22.3881 AFR
So the formula you need to use in the calc_pids.txt file is:
AFR = (({EXT.AD1}-0.5)*3.3418)+7.35
If you can confirm that those settings work correctly with your LC-1, then we will add them permanently into EFILive.
To use your LC-1, your calc_pids.txt file should look like this:
Code:
# ==============================================================================
# File details
# ------------
#
# This section defines various details about the file format.
*FILE
#Parameter Value Description
#---------- ---------------- ---------------------------------------------------
VERSION 7.1.1 File version
DECSEP . Decimal separator used in this file
# ==============================================================================
# Units
# -------------------
# See sae_generic.txt for more information on the *UNITS section
*UNITS
#Code System Abbr Description
#-------- ---------- -------- --------------------------------------------------
# ==============================================================================
# Add slot definitions here
# --------------------------------
# See sae_generic.txt for more information on "SLOT" formats
#
#Units Low High Fmt Expression
#------------ ------------- ------------- ---- ---------------------------------
*CLC-00-001
V 0.0 5.00 .1 "{EXT.AD1}"
AFR 10.0 18.0 .2 "(({EXT.AD1}-0.5)*3.3418)+7.35"
*CLC-00-002
factor 0.0 2.0 .1 "{CALC.AFR_LC11}/{GM.AFR}"
*CLC-00-003
V 0.0 5.00 .1 "{EXT.AD2}"
AFR 10.0 18.0 .2 "(({EXT.AD2}-0.5)*3.3418)+7.35"
*CLC-00-004
factor 0.0 2.0 .1 "{CALC.AFR_LC12}/{GM.AFR}"
# ==============================================================================
*PRN - Parameter Reference Numbers
# --------------------------------
# See sae_generic.txt for more information on the *PRN section
#
#Code PRN SLOT Units System Description
#------------------------- ---- ------------ ---------------- ---------------- ---------------------------------
CALC.AFR_LC11 F001 CLC-00-001 "V,AFR" Fuel "Wide Band AFR 1 - LC-1"
CALC.BEN_Lc11 F002 CLC-00-002 factor Fuel "Base Efficiency Numerator 1 - LC-1"
CALC.AFR_LC12 F003 CLC-00-003 "V,AFR" Fuel "Wide Band AFR 2 - LC-1"
CALC.BEN_LC12 F004 CLC-00-004 factor Fuel "Base Efficiency Numerator 2 - LC-1"