Notices
ECU Flash

Making use of ADC inputs

Old Jul 14, 2014, 09:30 PM
  #1  
EvoM Guru
Thread Starter
iTrader: (50)
 
mrfred's Avatar
 
Join Date: Mar 2006
Location: Tri-Cities, WA // Portland, OR
Posts: 9,675
Received 128 Likes on 96 Posts
Making use of ADC inputs

There are four ADC inputs that are fairly accessible in the sense that I can and already have simulated the original signals (rear O2 and fuel tank temperature), or the signal isn't absolutely necessary for some people (i.e., baro).

1) rear O2
2) ADC_0F (unused ADC input)
3) baro
4) fuel tank temperature (can only be used for temperature)
5) MAF Hz input

The question is what data would you like to be able to log or use to control the motor with these inputs. My personal preference is:

1) rear O2 -> wideband into ECU for logging and/or failsafe boost cut trigger.
2) baro -> baro + ethanol content. I think baro is an important item to use for engine control, so I'd like to make it easy to keep. Using a spare output on the ECU, I can trigger a relay to switch between measuring baro or ethanol content. Both parameters do not change rapidly under any conditions, so they are well suited to alternating measurement.
3) ADC_0F -> exhaust manifold pressure or fuel pressure. Fuel pressure measurement is useful for exploring whether a fuel system is well-designed or operating properly which is handy, but if wideband is being logged, I don't see fuel pressure as being needed for a failsafe. I like the idea of using ADC_0F to monitor exhaust manifold pressure (EMP) as a way to better control VE for SD. EMP would be used as a trim to VE.
4) fuel tank temperature -> I'm not sure what other temperatures would be most handy to log. I could see people wanting to log and perhaps use engine oil temperature or transmission temperature as a failsafe for boost cut. I could write generic code to handle either option.
5) MAF Hz -> turbo speed sensor. I'm not sure if this is possible. Without a doubt, I'd need a frequency divider to make this work.

Anyhow, I'd like to hear that are the parameters you'd like to log and or use to control the motor.
Old Jul 15, 2014, 04:08 AM
  #2  
Evolved Member
 
merlin.oz's Avatar
 
Join Date: Jun 2008
Location: Sydney
Posts: 824
Likes: 0
Received 23 Likes on 19 Posts
On my ADM Evo9, I log boost on pin 92 (MUT38) from an external sensor. We did not get any MAP sensor from the factory.

And log AFR on pin 93, MUT39, which is fuel tank pressure on USDM but is unused on JDM and ADM.

I would be interested in trying to log exhaust gas temp through pin 96, the fuel tank temperature signal on USDM. Once again, it is unused on ADM.
Does pin 96 have a pull-up resistor? And if so, what is its value?

A patch that adds fuel via a 2D table on rising exhaust gas temperature would be of some interest.
There is probably already some obscure code and tables in there already doing something from this input on USDM 8859 rom.

I guess what I am implying is maybe the existing fuel temp code routine (whatever it is) can be hi-jacked into doing this function. A pretty big wish though.

Last edited by merlin.oz; Jul 16, 2014 at 12:38 AM.
Old Jul 15, 2014, 07:24 AM
  #3  
EvoM Guru
Thread Starter
iTrader: (50)
 
mrfred's Avatar
 
Join Date: Mar 2006
Location: Tri-Cities, WA // Portland, OR
Posts: 9,675
Received 128 Likes on 96 Posts
EGT requires a Type-K thermocouple + amplifier. The output from this setup is a 0-5V signal rather than a resistance, so its not suitable for being logged via the factory temperature sensor inputs. A standard ADC input can be used though. Now that you mention it, EGT is something to think about having available.
Old Jul 15, 2014, 02:53 PM
  #4  
Evolved Member
 
merlin.oz's Avatar
 
Join Date: Jun 2008
Location: Sydney
Posts: 824
Likes: 0
Received 23 Likes on 19 Posts
Yes I understand what is required regarding the K-type and an amplifier, my point is if the input to the PCB has a pull-up resistor as I suspect, then a suitable buffer amplifier will overcome that and drive the resistor, provided the amplifier has sufficient drive capacity.

There are plenty of 0-5v output drive (rail to rail) op-amps out there.
Old Jul 15, 2014, 07:58 PM
  #5  
Evolving Member
iTrader: (2)
 
ace33joe's Avatar
 
Join Date: Mar 2003
Location: Used to be in Nor Cal, now working in Seoul
Posts: 394
Received 7 Likes on 7 Posts
Mychailo and Dave, you gurus are raising the bar again.

Although I also studied EE, I keep surprised what gurus here are improving what is already great.

I believe your passion and massive efforts differentiate EVO community from others.

Wideband direct logging without serial cable is a great feature already, and EGT-based AFR enrichment sounds awesome too.
Old Jul 17, 2014, 09:11 PM
  #6  
Evolved Member
iTrader: (3)
 
3SgteGuru's Avatar
 
Join Date: Feb 2006
Location: Clifton NJ
Posts: 1,401
Received 0 Likes on 0 Posts
Im Really intrested in the ethanol content. Actually i would like to see an entire flex fuel patch for the evo IX. I have some skills and time to donate to the project, also i have access to a dyno and i have a Evo IX, and i have some tuning experience.

Let me know how i can help, hex disassembly has me stumped and im having some trouble grasping the whole process.

Also why not patch the ECu to take a baro reading when the ignition is first turned on from the MAP. Before you crank the car its at atmospheric pressure. The only issue would be if your doing hill climbs.

Also Baro isnt important if youre speed density. PV=nrt we want the P from behind the intake valve. Baro is only needed for the calculation of the MAF sensor.

Last edited by 3SgteGuru; Jul 17, 2014 at 09:14 PM.
Old Jul 17, 2014, 09:28 PM
  #7  
EvoM Guru
Thread Starter
iTrader: (50)
 
mrfred's Avatar
 
Join Date: Mar 2006
Location: Tri-Cities, WA // Portland, OR
Posts: 9,675
Received 128 Likes on 96 Posts
Baro at startup is ok, but I'd rather get a periodic measurement. I agree that in the general sense, its not needed for the SD calculation, but turbo efficiency, which depends partly on ambient air pressure, can feedback into overall VE, so I think it has the potential to be a useful parameter to measure and use continuously for VE calculation for people who are travelling across significant elevation changes. And I think it can be helpful for idle.
Old Jul 17, 2014, 09:39 PM
  #8  
Evolved Member
iTrader: (3)
 
3SgteGuru's Avatar
 
Join Date: Feb 2006
Location: Clifton NJ
Posts: 1,401
Received 0 Likes on 0 Posts
I think a better use would be to monitor EMAP, If your concerned with VE changing based off turbo efficiency. EMAP/map should give you a more accurate baseline of head flow and VE
Old Jul 20, 2014, 04:42 AM
  #9  
Evolved Member
 
Benja's Avatar
 
Join Date: Sep 2006
Location: Newcastle, Australia.
Posts: 800
Received 0 Likes on 0 Posts
I run ethanol content into ADC0F, fuel pressure sensor into the rear 02.
Old Nov 24, 2014, 04:06 PM
  #10  
Newbie
iTrader: (9)
 
memphis69's Avatar
 
Join Date: Nov 2013
Location: earth
Posts: 73
Likes: 0
Received 0 Likes on 0 Posts
...

Last edited by memphis69; Feb 28, 2015 at 02:45 PM.
Old Feb 23, 2015, 10:24 PM
  #11  
Newbie
iTrader: (7)
 
Underated's Avatar
 
Join Date: Jul 2007
Location: Vegas
Posts: 33
Likes: 0
Received 0 Likes on 0 Posts
I'm trying to see if there is a way to log oil pressure and what sensor would I need to use, ethanol content, log fuel pressure and oil temp. has there been any update on this? I tried searching but there was no final answer for any of these except ethanol content.
Old Feb 24, 2015, 08:42 AM
  #12  
EvoM Guru
Thread Starter
iTrader: (50)
 
mrfred's Avatar
 
Join Date: Mar 2006
Location: Tri-Cities, WA // Portland, OR
Posts: 9,675
Received 128 Likes on 96 Posts
Zeitronix 150 psi gauge pressure sensor.

http://www.zeitronix.com/installatio...allation.shtml

There are a limited number of inputs. Logging three pressure sensors would best be accomplished using rear O2, adc 0F, and fuel tank pressure. This would require some patching to keep the ECU happy.
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
mrfred
ECU Flash
397
Oct 8, 2023 04:45 AM
tunermt
Cobb AccessPORT
20
Jul 30, 2020 10:38 PM
kiddsm95
ECU Flash
9
Feb 18, 2016 06:01 AM
BoMbA_CaJu
Evo X Engine Management / Tuning Forums
1
Nov 14, 2015 05:41 PM
stokEd
Evo X Engine Management / Tuning Forums
51
Oct 14, 2015 06:44 PM


Thread Tools
Search this Thread
Quick Reply: Making use of ADC inputs



All times are GMT -7. The time now is 06:43 AM.