| View previous topic :: View next topic |
| Author |
Message |
alpo
Joined: 13 Nov 2011 Posts: 3 Location: UNITED STATES
|
Posted: Tue Mar 27, 2012 4:52 am Post subject: Simulate RPM for video |
|
|
I do not have an RPM sensor for my DL1. Only recording GPS and Accelrometer data. When I combine 3rd party video with data the and export vdeo I get speed and acceleration displays but no RPM. This makes sense as there is no way the software can guess gear and rpm even though I have input gear and rear diff ratios. But it sure would be nice to see the tach at least display something even if simulated. Is there a way to do this or to edit the data and add an RPM stream? _________________ Regards,
Alan |
|
| Back to top |
|
 |
Support
Joined: 31 Oct 2005 Posts: 1339
|
Posted: Tue Mar 27, 2012 9:14 am Post subject: |
|
|
you can mock up something by using a user defined equation in the RPM variable based on speed - I've done this before and got it quite close, but it was a bit of work!
Kind regards,
Support _________________ ---------------------------------------------
Posted by the Race Technology support team |
|
| Back to top |
|
 |
alpo
Joined: 13 Nov 2011 Posts: 3 Location: UNITED STATES
|
Posted: Tue Mar 27, 2012 11:55 am Post subject: Another Way |
|
|
I created a modified dashboard layout that had no tachometer. _________________ Regards,
Alan |
|
| Back to top |
|
 |
alpo
Joined: 13 Nov 2011 Posts: 3 Location: UNITED STATES
|
Posted: Thu Mar 29, 2012 11:35 am Post subject: If statement syntax? |
|
|
So, I replaced the rpm with a formula. Since I autocross and rarely get out of second gear I determined 2nd gear rpm = speed in mph * 67.7. So I put this formula VAR_0015 * 67.7 in the custom area for rpm. That's all good.
But what I really want is to also display 1st gear rpm correctly. I only use 1st gear during the first 20 secs or so of the run so I thought I could do an if statement like this psuedocode:
if speed < 40mph AND time < 20s then VAR_0015 * 111.8 else VAR_0015 * 67.7
However try as I might I get a syntax error. Can you give me a working example of an if formula? _________________ Regards,
Alan |
|
| Back to top |
|
 |
Support
Joined: 31 Oct 2005 Posts: 1339
|
Posted: Thu Mar 29, 2012 11:59 am Post subject: |
|
|
if(VAR_xxxx<40 AND VAR_xxxx<20, VAR_0015 * 111.8,VAR_0015 * 67.7) _________________ ---------------------------------------------
Posted by the Race Technology support team |
|
| Back to top |
|
 |
|