Nitrous Pressure Logging
small quantity and though I don't know the resolution of the
A/D converters in the interface, I suspect it is not many bits'
worth (12 bits and 4V full scale, is 1mV per bit). Further the
small signal is liable to be easily corrupted.
If it were me (and I do think about this stuff) I would add an
instrumentation amplifier stage to the sender, gain it up to
the point that max bottle pressure produces something just
less than 4V at its output and then you will have better
resolution and some ground offset rejection as well.
Are you sure about the range / resolution and can you log
straight voltage (forgetting about translating it to cute
scale etc.) as a starting point?
Jimmy, in hpt, when i try to make a user defined pid in the LIST form with a volt of say 2.5XX, 2.6XX, 2.7XX, the pid won't save due to the XX digits. it will save if i only go into tenths,ie 2.5, 2.6, 2.7. but the nitrous sender's increments are .005 volts not tenths.
i don't have a clue how to use the LINEAR form. not sure what numbers to plug in or if it will work.
here is the volt range
PSI Volt
0 2.547
100 2.552
200 2.557
300 2.562
400 2.567
500 2.572
600 2.577
700 2.582
800 2.587
900 2.592
1000 2.597
1100 2.602
1200 2.607
1300 2.612
1400 2.617
1500 2.622
how to code the custom PID?
I think there's some funny business about how you have to
save the config, then quit and restart, for the new custom
PIDs to show up working. Don't pay much attention to that
myself but have seen some discussion of it on the HPTuners
'board.
If you can log the straight voltage, do it with the bottle at
a fixed pressure and see how much jumping around you get
from system electrical noise. That will tell you whether you
want to add some signal conditioning (like 2.5V reference,
gain and filtering) to get better fidelity at the logging input.
i can save pids fine if i don't go past tenths in volt input.
This is how the EFI live guys said to set up the PID
(({EXT.AD1} - 2.547) * 20000) = PSI
EXT.AD1 = Voltage from Black wire.
Last edited by Beer99C5; Apr 17, 2007 at 08:00 PM.
Trending Topics
The Best V8 Stories One Small Block at Time
This is how the EFI live guys said to set up the PID
(({EXT.AD1} - 2.547) * 20000) = PSI
EXT.AD1 = Voltage from Black wire.
Beer...what is the " * " asterisk? just an asterisk or "X"???
Beer...what is the " * " asterisk? just an asterisk or "X"???
(Voltage - 2.547) times 20000 = PSI
Voltage is from the Black wire.
* is the same as "Times" or "x" or "multiply by"

http://www.retrorelics.net/jim/Board...usUnitPvsV.xls
Last edited by Beer99C5; Apr 18, 2007 at 10:34 PM.
(Voltage - 2.547) times 20000 = PSI
under eio inputs(aux) you can make a custom pid, its a choice of either a list or linear custom pid which does not enable a formula.
under USER DEFINED PARAMETERS which is for vehicle data, you can set up a formula, but it won't save nor do i know the correct formula!!!!!!!!!!!!
For EFI Live I think its a couple line entries in the user calc PID's...I will post what to do with EFI Live when I get it going. I am able to log Fuel Pressure with an Autometer sending unit, its pretty much the same thing with a different formula.
Beer
under eio inputs(aux) you can make a custom pid, its a choice of either a list or linear custom pid which does not enable a formula.
under USER DEFINED PARAMETERS which is for vehicle data, you can set up a formula, but it won't save nor do i know the correct formula!!!!!!!!!!!!
save a log saving only voltages (scrap your custom PID)
then post it up....
then post it up....
the car volts or the volts coming from the dynotune sender?
if from the sender, it will probably be a consistent number because the bottle pressure won't change unless i turn the bottle heater on and even that won't yield 0 psi because the bottle is full?
well if you are saing save the volt input to the eio aux, i can do it but according to dynotune, 2.547 is 0 PSI and every .005 volts is a 100 PSI increase up to 1500 PSI.
Download my speadsheet and compare the voltages from your log to your bottle gauge, see if they track as Dynotune says the values should be...
Looks like horist will help ya out with the HPT part. Post a log with just the voltages (and what your doing like heating the bottle or maybe a purge) and he sounds like PID it for ya and test it with your log.
Cold bottle nearly full say 50°F I would guess 2.574X for volts. Turn the heater on and watch it increase a bit then purge it should never get to 2.59950 or so
Last edited by Beer99C5; Apr 19, 2007 at 04:00 AM.
Blacky has said that the logging ability is likely limited to +-200 PSI based on FlashScan A/D inputs are accurate to +/- 0.01V Despite this, I will give it a try next week.
Here is the sample PID for EFI live if anyone wants to try it (Combined input given from Ninety8C5 and joecar; Thanks guys!)
You can delete CLC-00-001 as that is my fuel pressure input
# ================================================== ============================
# 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
psi 0 100 0.1 "({GM.EGRS}*25)-12.5"
*CLC-00-002
psi 0 1500 0.1 "({EXT.AD2}-2.547)*20000"
# ================================================== ============================
*PRN - Parameter Reference Numbers
# --------------------------------
# See sae_generic.txt for more information on the *PRN section
#
#Code PRN SLOT Units System Description
#------------------------- ---- ------------ ---------------- ---------------- ------------------------------------------
CALC.FP F001 CLC-00-001 psi Fuel "Fuel Pressure"
CALC.NP F002 CLC-00-002 psi Nitrous "Nitrous Main Line Pressure"


