Okay, I went back to
my fuel economy data for the field and compared it to Der Bayer's fuel allowance for Race 1 (i.e. expected amount of fuel consumed in 30 minutes plus three kilos). I want to emphasize, as I said before, that the total fuel consumption varies by track (Nurburgring Nordschliefe is a fuel hog, for example), but for back-of-the-envelope calculations, this should be good within ~30%:
- Code:
Race Fuel Consumption [in kg] = (Time of Race [in hr])
* (Engine Economy @ Max Power RPMs [in g/kWh])
* (Engine Power @ Max Power RPMs [in kW])
* 1 kg/1000 g
* 0.52
Among the entrants to the BRC 1955 at the Automation Test Track, actual values for the 0.52 secret-sauce ratio ranged from 0.436 to 0.614; I went with the median (the mean is 0.519). If you want to be a statistician, the standard deviation in my data was 0.0434, or about 0.0835 times the mean, but I am not a statistician.
You can eyeball the numbers from the in-game graphs (as I said, back-of-the-envelope), but if you're like me and want ALL THE SIG FIGS you can read off the exact numbers for engine economy and power from the Results/Curves section of the engine variant .lua file - here's an example from an engine in my hard drive at the moment:
- Code:
Results={
AdjustedAFR=12.75,
AverageCruiseEcon=453.43594397352001,
BaseEcon=338.99330784286002,
BaseTorque=293.31209796106998,
BaseVE=0.93100000000000005,
CoolingRequired=88.864391049931996,
Curves={
[...]
{
6500,
199.28471402951001,
135.65301510020001, -- <-- this is the power in kW
523.85505501344005, -- <-- this is the economy in g/kWh
23.536122865397001,
RPM=6500
} --[[table: 0x0f26e668]],
[...]
PeakPower=135.65301510020001,
PeakPowerRPM=6500,
[...]
(I include the PeakPower and PeakPowerRPM lines because that's where I looked to find which table from Curves to look at to find the numbers.)
I expect this engine would, in a thirty-minute BROBOT race at the Automation Test Track, burn approximately 18.5 kg of fuel.