π¦ ClawHub
simulation-metrics
by @wu-uk
Use this skill when calculating control system performance metrics such as rise time, overshoot percentage, steady-state error, or settling time for evaluati...
π‘ Examples
times = [row['time'] for row in results]
values = [row['value'] for row in results]
target = 30.0print(f"Rise time: {rise_time(times, values, target)}")
print(f"Overshoot: {overshoot_percent(values, target)}%")
print(f"SS Error: {steady_state_error(values, target)}")
TERMINAL
clawhub install adaptive-cruise-control-simulation-metrics