Quote:
Originally Posted by Screw Loose
In my quest to improve things I've been looking for a better way to view the logs. The files are simply CSV files and with a little messaging I am able to load them into Megasquirt's log program, MegaLogViewer. Problem is the BLM values. The two values in the CSV file are "Interleaved BLM" and "BLM Cell Number". I have no idea how to calculate front and rear BLM. Any ideas? The other interesting item I see is "Status Flags". It clearly shows open loop vs. closed, but I'm sure it's showing something else.
Here's a screen shot in my gallery of what it looks like. http://www.v-twinforum.com/gallery/d...aViewerLog.jpg
|
Well, I answered my own question...
So I worked with the developer of the MegaLogViewer program and he was easily able figure out how to pull the TCFI's downloaded log files in without me having to mess with them. He included TCFI capabilty with his latest release as well as SERT logs (download
here). This is free to download, but it is shareware so there is a nag screen. But, if you find it useful throw the guy $20. I have no affiliation, just a happy user of the software.
Anyway, to get BLM values you have to add a custom field (Under the Calculated Field Menu).
Code:
Field Name: Front BLM
Formula: [Status Flags]&4?[Interleaved BLM]:[Interleaved BLM-1]
Field Name: Rear BLM
Formula: [Status Flags]&4?[Interleaved BLM-1]:[Interleaved BLM]
For anyone that really wants to know; Basically the 4th bit (in binary) of the Status Flag field indicates if the the Interleaved BLM value is for the front or for the rear. You should just be able to cut and paste the code above...
So, I'm happy now. No more looking at just two lines in the TCFI log viewer. I can easily see 12 data points at any given time. Just much easier to track down what I'm looking at.
Here's
a link to another screen shot in my gallery. (And yes, I know my BLM's are off...I just put new exhaust and A/C on last night!)