Fault frequency 47 times since the initial DTC on Jun 28th. So that's once every other day.
As you have VCDS, you can log the relevant values during a drive. As mentioned in the PM, IDE00496 and IDE00497 are the two key values. You'll then want to add other values like engine speed and vehicle speed and accelerator position so you have some context when you're looking at the data. But if you don't have Group UDS (don't have a HEX-V2 or HEX-NET), then the data sample rate becomes real suck as you add values. Without Group UDS, you'll probably have to just keep it at the two key values and start from there.
A graph I made from a log made some time back (I do all the data manipulation and graphing in Excel; I don't try to use VCDS for what it's not best at):
oil pressure management graph.jpg
You see in the graph that the engine is started, kicks up to 1200 rpm (red line) but does not run the sustained high idle as the engine is already a bit warm, it rolls down to the normal idle pretty quickly.
You see the oil pressure switches (orange line) "low" (value 1) comes on first (total value 1) then "high" (value 2) comes on shortly after (total value 1+2=3).
The oil pump mode switch (blue line, 0 = high mode, default; 1 = reduced mode, optional) is not activated initially, normal. Then after the ECM decides it's not running a sustained high idle and the oil temp is sufficient, it kicks the pump over to reduced mode (value 1). We see the oil switches respond as expected. The high switch stops reporting closed (no longer at least 2.something bar of pressure detected) and the total status value drops to 1 (only the low switch still reporting sufficient pressure, at least .7 bar).
And then we see pretty tight control as the ECM decides at times to kick in high mode and then to bring it back to reduced mode. The normal changeover point is 3500rpm, but until the oil is fully up to temp, you see how it kicks in sooner under engine load and engine rpm rises towards 3k.
So one of the first things to see from the data is the reporting of the high switch (the one in your DTC) consistently not there, or is it intermittently not in line with expectation?
In the Excel data, you can make another column and put this in to find the lines that do not have a logical IDE00496 - IDE00497 association:
=IF(E12=1,IF(F12=1,"-","ERR"),IF(F12=3,"-","ERR"))
In this case, the IDE00496 is in column E and the IDE00497 is in column F, and I just happened to copy the instance from line 12.
Bookmarks