So, I'm still having troubles with the lateral tire forces. The fronts won't go over zero. I think I'm measuring the longitudinal (RWD car). The offset I'm using:
1024 for header
192 for each timestep
64 for the car related logged data
32 for each wheel
12 to get to the lateral (righthand) tire force.
I've been staring at this for too long now
Any help is greatly appreciated!
status=fseek(fid,1024+192*(ii-1)+64+12,-1);
latF.LF(ii)=fread(fid,1,'float');
status=fseek(fid,1024+192*(ii-1)+64+32+12,-1);
latF.RF(ii)=fread(fid,1,'float');
status=fseek(fid,1024+192*(ii-1)+64+32+32+12,-1);
latF.LR(ii)=fread(fid,1,'float');
status=fseek(fid,1024+192*(ii-1)+64+32+32+32+12,-1);
latF.RR(ii)=fread(fid,1,'float');