Reading ICP pressure can be tricky on a 6.0L Powerstroke without an analog gauge on the high pressure oil port.
Different programming can skew the ICP function and alter the pressure
value in the pressure data read from the OBD Port. The reason for the
changes it to work around the factory limitations to hold pressure and
keep it throughout the RPM. Efficiency and response are the two main
factor in the changes. A good way around this is to read ICP Voltage
and convert to a pressure value.
Early model ICP sensor.
y=846.24*x-181.66
where
y = pressure
x = volts
Late Model ICP sensor.
y = 22.304x2 + 686.61x + 54.307
where
y = pressure
x = volts
This table will get you close, without doing the calculations.
(PSI) | (MPA) | Voltage |
0 | 0 | .02 |
200 | 1.5 | .4 |
400 | 3 | .73 |
600 | 4 | .96 |
800 | 5.5 | 1.2 |
1000 | 7 | 1.4 |
1200 | 8 | 1.6 |
1400 | 9 | 1.9 |
1600 | 11. | 2.1 |
1800 | 12.4 | 2.3 |
2000 | 13.8 | 2.6 |
2200 | 15.2 | 2.8 |
2400 | 16.5 | 3 |
2600 | 18.3 | 3.3 |
2800 | 19.3 | 3.5 |
3000 | 20.6 | 3.8 |