Silly question, but is it possible to show dynamic weight distribution?
I’d like to see what weight transfer is happening and what happens when changes are made to the setup.
Does anyone know how I can share a track map with sections I made on my own (in Motec) ?
Hi! I don't have any information on the engine temperature. Is this how it should be?
Can be a particular channel must be turned on?Some/all DLC blocks some telemetry, including those.
Can be a particular channel must be turned on?
[PLUGIN]
AerodynamicSensor=1
EngineSensor=1
SuspensionSensor=1
TireForceSensor=1
TireTemperatureSensor=1
I'm not sure I understand, but let me illustrate. A car's physics (.hdv) file has these optional entries:
Code:[PLUGIN] AerodynamicSensor=1 EngineSensor=1 SuspensionSensor=1 TireForceSensor=1 TireTemperatureSensor=1
If any of those are missing, or have =0 instead, then much of the data relating to that area (aero, engine, suspension, ...) will not be provided.
The plugin doesn't change what it's doing from car to car; if you get certain channels working in one car but not another, then it's because of the car.
this is amazing, thank you very much Lazza for this awesome plugin!
Since the new UI doesn't have the controls/devices anymore, i couldn't find where to configure the marker bind... Is there a way to do this or a default on the keyboard?
I'm trying to figure out a way to determine inner/center/outer tire wear.
does anyone know a safe way to determine those? currently i'm multiplying tire wear and the mean of the temperature for the inner/center/outer of the tire, something like this:
stat_max('Tyre Wear FL' [%]) * stat_mean('Tyre Temp FL Inner' [C])
then dividing that my that average of the three readings to reach a value from 0% - 100%, like this:
(stat_max('Tyre Wear FL' [%]) * stat_mean('Tyre Temp FL Inner' [C])) /
((stat_mean('Tyre Temp FL Inner' [C]) + stat_mean('Tyre Temp FL Centre' [C]) + stat_mean('Tyre Temp FL Outer' [C])) / 3)
would you say this is a safe (or even "not stupid") way to calculate this?
It doesn't show what each of the plugin controls are in the list, but if you click on them to assign them (starting at #1), it'll say what they are when it asks you to press them. So try that![]()
Well, bearing in mind there's no correct way to do it, I think your approach is fine. I think when I played around with it at one stage I instead calculated a factor for each of I,M,O by making it a little exponential based on an 'optimum' temperature and played around with the exponent until it just sort of felt right, but I couldn't say it would be any better or worse. So as a basic thing, power (current temp / optimum temp, exponent) where exponent might be something like 1.4. Then scale those 3 values to the overall wear. But I didn't really do any testing to gauge how well that might work, so just have a play and see how you go![]()