PCM Diagnostics & Tuning HP Tuners | Holley | Diablo

EFI LIve PiD

Thread Tools
 
Search this Thread
 
Old 11-11-2004 | 09:19 PM
  #1  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Question EFI LIve PiD

How would I put this:
Code:
(RAW({GM.ACP})/51)
, this equals voltage.

Into this formula so it would work in EFI LIVE

Code:
AFR=0.627*V ^2 + 0.457*V + 9.7758
so basically it would be

Code:
0.627*(RAW({GM.ACP})/51) ^2 + 0.457*(RAW({GM.ACP})/51) + 9.7758
Thanks.
Chad

Last edited by HC02SS; 11-13-2004 at 01:39 PM.
Old 11-12-2004 | 04:32 PM
  #2  
Steve Bryant's Avatar
LS1 Tech Veteran
iTrader: (1)
 
Joined: Oct 2003
Posts: 1,170
Likes: 0
From: Wichita, Ks
Default

I don't quite understand your question. What do you want to do with this formula? What is your goal? I'll try to help.

Steve Bryant
Old 11-12-2004 | 11:21 PM
  #3  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Default

Originally Posted by Steve Bryant
I don't quite understand your question. What do you want to do with this formula? What is your goal? I'll try to help.

Steve Bryant
Maybe this will better describe what I am trying to do.

V = (RAW({GM.ACP})/51)

Here is the formula I have to use.

0.627*V ^2 + 0.457*V + 9.7758

I need to supliment the V in the second formula for the equation above, V = (RAW({GM.ACP})/51)

My problem is how do I make a PID in EFI Live that will reflect this and work properly?

Thanks!!

Last edited by HC02SS; 11-13-2004 at 01:39 PM.
Old 11-13-2004 | 01:39 PM
  #4  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Default

Originally Posted by HC02SS
Maybe this will better describe what I am trying to do.

V = (RAW({GM.ACP})/51)
Here is the formula I have to use.

0.627*V ^2 + 0.457*V + 9.7758

I need to supliment the V in the second formula for the equation above, V = (RAW({GM.ACP})/51)

My problem is how do I make a PID in EFI Live that will reflect this and work properly?

Thanks!!
Anyone????
Old 11-13-2004 | 02:50 PM
  #5  
EFILive's Avatar
Restricted User
iTrader: (2)
 
Joined: Dec 2001
Posts: 424
Likes: 0
From: New Zealand
Default

Code:
V = (RAW({GM.ACP})/51

AFR = 0.627*V^2 + 0.457*V + 9.7758

Let AFR = A+B+C

A = (0.627*(RAW({GM.ACP}))/51)^2
  = RAW({GM.ACP})^2*(0.626/51)^2
  = RAW({GM.ACP})^2/(51/0.627)^2
  = RAW({GM.ACP})*RAW({GM.ACP})/81.34^2
  = RAW({GM.ACP})*RAW({GM.ACP})/6616.15

B = 0.457*RAW({GM.ACP})

C = 9.7758

So
AFR = RAW({GM.ACP})*RAW({GM.ACP})/6616.15 + 0.457*RAW({GM.ACP}) + 9.7758
Hope my algebra is correct.
Paul
Old 11-13-2004 | 11:35 PM
  #6  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Default

Originally Posted by EFIliveV5
Code:
V = (RAW({GM.ACP})/51

AFR = 0.627*V^2 + 0.457*V + 9.7758

Let AFR = A+B+C

A = (0.627*(RAW({GM.ACP}))/51)^2
  = RAW({GM.ACP})^2*(0.626/51)^2
  = RAW({GM.ACP})^2/(51/0.627)^2
  = RAW({GM.ACP})*RAW({GM.ACP})/81.34^2
  = RAW({GM.ACP})*RAW({GM.ACP})/6616.15

B = 0.457*RAW({GM.ACP})

C = 9.7758

So
AFR = RAW({GM.ACP})*RAW({GM.ACP})/6616.15 + 0.457*RAW({GM.ACP}) + 9.7758
Hope my algebra is correct.
Paul
I will check this out and let you know if it works. Thanks for the time you have taken on all of my questions this week.

Thanks,
Old 11-13-2004 | 11:52 PM
  #7  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Default

I tried what you suggested and it didn't work, but you did give me a great idea. Here is the PID that I came up with.

0.627*((RAW({GM.ACP})/51)*(RAW({GM.ACP})/51))+(0.457*(RAW({GM.ACP})/51))+9.7758

Seems to work just great. I never thought of actually making it multiply the GM.ACP pid twice.

Old 11-14-2004 | 03:04 PM
  #8  
EFILive's Avatar
Restricted User
iTrader: (2)
 
Joined: Dec 2001
Posts: 424
Likes: 0
From: New Zealand
Default

Originally Posted by HC02SS
I tried what you suggested and it didn't work, but you did give me a great idea. Here is the PID that I came up with.

0.627*((RAW({GM.ACP})/51)*(RAW({GM.ACP})/51))+(0.457*(RAW({GM.ACP})/51))+9.7758

Seems to work just great. I never thought of actually making it multiply the GM.ACP pid twice.

Yes, I forgot to keep the divide by 51 in the second part of the equation.
And I squared the 0.627 at the start which I should not have done.
Guess I would still fail high school algebra

But you can simplify what you have even further to:
RAW({GM.ACP})*RAW({GM.ACP})/4148.325 + RAW({GM.ACP})/111.597 + 9.7758
(I think that is correct - but check it first)

Regards
Paul
Old 11-14-2004 | 03:14 PM
  #9  
Black02SS's Avatar
Thread Starter
TECH Junkie
iTrader: (36)
 
Joined: Oct 2002
Posts: 3,291
Likes: 1
From: Kokomo, IN
Default

Thanks Paul. I'll give it a shot.




All times are GMT -5. The time now is 04:16 PM.