Ive been working on these and from testing this weekend they work quite well. I added two additional temperature probes by duplicating the clt/mat circuit. These were placed pre and post turbo which allows me to calculate the adiabatic efficiency of the turbo.
I can also calculate the efficiency of the intercooler using the turbo outlet and MAT temperatures.
Here's the maths required for megatune:
; Get raw values from ADC.
x6ADC = scalar, U08, 26, "ADC", 1.000, 0.000 ;x6 turbo inlet probe (or ambient temp)
x7ADC = scalar, U08, 27, "ADC", 1.000, 0.000 ;x7 turbo outlet probe
Then do some maths:
;convert to deg 'f for calcs
tinletF = { table(x6ADC, "matfactor.inc")-40} ; Turbo Inlet (atmosphere) deg 'f
toutletF = { table(x7ADC, "matfactor.inc")-40} ; Turbo outlet deg 'f
;Convert into user units for guages
auxmat = { tempCvt(table(x6ADC, "thermfactor.inc")-40) } ; Manifold temperature in user units.
auxmat1 = { tempCvt(table(x7ADC, "thermfactor.inc")-40) } ; Manifold temperature in user units.
;Calculate Turbo Adiabatic efficiency
P1 = { barometer * 0.1450377 } ; inlet pressure absolute (barometer in psi) should be ~14.7
T1 = { tinletF + 460 } ;inlet temp in Radians
P2 = { P1 + boost } ;outlet pressure absolute
T2 = { (T1 * ( pow (P2 / P1, 0.283)) -460)} ; temperature rise assuming 100% compressor Efficiency
AE = { ((T2 - tinletF)/(toutletF - tinletF)) * 100 } ; Adiabatic Efficiency % is difference between actual and calculated temp rises.
;Calculate Intercooler efficiency
;Static ambient temp used here, because my turbo inlet temp isn't the same as ambient due to heat wash over filter.
ambient = { 10 } ; in user units.
ICE = { ((auxmat1 - mat) / (auxmat1 - ambient) * 100) } ;Intercooler/Chargecooler efficiency in %
Then add these to your Gauges section
;Turbo Gauges
auxmatGauge = auxmat, "Turbo Inlet", "%TEMP", -40, 110, -15, 0, 95, 100, 3, 0
auxmatGauge1 = auxmat1, "Turbo Outlet", "%TEMP", -40, 110, -15, 0, 95, 100, 0, 0
turbo = AE, "Adiabatic Efficiency ", "%", 0, 100, -1, -1, 100, 100, 1, 1
intercooler = ICE, "Intercooler Efficiency ", "%", 0, 100, -1, -1, 100, 100, 1, 1
And of course you can log the data and draw pretty graphs.

You can see once the temperature settles down, I'm seeing about 65-70% turbo adiabatic eff and only 50% chargecooler eff.
More details are here:
http://www.mez.co.uk/turbo10.html
