-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath_channels.json
More file actions
32 lines (32 loc) · 1.1 KB
/
Copy pathmath_channels.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"SlipRatio_FL": {
"group": "Tyres",
"expression": "((wheelRPS_FL * tyreRadius_FL) - speed) / np.maximum(speed, 0.1)",
"color": "#FF5555",
"description": "Front Left Wheel Slip Ratio"
},
"SlipRatio_FR": {
"group": "Tyres",
"expression": "((wheelRPS_FR * tyreRadius_FR) - speed) / np.maximum(speed, 0.1)",
"color": "#FFaa55",
"description": "Front Right Wheel Slip Ratio"
},
"AeroBalance": {
"group": "Suspension",
"expression": "(suspHeight_FL + suspHeight_FR) / np.maximum((suspHeight_FL + suspHeight_FR + suspHeight_RL + suspHeight_RR), 0.001)",
"color": "#55FF55",
"description": "Front Aerodynamic Balance %"
},
"G_Total": {
"group": "Chassis",
"expression": "np.sqrt(sway**2 + surge**2 + heave**2)",
"color": "#5555FF",
"description": "Combined G-Force Vector"
},
"SteeringDelta": {
"group": "Driver",
"expression": "np.gradient(wheel_steer_angle)",
"color": "#FF55FF",
"description": "Steering Angular Velocity Delta"
}
}