PCM Diagnostics & Tuning HP Tuners | Holley | Diablo
Sponsored by:
Sponsored by:

EFI LIve PiD

Thread Tools
 
Search this Thread
 
Old 11-11-2004, 08:19 PM
  #1  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

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 12:39 PM.
Old 11-12-2004, 03:32 PM
  #2  
LS1 Tech Veteran
iTrader: (1)
 
Steve Bryant's Avatar
 
Join Date: Oct 2003
Location: Wichita, Ks
Posts: 1,170
Likes: 0
Received 0 Likes on 0 Posts

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, 10:21 PM
  #3  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

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 12:39 PM.
Old 11-13-2004, 12:39 PM
  #4  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

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, 01:50 PM
  #5  
Restricted User
iTrader: (2)
 
EFILive's Avatar
 
Join Date: Dec 2001
Location: New Zealand
Posts: 424
Likes: 0
Received 0 Likes on 0 Posts
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, 10:35 PM
  #6  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

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, 10:52 PM
  #7  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

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, 02:04 PM
  #8  
Restricted User
iTrader: (2)
 
EFILive's Avatar
 
Join Date: Dec 2001
Location: New Zealand
Posts: 424
Likes: 0
Received 0 Likes on 0 Posts
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, 02:14 PM
  #9  
TECH Junkie
Thread Starter
iTrader: (36)
 
Black02SS's Avatar
 
Join Date: Oct 2002
Location: Kokomo, IN
Posts: 3,291
Likes: 0
Received 1 Like on 1 Post

Default

Thanks Paul. I'll give it a shot.




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