Function predict_tire_life
Source pub fn predict_tire_life(params_json: String) -> Result<String>
Expand description
Predict tire life
§Arguments
params_json - JSON string with tire life parameters
§Example
const result = predictTireLife(JSON.stringify({
compound: "C3",
age_laps: 15,
track_temp: 32.0,
track_severity: 1.2
}));