need a CCM and a CSR (02A VR6) setting
how to calculate this? is it simple gear * final drive?
and with a 5 gear box, just enter the 5th also into the 6th?
Code: http://code.google.com/p/multidisplay/s ... Dialog.cpp
CCM Gear Data can be found here: http://www.doppel-wobber.de/forum/Infor ... riebe.html
that should then be:
Code: Select all
if ( text == "02A CCM" ) {
//Golf 3 CCM (VR6)
gear_ratio[0] = 11.1837;
gear_ratio[1] = 6.588216;
gear_ratio[2] = 4.432812;
gear_ratio[3] = 3.504226;
gear_ratio[4] = 2.839982;
gear_ratio[5] = 2.839982;
}
if ( text == "02A CSR" ) {
//Golf 3 CSR (VR6 Syncro)
gear_ratio[0] = 12.2525;
gear_ratio[1] = 6.99998;
gear_ratio[2] = 4.97874;
gear_ratio[3] = 3.50844;
gear_ratio[4] = 2.84934;
gear_ratio[5] = 2.84934;
}