Skip to content

Pace active-control deltas to the battery firmware's ramp (#458)#467

Merged
tomquist merged 3 commits into
developfrom
claude/serene-ptolemy-kpd6ig
Jun 12, 2026
Merged

Pace active-control deltas to the battery firmware's ramp (#458)#467
tomquist merged 3 commits into
developfrom
claude/serene-ptolemy-kpd6ig

Conversation

@tomquist

@tomquist tomquist commented Jun 12, 2026

Copy link
Copy Markdown
Owner

Summary

Closes #458 (and documents the conclusion of #459). Builds on the evaluation harness from #466the steering-eval CI comment on this PR shows the real before/after (base = develop without pacing, head = with pacing), which is why we landed the harness first.

The problem (#458)

The balancer assumed a deadbeat battery — it sent each battery a target delta and expected it applied in one poll. But the real Venus firmware runs its own gain-scheduled accelerating ramp (≈50 W → ≈400 W per poll) on the reading we send, bounded only by |reading|. So a large delta plus one poll of meter latency let that accelerated ramp overshoot by hundreds of watts and oscillate. The balancer's deadband (15 W) also sat below the battery's own ±20 W input deadband, so it chased corrections the battery ignored.

The change

  • Ramp pacing. Auto-path readings are now capped per consumer: the cap starts at the firmware's ~50 W first ramp step, doubles toward 200 W only while the battery's reported output demonstrably tracks the command (moved ≥20 W toward it since the last poll), follows the error back down, and resets on direction reversal. Probe, MIN_DC_OUTPUT-floor, manual and steer-to-zero paths bypass pacing. New knobs PACE_BASE_STEP / PACE_MAX_STEP (0 disables).
  • BALANCE_DEADBAND default 15 → 25 W, above the battery's own ±20 W input deadband.
  • Preserves Venus E stops the charging process when Venus D is feeding excess power into the grid. #376. Because the per-poll delta is now capped, the instructed net power can keep the sign of a battery's involuntary output (PV passthrough at full SoC) for many polls. The balancer now records the unpaced control intent (last_intent), and the cross-talk chrg/dchrg attribution filters by it instead of the paced instructed power.

Why these defaults

Chosen with the evaluation suite under realistic 1 s meter latency. Versus the unpaced baseline across the scenario matrix:

overshoot (summed max) battery churn steady RMS settling
Δ −80% (13.7 kW → 2.0 kW) −33% −25% ~8% slower

Growing the cap to the firmware's full 400 W gain measurably overshoots under meter latency, so 200 W wins.

Also lands #459 (comment-only, no behavior change)

Since the redesign keeps per-battery targeting, active control must keep reporting *_chrg_nb = 1 (a real count N would make each battery divide its already-individual target by N). The chrg_nb branches (Python + C++) and docs/ct002-ct003-protocol.md now explain why, so the #455 relay-count fix isn't accidentally generalized. #459 is closed as won't-fix.

Scope

  • src/astrameter/ct002/balancer.py, ct002.py, main.py, web_config.py + config docs (config.ini.example, README.md, esphome.example.yaml).
  • C++ parity: esphome/components/ct002/{balancer.h,balancer.cpp,ct002.cpp,__init__.py,test_hooks.cpp} mirror the pacing, the last_intent observable, and the config plumbing.
  • Tests: new TestPaceReading unit tests + host gtests, the parity fuzz harness exercises the new knobs and the intent observable, a paced-vs-unpaced overshoot regression in tests/test_steering_eval.py, and the Venus E stops the charging process when Venus D is feeding excess power into the grid. #376 e2e now asserts the intent on both backends.

Known limitation (not introduced here)

The mixed_venus_b2500/eff scenario stays rough in every variant (probe/rotation churn with a DC-only unit) — pacing neither helps nor hurts it. Worth its own follow-up.

🤖 Generated with Claude Code

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8


Generated by Claude Code

Summary by CodeRabbit

Release Notes

  • New Features

    • Added ramp-pacing for battery control commands with new configurable parameters PACE_BASE_STEP (default 50W) and PACE_MAX_STEP (default 200W); pacing can be disabled by setting PACE_BASE_STEP = 0.
  • Configuration

    • BALANCE_DEADBAND default increased from 15W to 25W.
  • Documentation

    • Updated all configuration files and documentation to reflect new pacing parameters and balance deadband defaults.

@coderabbitai

coderabbitai Bot commented Jun 12, 2026

Copy link
Copy Markdown

Review Change Stack

Walkthrough

This PR implements ramp-paced battery command control and unpaced intent tracking to reduce overshoot and improve convergence when working with the battery firmware's own ±20 W deadband and accelerating control loop. It raises balance_deadband to 25 W, introduces pace_base_step/pace_max_step pacing parameters, separates intended control intent from paced targets, and filters active-control cross-talk using intent-vs-instructed sign conflicts.

Changes

Ramp Pacing Control System

Layer / File(s) Summary
Documentation and configuration updates
CHANGELOG.md, README.md, config.ini.example, esphome.example.yaml, docs/ct002-ct003-protocol.md
Changelog, README, config examples, and protocol docs are updated to explain the new pacing parameters (PACE_BASE_STEP, PACE_MAX_STEP defaults), raised balance_deadband (15 → 25 W), and active-control per-phase battery count reporting behavior.
Pacing constants and balancer configuration schema
esphome/components/ct002/balancer.h, src/astrameter/ct002/balancer.py, esphome/components/ct002/__init__.py, src/astrameter/web_config.py
New module constants (PACE_TRACKING_DELTA_W, PACE_GROWTH_FACTOR) and BalancerConfig fields (pace_base_step, pace_max_step) are introduced in C++ and Python. ESPHome schema wiring and web configuration keys recognize and type these fields.
Pacing and intent state tracking structures
esphome/components/ct002/balancer.h, src/astrameter/ct002/balancer.py
BalancerConsumerState is extended with last_intent (pre-pacing control target) and pacing state (pace_cap, pace_sign, pace_prev_reported) to track per-consumer tracking dynamics across polls. Public get_last_intent() accessor and protected pace_reading_() helper are declared.
Pacing algorithm implementation
esphome/components/ct002/balancer.cpp, src/astrameter/ct002/balancer.py
Core pace_reading_() logic ramps per-poll command deltas: caps at pace_base_step initially, grows cap up to pace_max_step while battery tracks, passes through when error fits, and resets on direction reversal. Config clamping also validates pacing bounds.
Intent tracking across all control paths
esphome/components/ct002/balancer.cpp, src/astrameter/ct002/balancer.py
Probe-target, manual-override, min-dc-floor, and steer-to-zero control paths now record last_intent separately from paced last_target in both C++ and Python.
Auto-target pacing in fading and residual branches
esphome/components/ct002/balancer.cpp, src/astrameter/ct002/balancer.py
Auto-target fading and residual paths compute desired intent, pass it through pace_reading_() to produce paced target, and store both values in consumer state.
Active control intent-based cross-talk filtering
esphome/components/ct002/ct002.cpp, src/astrameter/ct002/ct002.py
collect_reports_by_phase_() now zeroes instructed power when last_intent sign conflicts with computed power sign, preventing involuntary-output reversals from being counted in active-control aggregation. Clarifying comments explain per-phase battery count reporting.
Configuration reading and initialization wiring
esphome/components/ct002/__init__.py, src/astrameter/ct002/ct002.py, src/astrameter/main.py
Pace parameters are wired from ESPHome to_code() through Python CT002.init() and LoadBalancerConfig, with main.py reading from config and web_config.py providing schema typing.
Test harness and parity infrastructure
esphome/components/ct002/test_hooks.cpp, tests/components/ct002/fixtures/balancer_parity_harness.cpp, tests/components/ct002/test_balancer_parity.py, tests/_ct002_e2e_backend.py
Parity harness supports optional pace_base/pace_max in cfg command and new intent command to query last_intent. Dump format includes last_intent per consumer. Fuzz generator randomly varies pacing content to validate host/firmware consistency.
Pacing-specific validation tests
tests/components/ct002/host_balancer_test.cpp, tests/test_balancer.py
New C++ LoadBalancer test (PaceReadingCapsGrowsAndResets) and Python TestPaceReading class comprehensively verify cap growth/reset, direction reversals, disabling when base_step=0, max_step clamping, small error passthrough, and that manual/inactive paths bypass pacing.
Existing test adjustments for pacing isolation
tests/components/ct002/test.esp32-idf.yaml, tests/test_balancer_distribution_weight.py, tests/test_balancer_mixed_battery_charging.py, tests/test_ct002_active_control.py
Existing tests disable pacing (pace_base_step=0) to isolate raw share math and floor behavior. CT002 active-control tests use _ct002() factory helper to consistently apply pacing=0.
E2E and regression testing with pacing enabled
tests/test_efficiency_e2e.py, tests/test_issue376_pv_passthrough.py, tests/test_steering_eval.py
Efficiency e2e relaxes specific-battery assertions to pool-level validation. Issue376 test uses last_intent for Venus D assertions and ESPHome aggregation filtering. New TestRampPacingRegression validates overshoot bounds comparing paced vs unpaced firmware plant runs.

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

Possibly related PRs

  • tomquist/AstraMeter#406: Extends CT002 differential-parity testing framework (balancer_parity_harness.cpp/test_balancer_parity.py) to support the new intent field and pacing parameters.
  • tomquist/AstraMeter#384: Changes CT002 cross-talk aggregation to use per-consumer instructed/net intent; this PR adds an additional sign-conflict filter on top of that basis.
  • tomquist/AstraMeter#455: Modifies CT002 active-control aggregation and per-phase battery count reporting; this PR refines the sign-based filtering and clarifies the count-reporting intent (issue #459).
🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 47.83% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically describes the main change: implementing ramp pacing for active-control deltas aligned to the battery firmware's behavior (#458).
Linked Issues check ✅ Passed All objectives from #458 are met: deadband increased to 25W (≥20W), per-consumer per-poll pacing introduced (50-200W ramp matching battery), last_intent tracking preserves prior behavior, config exposed, Python/C++ parity maintained, and tests validate reduced overshoot/oscillation.
Out of Scope Changes check ✅ Passed All changes are directly tied to #458/#459: ramp pacing implementation, deadband tuning, intent tracking for attribution, config/web plumbing, parity harness updates, and regression tests validating overshoot behavior.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch claude/serene-ptolemy-kpd6ig

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions

github-actions Bot commented Jun 12, 2026

Copy link
Copy Markdown
Contributor

Steering evaluation (base vs head)

Lower is better for every metric. See src/astrameter/simulator/evaluation.py for definitions.

What do these metrics mean?
Metric Meaning
settle_mean_s Mean seconds after a load/PV step for grid power to return inside the ±25 W settle band and hold for 10 s (reaction speed).
settle_p95_s 95th-percentile settle time — the slow tail of reactions.
unsettled_events Number of disturbance events that never settled within the 10-minute measurement window.
overshoot_mean_w Mean overshoot (W): how far grid power swings past zero to the opposite sign after an event.
overshoot_max_w Worst-case overshoot (W) across all events.
band_crossings_per_h Sign flips per hour across the ±20 W hysteresis band — oscillation / hunting.
steady_rms_w RMS grid power (W) during steady state (excluding the 120 s after each event) — residual jitter when nothing is changing.
mean_abs_grid_w Mean absolute grid power (W) over the whole run — overall tracking accuracy.
avoidable_import_wh Energy imported from the grid (Wh) the battery could have supplied (it had charge and discharge headroom) — missed self-consumption.
avoidable_export_wh Energy exported to the grid (Wh) an AC-chargeable battery could have absorbed (it had room and charge headroom) — missed charging.
battery_travel_w_per_h Total absolute change in battery setpoints per hour (W/h) — control effort / actuator wear; lower is smoother.
mixed_cadence/eff — settle 105.7→88.8s, overshoot 1949.5→872.7W, RMS 111.7→39.6W
Metric Base Head Δ
settle_mean_s 105.7 88.8 -16%
settle_p95_s 241.7 178.9 -26%
unsettled_events 1 1 =
overshoot_mean_w 766.7 323.5 -58%
overshoot_max_w 1949.5 872.7 -55%
band_crossings_per_h 446.0 302.0 -32%
steady_rms_w 111.7 39.6 -65%
mean_abs_grid_w 100.0 69.6 -30%
avoidable_import_wh 75.2 51.7 -31%
avoidable_export_wh 25.1 18.1 -28%
battery_travel_w_per_h 180519.0 80294.0 -56%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 60
    y-axis "W"
    line [300, 262.1, 215.4, 286.2, 285.3, 246.2, 215.3, 198.5, 151.5, 127.2, 103.3, 47.4, 23.8, 0, -24.4, -26, -23.1, -12.3, -1.7, 3.3, 0, -6.7, -21.4, -10.5, -19.6, -6.3, 7.6, 16.1, 28, 22.2, 19.1, 1.5, -2.8, 6.2, 11.8, 10.2, 16.4, 4.8, -0.8, -14.8, -9.6, -1.7, 21.9, 16.1, 21.1, 13.1, -4.1, -2.6, 2.2, 11.5, 12.6, 1.8, 1.2, 4.1, 3.9, 3, -4.3, -0.3, -1.9, -4.6, 2, 4.1, 2.7, -2.7, 2.3, 5.1, 6.9, 3.6, -3.7, 1.6, -17.9, -16.6, -16.5, 5, 10.5, 26.3, 16, 7.2, -11.2, -24.3, -19.5, -8.5, 11.2, 9.4, 16.3, 12, 8.7, 0.8, -0.7, -1.3, -7, -7.3, -1.6, 3.8, 16.7, 18.5, 8.4, 10.1, 5.5, -5.6, -8, -2.1, 6.5, 7.1, 3.9, 10, 9.2, 9, 10, 8, -4, -4.9, -1.2, -4.4, -4.7, -1.6, -4.7, 1.8, 9.5, 3, -0.5, -3.9, -1.2, -1.3, -1.2, 2, 1.5, 3.6, 8.3, 13.3, 8.7, 13.2, -9.4, -15.7, -28, -14.1, 11.1, 18.6, 21.8, 13.7, 13.1, 12.3, 5.9, -4.3, -5.3, -6.8, -1.1, 6.5, 9.1, 11.5, 13.8, 7.8, -3.4, -2, -0.5, 1, 11.3, 3.2, 1.5, -4.4, -5.1, -4.8, -0.7, 0.7, 1.1, 5.5, 6, 4.7, 4.7, -4.4, -11.3, -5.8, -3.8, -1.5, -2.2, 2.7, 8.6, 16.2, 7, -2.4, 3.6, 7.2, 11.4, 10.3, 4.5, 3.1, 3.5, -2.8, 2.1, 0.4, 1, 1.1, 4.3, 0.4, 4.5, 2.5, -1.9, 2.5, -0.9, -2, 5.1, 6.1, 2.4, -3, -3.5, -7.4, 3.6, 2.3, 3.9, 1.9, 4.6, -5.8, 4.5, 8, 11.9, 3.1, -0.8, -0.9, 5, 2.4, 5.8, 5.3, 5.3, 11.5, 10.5, 11.5, -1.9, -6.9, 10.7, 9.8, 9.1, 13.7, 7.1, 8.7, 9.8, 7, -1.8, 1.3, 0.3, 5.2, -3.8, 3.8, 5.7, -1.2, -0.2, -3.9, -5.5, -3.1, -1.2, 5.1, 5, 9.6, 1.5, -5.3, 1.3, -7.5, -8.1, 1, 0.9, 1.2, -1.6, 2.8, 2.7, -0.4, 4.2, 6.3, 4.6, 8.3, 7.8, 0.9, -2.3, 6.1, 0.2, -0.5, 7, 7.9, -4.8, -3.4, -11.6, -11.8, 1.2, 13.4, 12.6, 16.6, 9.3, -3.2, -4.4, 12, 6.4, 10.8, 12.3, 9.8, 1.1, -1.8, -1.3, -5.5, 1, 1.8, 7.7, 1.3, 8.8, 11.5, 10.7, 9.4, 10.1, 5.2, -3.7, 5.6, 1.5, 1605.7, 2009, 1981, 1565.5, 815.9, 30.4, 201.4, 146.6, 125.9, 128, 96.8, 76, 48.7, 25, 58.7, 111.6, 81.1, 51, 12.6, 139.8, 102.6, 76.9, 33.8, -1.1, 35.4, 117.7, 116.8, 119.4, 119.4, 75.5, 58.5, 46.1, 17.3, 73, 75.2, 77.6, 58.1, 26.1, -21.3, 38.6, 17.6, 16.8, 18.6, -1.4, 9.8, 1.5, 4.4, 9.9, 9, -7.2, 25.2, 8.6, -6.6, 0.3, 3.5, 3.8, 7.6, 0.6, 8.9, 14.1, -11.1, -1.1, 14.2, -0.6, 6.3, -0.5, 7.7, 5.1, 8.7, 5.2, 3, 8.6, 2.3, 11.8, 1.4, 8.3, 8.3, 7.7, 10.5, 5.4, 8.2, 9.2, 3.8, 8.1, 9.6, 7.7, 11.6, 6.3, 8.3, 8.2, -1776.5, -1060.6, -195.4, 617.9, 1067, 519.1, -274.6, -1034.1, -1210.7, -455.3, -239.3, -826.4, -840.8, -843.2, -841.7, -843.2, -332.3, 12.2, 716.3, 856.5, 853, 858.2, 852.9, 847.9, 813.2, 799.4, 784.5, 789, 787.2, 733.7, 619.7, 547.4, 202.7, -8.4, -212.8, -369.5, -266, 5.3, 283.2, 404.7, 363.7, 334.5, 315.9, 262.6, 229.8, 204.9, 24.6, -72.5, -177.8, -25.3, 75, 189.6, 144.5, -23, -123, -61, -1.2, 64, 29.2, -18.1, 43.2, 8.5, 24.1, -2.4, 1.1, 24.8, -33.4, 13.1, -13.8, 45.2, 41.6, 57, 10.5, 145.2, 12.7, 341.4, 195.5, -228.8, 341.6, 209.6, -126.8, 244.9, -29.7, 99.5, -13.4, 297.5, -223, 121.8, 489.7, 252, -115.5, 118.5, 26.6, 187.3, 61.7, 280.5, 105.9, -18.9, 13.2, 62, -29, 223.2, -72.3, 178.5, 469.8, 272.2, -313.3, -515.5, 151.2, 441.1, 1200.4, 1508.9, 746.3, -40.8, -607.7, -22.8, 670.1, 1021.1, 297.8, -8.7, 490.4, 285.7, 207.5, 186.6, 164.7, 126.3, 87.2, 51.1, -36.6, -81.6, -118.3, -77.2, -49.1, -8.1, 31.4, 58.7, 48.1, 23.8, -0.4, 0.7, -5.8, -1, 6.1, 10.3, 8.5, -3.9, -2.3, 365, 1489.3, 1491.6, 1066.3, 451.9, 339.4, 99.3, 66.1, 73.7, 66.9, 46.5, 25.2, 13.2, 68.4, 67, 70.3, 56.5, 30.2, -2.5, 67.6, 63.8, 69.5, 67.7, 22.1, -6.3, 46.6, 78.8, 33.4, 56.2, 67.6, 66.2, 63.3, 30.9, 6.5, -6.3, 10, 14.1, -1, 0.1, 9, 14.4, 19.2, 12.5, -9.5, -0.6, 11.7, 12.9, -1.6, -2.4, 11.3, 15.1, 2.2, -12.6, -0.4, 1.2, 6.5, 12.3, 4.1, 5.7, 3.4, 8.4, 7.2, 6.9, 8, 3.8, 5.9, 3.9, 9.1, 4.1, 13.5, 12.3, 9.1, 14, 9.8, 8.2, 6.1, 3.5, 4.8, 11.5, 7, 9.9, 9.7, 9.5, 9.1, -4.2, -1.6, 0.9, 11.7, 5.6, 10.2, 13.6, 10.9, -10.8, 13.8, 9.7, 21.3, 10.3, 1.3, 5, 5.5, 2, 0.1, 4.8, 5.7, 7.5, 3.4, 10.3, 8.3, 6.3, 9.3, 7.8, 10.6, 9.5, 3.2, 4.7, 7.1, 3.1, 4.6, -593.2, -1409.5, -618.3, 194.5, 855.4, 1556.1, 1233.4, 454.7, -437.2, -1124.5, -762.5, 59.4, 310.4, -358.8, -705.9, -504.4, -594.2, -597.3, -98.3, 254, 611.7, 610.8, 609, 611.7, 584.4, 564.8, 509.6, 478.8, 447.4, 298.8, 58.5, -79.3, -302.5, -315.1, -277.3, -61.7, 91.3, 278.3, 244.1, 217.2, 181.3, 153.3, 118.2, -21.6, -122.3, -165.6, -3.7, 85.1, 168.6, 166.1, 166.2, 170.1, 131.8, 108.9, 63.8, 38.8, 17.3, -33.5, -41, -51.2, -30.3, -3.1, 23.1, -4.4, -19.1, -26.7, -8.6, -3, 21.6, 13.3, 6.3, 4.8, -0.8, 3.6, 9.4, 2.9, 8, 5.8, 5.7, -0.2, -12.1, -6.3, 10.8, 19.7, 21.2, 25.5, 16, 10.6, -0.3, 890.1, 1491, 1398.8, 768.6, 139.2, 76.1, 80.6, 79.8, 42.6, 17.8, 72.4, 113.4, 85.9, 52.6, 27.2, 11.8, -0.5, 59.2, 64.7, 65.7, 49.1, 32.9, 13.2, 1.5, -25.3, 41.2, 49.8, 18.2, 4.2, 5.8, 17.3, 17.8, 15.9, 13.6, 14, 7.3, 7.5, 6.4, 14.9, 13.2, 15.5, 6, -0.3, -1.6, -3.6, 3.1, 10.3, 3.3, 2.5, 2.1, -4.8, 3.4, 10.3, 9.4, 3.9, 9.6, 5.1, 13.1, 5.5, 9, 3.6, -10.3, 0.5, 5.5, 2.1, 11.1, 5.3, 4.7, 5.2, 5.3, 4.7, 4.5, 5.8, 9, 2.8, 6, 7.7, 9.2, 10.7, 8.2, 6.8, 9.3, 2.3, 3.1, 4.9, -1.4, 3.5, 3.6, 5, 11.2, 6.2, 4.3, 7.1, 7.8, 9.2, 5, 7.9, 4.5, 9, 8, 8.2, 7.5, 2.6, 5.7, -0.1, -2.8, 0.1, 11, 8.7, 11.8, 12.5, 10.9, 14.1, -1152.1, -770.3, -19.3, 1075.9, 1571.3, 1459.5, 803.9, 558.2, 1140.3, 887.1, 819.9, 793.9, 763.3, 711.6, 616, 521.9, 237, 166, 138.3, 101.8, 72.2, 46.3, 17.6, -19.1, -50.5, -47.4, -41.5, 13.2, 3.3, 7.7, 4.5, 0.8, 7.7, 3.2, 4.2, 7.7, 1.7, 4.9, 6.9, 9.6, 6.2, 1, -8.5, -15.3, -4, 4.6, 10.7, -4.4, -8.9, -17.1, -13.1, -3.5, 4.6, 19, 15.4, 17.1, 9.1, 8.8, -12.9, -8.1, 3.8, 12.9, 17.4, 6.6, -8.7, -20.8, -18.8, 2.8, 18.7, 28.3, 24.2, 23.9, -1.3, -14.5, -31.9, -2.3, 14.3, 31, 34, 33.4, 18.8, 2.1, -8.9, -20.1, -9.8, -8.7, 6.4, 10.4, 8.8, -3.3, 7.7, 11.1, 13, 16.2, 19.1, 7.5, -1.7, -2.1, -7.7, -3.5, -1.1, 0.6, -145.3, -142, -207.3, -264.8, -200, 469.5, 533.1, 15.4, 68.2, 409, 87.1, -6.5, -1.6, 3.6, 5, -3.9, 1.2, 18.6, 7.3, 57.6, 20.9, 275.8, -86.7, 331.1, 177.7, 39.7, -13.6, 43.3, -10.4, -14.8, 133.7, 36.9, 22.7, -12.5, 67.6, -0.1, 6.7, -5.4, 8.2, -8.2, -7.8, 21.7, 8.8, 88.1, 26.1, 15.2, 63.1, 31.4, 0.5, -5.5, 34.4, 59.8, -18.2, 2.3, -8.5, 38.7, -0.8, 12.6, -10.8, 70.9, 4.3, 3.6, 21.9, 26.8, 80.8, 119.8, 122.5, 148.9, 192.9, -72.7, 292.4, -45.4, 10.5, -1.9, 0.5, 2.7, 5, -1.7, 9.3, -14.1, 99.1, 38.7, 136.6, -64.8, 22, 7.2, 8.8, 7.8, 1.3, 2.4, -8.5, 104.1, -26, 12.3, -1, 5.2, -10.6, 23.7, 37, 93.6, -0.8, -4.1, 98, -36.9, 231.4, 90.5, 0.7, 456.4, 38.7, 43.7, 75.2, -151.2, 26.6, 4.8, -24.2, -24.4, 107.5, 10, -1.7, 5.6, 6.1, -1.9, -18.9, 108.6, -5, 120.1, -30.9, 9.2, 9.2, 8.6, 30.5, -40.5, 5.7, 9, -24.7, 101.9, -18.1, 178.2, 16.2, 150.3, 5.5, -3, 10, 91.8, 19.8, 33.7, 8.5, -14.8, 122.8, 19.9, 38.7, 9, 110.9, 4.9, 67.2, -12.3, 46.1, 39.7, 29.6, -35.2, 12.5, -3, -4.3, 108.7, 35.8, 118.3, 70.5, 198, -13.9, 118.3, -29.2, 116.5, -5.6, 30.9, 17.6, 30.1, -59.8, -1.7, -0.3, 16.6, 7.9, -21.5, 71.1, -22, 74.1, 0.6, -8.1, 19.4, 4.2, 14.5, -14.8, 65.2, 33.7, 42.2, 13.5, 12.3, 10.1, 13.8, -18.4, 12.3, 55.4, 12.1, 51.5, -3.9, 106.6, 48.1, 160.4, -98.6, 4, 1.6, -37.1, -1.8, -25.2, 109.4, -4.4, 7.5, 11.4, 84.7, 20.2, 58, 98.3, 85.7, 78.9, 105.7, 2.3, 11.4, 12.2, 9.3, -47.7, 109.2, -7.2, 12, -35.1, 25.5, 65.4, -32.8, 96.7, 1.5, -6.8, -9.7, -28.4, 107.8, 1.3, -5.2, 4.7, -0.2, 3, -5.7, 3.5, 9, 7.6, 2.5, 6.5, -11.4, 22.6, 24, 44.4, 29.7, 45, 5.1, 2.3, -11.5, 47.1, -33.3, 51.9, -10.4, 76.6, -1.8, 9.1, 11.1, -1, 4.1, 11.9, 45.9, 46.2, -24.3, 148.1, -13.2, 211.6, 145.7, -56.1, 323.5, -133.6, 1530.9, 2216, 2053.7, 1393.5, 677.9, 330, 161.1, 125.6, 126, 119.8, 107.9, 65.1, 34.1, 8.4, -21.3, 100.2, 66, 16.8, -3.5, 88.6, 117.6, 90.1, 57.4, 44.6, 22.1, 32.7, 137.2, 123.2, 67.1, 39.2, 19.7, -20.5, 118, 68.7, 26.3, -1.9, 26.3, 42.4, 45.7, 46.9, 9.9, 57.4, 22.7, 5.2, 5.4, 9.2, 16.7, 14.5, 18.9, 12, 15, 6.7, 8.7, 6.5, 8.1, 7.3, 10.8, 11.1, 9.8, 7.1, 10.3, 6.5, 11.3, 7.8, 9.1, 6.6, 8, 10.4, 6.8, 11.9, 12.5, 5.7, 6.9, 2.7, 6.8, 4.5, 11.6, 8.1, 9.8, 12.8, 5.5, 10.2, 10, 5.1, 6.8, 9.6, 6.6, 7.2, 5.9, 8.1, -658.7, -1738.8, -998.5, -250, 636.7, 1075.9, 1506, 835.2, 54.8, -420.4, 267.9, 751.2, 319.4, -212.3, 467.8, 773.2, 276.9, -335.8, 190.2, 864.8, 759.4, -6.9, -456.6, 165.8, 806.6, 343.3, -322.2, 228.8, 415.8, -95.5, -0.4, 581.9, 195.9, -113.5, 393, 141.8, -12.1, -19.4, 110.2, 2, -2.3, 36, 39.8, 94.5, 28.3, -68.7, 12.2, 6.8, -0.3, -47.5, 121.6, -17.1, 118.2, -17.1, 70.2, -1.4, 28, 52.8, -21, 96.7, -12.4, 3, -6.1, -13.1, 148.9, -47.9, 242.2, 4.8, 91.8, 282, 36.3, 4.5, 6.2, -7.1, 27.3, 54.5, 15.2, 17, 35.5, 57, 12.4, 4.6, 20.7, -4.2, 115.6, 196.5, 247.7, 269.7, 279.6, 273, 222.8, 200.5, 180.9, 118.3, 55.8, 7.2, -38.3, -39.6, -44.1, -49.5, -29.9, 822.2, 1105.8, 925.6, 429.8, 308.4, 153.7, 141.1, 146.8, 145.3, 134, 105.4, 81.8, 32.9, -15.6, 22.4, 23.5, 4.4, 32.5, 15.8, 2.3, 13.8, 16.9, 10.6, 15.9, 12, 20, 12.6, 15.8, 1.1, 3.7, 0.7, 9.9, 5.7, 7.2, 3.4, 6.5, 8.5, 8.9, 7.3, 8.4, 5.1, 7, 7.7, 7.7, 9.2, 9.5, 7, 11.6, 10, 3.9, 6, 7.5, 8.8, 7.9, 10.7, 7.1, 12.7, 10.3, 11.8, 0.3, 2.6, 14, 8.2, 7.8, 8, 13, 5.9, 4.4, 8.7, 10.8, 12.4, 8.2, 6.8, 5.4, 6.4, 9.4, 12.2, 9.9, 1.6, 7.8, 9.3, 7.8, 7.6, 10.5, 11.3, 13.7, 12.9, 8.5, 7, 8.7, -11.7, -0.3, -3.6, 0.5, 10, 10.2, 10.1, 4.8, 11.6, 10.3, 11.7, 8.6, 11.2, 11.1, 14.5, 15.5, 13.9, -10.8, 7.3, 6.9, 4.3, 5.8, 6.5, 9.6, 9.4, 7.2, 5.1, 9, 8.1, 3.8, 6.8, 7.8, 4, 9.6, 5, 6.3, 8.4, 9.6, 5.8, 11.4, 8.5, 12.2, 10.2, 9.6, 6.6, 1.9, 7.5, 11.2, 5.5, 12.8, 7, 4, 10.5, 3.2, 6.7, 4.7, 8.3, 11.5, 8.2, 11.1, 5.6, 6.5, 15.2, 5.9, 7.2, 4.5, 7.5, 10, 12.1, 6.4, 3.9, 13, 5.1, 4, 3.4, 8.3, 12.9, 6.8, 9.6, 9.8, 11.6, 12.5, 9, 5.5, 8.1, 7.3, 1.1, 9.3, 11.7, 9.3, 7, 4.1, 10.2, 8.8, 8.9, 10.2, 6.2, 5.4, 9.9, 6.2, 8.7, 16.6, 2.7, 7.6, 12.8, 12, 7.8, 9.4, 8.9, 5.8, 7.2, 6.8, 10.2, 5.9, 13.4, 8.6, 10.3, 9.7, 5.6, 10.3, 7.7, 6.2, 4.5, 9.4, 12, 11.6, 6, 9.1, 8.7, 5.8, 4.6, 11.2, 7.1, 7.1, 6.8, 5.7, 5.4, 8.3, 8.6, 9.4, 3.9, 12.5, 11.3, 8.7, 9.1, 10.7, 9.3, 13.4, 9.5, 7.8, 10.6, 9.4, 6.1, 5.8, 10.7, 12.4, 7.1, 4.1, 6.2, 9.2, 10.3, 7.3, 5.9, 9.2, 9.6, 8.2, 10, 11.1, 5.8, 5.1, 9, 10.7, 10.6, 10.3, 10.6, 4.7, 9.5, 5.7, 7, 11.9, 9.6, 5.5, 7.4, 8.2, 13.3, 7.3, 8, 7.9, 9.9, 7.1, 10.1, 14.3, 7.7, 10.2, 10.4, 6.5, 11.5, 7.2, 9.3, 9.4, 11.9, 12.3, 6, 8.2, 7.4, 9.1, 8.7, 9, 10.9, 6.1, -817.1, -280.4, 109.9, -344, -398.1, -396.8, -240.1, -11.6, -7.3, -1.5, -0.7, 0.4, -3.4, -4.5, 2.5, 1.2, 1.2, -0.5, 3, 8, 4.2, -2, -16.1, -5.2, 5.1, 13.5, 11.7, 5.7, 6.2, 1.8, -3.2, -7.6, -6.1, 9.6, 7.9, 4.9, 4.1, 7.1, 8.8, 7.2, 8, 4.2, -0, -4.2, -1.8, 7, 7.4, 8.6, 11.5, 6.9, 11.6, 8.2, 7, 7, 7.9, 1.8, 0.4, -4.1]
    line [300, 185.7, 232.1, 243.4, 235.4, 196.2, 165.3, 148.5, 101.5, 77.2, 53.3, -2.6, -1.2, 0, -1.5, 1.5, 4.5, -4.7, -7.8, -20.1, -9.6, -3.5, 0.2, 11.6, 3, -3.7, -3.6, -4.3, 4.6, 2.8, 5.7, 8.3, 5.4, 7, 8, 4, 10.2, -3.2, -9.9, -20.1, -11.9, -1.9, 26.6, 20.9, 25.9, 13.2, -6.9, -8.4, 0.3, 12.9, 18.8, 8, 4.1, 0.3, -2.6, -4.8, -2.1, 1.4, -0.7, -3.4, 2.8, 4.2, 2.9, -2.5, 2.5, 5.3, 7.1, 3.8, -3.5, 1.8, -17.8, -16.4, -16.3, 5.2, 10.7, 26.5, 16.2, 7.4, -11, -24.1, -19.4, -8.3, 11.4, 9.5, 16.5, 12.2, 8.9, 1, -0.5, -1.1, -6.8, -7.1, -1.3, 4, 16.9, 18.7, 8.6, 10.3, 5.8, -5.5, -7.8, -1.9, 6.2, 6.3, 3, 9.6, 9.4, 9.2, 10.2, 8.2, -3.8, -4.7, -1, -4.2, -4.5, -1.4, -4.5, 2, 9.7, 3.2, -0.3, -3.7, -1.5, -2.1, -2, 1.2, 0.7, 3.6, 8.5, 13.4, 8.9, 13.4, -9.2, -15.5, -27.8, -14, 11.3, 18.8, 21.2, 12.9, 12.3, 11.5, 5.4, -4.1, -5.1, -6.8, -1.9, 6.2, 9.3, 11.7, 14, 8, -3.2, -1.8, -0.3, 1.2, 11.5, 3.4, 1.7, -4.3, -4.9, -4.7, -0.5, 0.9, 1.3, 5.7, 6.2, 4.9, 4.8, -4.2, -11.2, -5.6, -4.4, -2.3, -3, 2.4, 9, 17.4, 8.2, -1.2, 4.8, 7.8, 11.6, 9.6, 2.5, -0.7, -0.4, -5.6, 1.3, 2.3, 4.2, 4.4, 0.8, -6.5, -14.3, -16.3, -20.7, 1.7, 7.8, 16.2, 9.7, 1.3, -14.4, -10.4, -3.1, 5.7, 19.1, 15.1, 10.1, -2.7, -7.2, -17.6, -1.8, 7.1, 21.1, 14.3, 10.4, -0.1, 2.6, -2.4, 1, 1.8, 4.5, 14, 14.7, 15.7, -3.7, -12.8, 9.8, 12.4, 15.3, 11.9, -0.3, -6.2, -5, -3.8, -6.6, 6.5, 11.5, 20.4, 5.3, 9, -4.1, -6, 0, -2.1, -3.3, -0.9, -0.7, 4.4, 3.2, 7.8, -0.3, -7.1, -0.5, -9.3, -10, 0.1, 1.1, 1.4, -1.5, 3, 2.9, -0.2, 4.4, 6.5, 4.8, 8.5, 8, 1.1, -2.1, 6.3, 0.4, -0.4, 6.8, 7.1, -5.6, 0.8, -2.4, -2.6, 6.3, 12.6, 7.8, 11.7, 12.5, 6, 8.8, 12.2, 5.1, 8, 9.5, 7, -1.7, -4.6, -0.1, 1.7, 2.6, 2, 7.9, 0.9, 7.9, 9.7, 8.9, 7.6, 8.3, 3.4, -5.5, 3.8, -0.4, 1603.9, 1998.8, 1775.6, 1116.5, 858.4, 790.8, 706.5, 630.1, 570.8, 482.7, 396.7, 326, 111, 23.1, 71.2, 72.9, 52.4, 22.5, -6.4, 83.9, 6.6, -19.2, 23.6, 12.5, -13.8, 2.8, 4.5, 7.1, 7, 5, 6.4, 8.9, 2.4, 6.8, 9, 11.4, 8.5, 10.1, 2.6, 9, 4.6, 7.1, 13, 7.5, 9, 10.6, 5.4, 7.5, 7.7, 3, 7.4, 10.8, 4.9, 3.4, 5.7, 6, 9.8, 2.5, 5.5, 12.8, 6, 4.2, 7.5, 6, 8.5, 6.5, 10, 7.4, 10.9, 7.4, 5.2, 10.8, 4.5, 14.1, 3.6, 10.6, 8.2, 6.9, 9.7, 4.6, 7.5, 8.5, 3, 7.4, 8.9, 7, 10.8, 5.6, 7.6, 7.4, -1887.2, -1271.4, -767.8, -805.9, -809.4, -764.1, -705.9, -549.3, -465.9, -305.8, -183.6, -107.7, 3.3, 51.9, 104.5, 102.9, 97.3, 97.3, 84.8, 77.6, 68.1, 65.3, 58.1, 53, 45.1, 44.8, 29.9, 15.4, -5.4, -36.5, -34.2, -32, 3.8, 14.3, 31.6, 33.3, 37.1, 29.8, 13.6, -1.8, -2.7, -1.7, -0.3, 4.6, 7.8, 6.9, 7, 9.8, 4.6, 10.3, 8.6, 13.9, -23.2, -150.4, -212, -271.7, -127.2, 287.2, 424.6, 462.1, 423.6, 375.3, 332, 305.4, 222.2, 28.5, 52.2, -10.7, 112, 65.2, -28.9, 54.4, 6.9, 8.2, 0.7, -4.5, 3.5, 3.1, 2.2, 11, -26.8, 50.7, -41.3, 71.9, 9.5, -11.1, 87.6, 73.1, 12.4, 12.1, -11.5, 108.1, 73.3, 25.1, -28.7, -4.4, -23.4, 76.1, -5.1, 2.5, -5.7, 9.3, 24.9, 98.5, 38.6, 8.7, -4.5, -23.8, -12.6, 82.2, 1.1, 102.8, 60.5, -40.2, 69.9, -13.1, 8.2, 1.3, 6.5, 18.9, 2.3, 8.4, 42.9, 5.1, 41.8, 5.8, 9.1, 6.9, 18.5, 72.1, -20.3, 97.6, -9.6, 100.5, 61.4, -14.9, 34.8, 43.6, 71.7, 25.1, 28.9, 4.8, 61.8, -20.4, 22.8, 37.1, 51.7, 366, 1564.9, 1068.1, 731.1, 812.2, 564.6, 108.6, 149.3, 120.8, 54, 2.6, 122.3, 100.4, 64.4, 32.9, 33.4, 114.4, 120.5, 87.8, 67.9, 14, 2.8, 137.7, 44, 4.3, 46.7, 27.2, 20.3, 1.1, 19.5, 14, 5.5, 3.2, 15.6, 5.7, 6.9, 1.8, 7.2, -8.1, 6.8, 15.6, 20.4, 13.7, -8.2, -1.2, -2.1, 13.1, 1, 4.2, 19.5, 8.3, 20.8, 7.9, 3.4, -6, 10.1, 13.5, 5.4, 6.9, 4.7, 9.6, 8.4, 8.1, 9.2, 5, 7.1, 5.1, 10.3, 5.1, 11.8, 10.5, 7.3, 12.2, 8, 6.4, 4.4, 1.7, 3, 9.8, 5.3, 8.1, 7.9, 7.8, 7.3, 9.8, 7, 4.5, 7.5, 12.8, 9.5, 8.8, 6.1, 5.2, 11.6, 6.9, 11.7, 7.7, 6.5, 5.9, 12.7, 9.2, 6.8, 6.7, 6.9, 8.8, 4.6, 11.5, 9.5, 7.5, 10.5, 9, 11.8, 10.7, 4.4, 5.9, 8.3, 4.4, 4.2, -589, -1450, -776.1, -86.8, 47.6, 57.1, 77.4, 156, 208.8, 323.5, 438, 490.3, 452.6, 410.9, 360.2, 319.1, 294.6, 124.6, 21.3, 113.8, 64.5, 3, 59.7, 22.7, 47.3, -16.8, 32.6, 31.2, 18.1, 21.3, 0.7, 37.9, -14.1, 17.3, -0.1, 61.4, -5.8, -4.1, 6.5, 2.9, 21.6, 9.3, 4.2, 9.4, 5.5, 4.2, -11.9, 35.4, 30.8, 9.5, 13.3, 21.4, 114.5, 68.7, 1.3, 38.2, 13.9, 105.4, 65.9, -29.6, 55.5, -0.2, 2, 0.6, 0.4, 7.2, -30.1, 62.2, -17.6, 50.4, 30.5, -16, 53.9, -13.6, 17.2, 11.2, 89.4, 42.8, -5.9, 1, 83.8, 12.8, 78.5, 19, 31.8, 30.1, 18.3, 9.8, -2.1, 906.1, 1361.8, 957.7, 824.9, 872, 825.5, 775, 724.2, 670.4, 617.5, 570.2, 517.2, 463.4, 413.6, 368.7, 320.3, 266.5, 185.4, 129.3, 122, 111.9, 108, 100, 99.2, 87.5, 75.2, 78.3, 67.5, 60.6, 54.9, 50.5, 45, 39.1, 28.4, 27.2, 20.5, 12.7, 90.3, 187.1, 143.7, 138.7, 131.2, 124.9, 121.6, 111.6, 106.7, 103.5, 82.5, 86.7, 81.6, 72.4, 65.2, 59.5, 50.3, 39.1, 38.8, 26.3, 28.9, 14.7, 12.2, 4.8, -1.9, 116.8, 176.2, 133.5, 136.3, 124.5, 113.9, 110.4, 104.5, 95.9, 90.3, 85, 81.5, 70, 64, 54.9, 52.4, 45.6, 37.4, 29.9, 22.5, 22.2, 13.7, 58.8, 125, 122.7, 115.8, 111, 108.4, 97.4, 91.5, 84.3, 80, 76.4, 62.2, 60.1, 51.7, 47.9, 41.2, 35.4, 26.7, 16.5, 12.4, 8.1, 45.4, 121.3, 87.2, 78.9, 72, 66.7, 61.1, 54.3, -1101.9, -770.1, -101.1, -183.6, -608.3, -583.9, -203.8, 464.1, 526.1, 309.1, 4.7, -727.6, -282.1, 199.8, 209.2, 160.2, 125.6, 80.6, 15.3, 17.4, 5.5, 9, 3.5, 3.3, 0.9, 15, -26.1, 113.1, 78.3, 34, -41.8, 1.8, -6.3, 13.8, -2, -0.2, 7.2, 4.3, 16.7, 1.8, -13.4, 43.4, 15.3, -16.5, 55.8, 167.1, 219.7, 202.1, 198.4, 165.5, 130, 93.7, 62.8, 24.2, -5, -52.1, -24, -0.4, 46.9, 38.3, 36.6, 14, 16.1, 11.3, -0.6, -11, -9.1, 4.5, 15.4, 19, 15, 14.7, -1.5, -10.2, -22.9, -0.8, 10.7, 22, 25, 24.4, 9.8, -3.7, -8.2, -8.2, -4.6, -9.2, -3.6, 6.4, 8.7, 6.6, 14, 12, 8.3, 10.2, 13.1, 1.5, -3.8, 1.9, -3.7, 0.1, 0.9, 0.1, 1.9, 4.3, 0.9, -1.6, 7.1, 3.6, 1.1, 5.4, 5.9, 7.8, 9.5, 9.6, 15.1, 4.5, 2.7, -7.3, -0.9, -5, -3.6, 3.2, -4.4, -4.6, 0.7, 6.2, 0.6, 7.8, 2.8, 6.6, 3.9, 7.1, 5.6, 2.9, 2.8, 5.4, 6.6, 6, 5.2, 5.7, -1.3, -4.3, -2, 10, 6.3, 3.3, 4.4, -8.1, -3.5, 1.1, 7, 10.5, 1.1, 0.3, 2.6, -1.7, -2.5, -2, -1.9, 0.4, -1.3, 1.5, 2.5, 2.7, 1.9, -0.8, 1.7, 4.7, 4, 8.3, 9.5, 6.6, 4.2, 11.6, 6.4, 7.4, 9.8, 6.5, 6.4, 4.3, 7.1, 2.4, 8.4, -3.4, -3.9, 2, -0.2, 0, 1.6, 0.7, 1.9, 5.4, 3.7, -2.3, 1.2, -0.8, 0.2, 4.4, 1.6, 4.5, 6, 7.3, 9, 7.6, 8.7, 4.8, 6.4, 8.6, 8.8, 3.1, 5.9, 12.7, 5, -4.8, 1.1, -4.1, -4.2, -1, 0.7, -1.1, 5.9, 12.9, 10.9, 8.8, 8.5, 13, 9.3, 13.6, 5.4, 3.3, 0.1, -0.2, 0.9, 0.2, 2.1, 2.6, 5, 5.4, 3.4, 1.4, -2.3, 2, 4.9, 0.1, 2.1, 3.3, 2.4, -2.3, -5.7, -6.8, -2, 1.6, -1.7, 4.6, 2.7, 3.4, 5, 1.5, 6.8, 5.8, 5.9, 4.2, 2.8, 2.1, 3.8, 5.7, 6.8, 3, 1.4, -4.3, -2.8, -0.5, 8.1, 7.4, 6.2, 5.7, 10.7, 9.4, 0.1, -0.8, -1.8, -4.1, 2.6, 6.5, 15, 10.5, -2.3, -9.5, -19.1, -22, -0.8, 12.3, 22.5, 23, 24.9, 14.2, 2.1, -12.1, -10.5, -3.2, 9, 17, 24.8, 21.8, 14.2, 6.4, -7.9, -3.5, -4.5, 12.3, 10, 4.4, -6.5, -5.2, 3.9, 0.2, 6.5, 7.1, 4.6, 10.5, 10.9, 6.4, 6.9, 8.8, 10.3, -4, -7.1, -0.4, 6.3, 7.2, 9.3, 9.9, 20.2, 16.3, 11.3, 7.3, 10.3, -13.6, -4, -5.1, 5.3, -1.2, -1.1, -2.1, 3.2, 1.5, 3.8, -0.5, -1.2, 7.1, 4.3, 3.9, 5.6, 11.8, -1.5, -5.1, 1, -1.7, 0, 5.8, 8.6, 2.2, 7.5, 11.5, 2.3, 0.9, 1.7, 7.4, 5.9, 2.6, 3.6, 1, 6.5, 1.1, -2.4, -11.7, -15.7, -13.9, -17.8, -12.6, -1.4, 0.1, -11.6, -7.7, -8.6, 1328.3, 1989.1, 1825.3, 1260, 743.5, 685.7, 605.1, 525.1, 448.7, 372.3, 295.4, 175.2, 55.5, 137.2, 79.4, 33.2, 133.3, 97.3, 72.1, 45.4, 31.9, 51.7, 47.1, 45.1, 28.6, 14.7, 6.2, 14.8, -38.7, 12.8, 0.4, 1.5, 11.5, 10.2, 9.7, 10, 7.3, 8.3, 11.6, 12.8, 11.8, 10.5, 12.4, -6.4, -1.3, 1.7, 8.9, 7.8, 12.3, 5.4, 8.3, 9.7, 13.4, 8.9, 9.1, 7.6, 11.2, 11.4, 10.2, 7.5, 8.6, 2.1, -12.9, 5, 8.4, 9.9, 12.3, 14.8, -3.4, 10.6, 3.9, -21.7, 8.8, 3.1, 7.2, 4.9, 11.9, 8.4, 10.1, 13.1, 5.8, 10.6, 10.3, 5.5, 7.2, 10, 7, 7.5, 6.2, 8.4, -668.4, -1904.5, -1238.2, -489.7, 130.7, 121.7, 160.2, 195.4, 155.5, -485.1, -525.2, -489.4, -429.6, -354, -193, -76.1, -7.4, 182.8, 181.7, 153.4, 62.7, -109.7, -124.4, -100.3, 7.1, 27.9, 89.4, -4.7, 68, 25.5, 35.8, 16.1, 8, -9.8, 13.6, -3, 11.8, -14.1, 1.8, 2.8, 25.7, 41.4, -6.3, 26.3, 40.3, 0.3, 1.7, 73.1, 95.2, 44.7, 3.1, 45.9, 36.3, -17.9, 25.8, -0.7, 5.9, 57.9, -10.4, 86.4, 56.7, -12, 39.6, 31.2, 16, -22.3, -15.6, 110, 65.6, -10.1, 1.9, -16.5, 94, 66, -13.4, 52.4, 6.3, -0.9, -4.9, 1.9, 12.4, 4.6, 20.7, 3.9, -2.3, 22, 6.5, -6.9, 4.1, 7.5, 2.3, 15.3, -2.3, 16.3, 3.9, -0.2, -1.4, 23.9, -6.1, -18, 18.2, 925.7, 933, 553.4, 653.1, 541.8, 235.5, 100, 69.8, 51.6, 52.3, 116.7, 118.2, 77.7, 48.3, 14, 22.1, 112.2, 112.5, 77.8, 43.3, 15, -20.3, 71, 16.7, 19.2, 20.1, 3.7, 16.3, 2.4, -0.8, -7.9, 9.6, -9.2, 13.3, 4.1, 1.2, 10.4, 15.6, 14, 15.1, 3.2, 8.5, 5.4, 5.5, 6.9, 7.2, 4.7, 9.3, 7.7, 4, -6.6, 19.2, 22.4, 7.6, -1.6, 5.8, 3.3, -5.3, 5.9, -8.2, 5.5, 12.7, 6.9, 6.5, 6.7, 11.8, 4.5, 3.1, 7.4, 9.5, 11.1, 6.9, 5.5, 4.1, 5.1, 8.1, 10.9, 10.3, 10.3, 8.7, 6, 4.5, 4.3, 7.2, 8, 10.4, 11.3, 11.2, 9.7, 10.8, 4.2, 8.3, 4.3, 3.6, 11.1, 10.9, 10.8, 3.9, 9.1, 7, 8.4, 5.3, 7.9, 7.8, 11.2, 12.2, 10.6, 6.2, 10.6, 6.5, 4, 5.5, 6.2, 9.3, 9.1, 6.9, 4.8, 8.7, 7.8, 3.5, 6.5, 7.5, 3.8, 9.3, 4.7, 6, 8.1, 9.3, 5.5, 11.1, 8.2, 11.8, 9.9, 9.3, 6.3, 1.6, 7.2, 10.9, 5.2, 12.5, 6.7, 3.8, 10.2, 2.9, 6.4, 4.4, 8.1, 11.3, 7.9, 10.8, 5.3, 6.2, 14.9, 5.6, 6.9, 4.2, 7.2, 9.7, 11.8, 6.1, 3.6, 12.7, 4.8, 3.7, 3.1, 8, 12.6, 6.5, 9.3, 9.5, 11.3, 12.2, 8.7, 5.2, 7.8, 7, 0.9, 9, 11.4, 9, 6.8, 3.8, 9.9, 8.5, 8.7, 9.9, 6, 5.1, 9.6, 5.8, 8.4, 16.3, 2.4, 7.3, 12.5, 11.8, 7.5, 9.1, 8.6, 5.5, 6.9, 6.5, 9.9, 5.6, 13.1, 8.3, 10.1, 9.4, 5.3, 10, 7.4, 5.9, 4.1, 9.1, 11.7, 11.3, 5.7, 8.8, 8.4, 5.5, 4.3, 10.9, 6.8, 6.8, 6.5, 5.4, 5, 8, 8.3, 9.1, 3.6, 12.2, 11, 8.4, 8.8, 10.4, 9, 13.1, 9.2, 7.5, 10.3, 9.1, 5.9, 5.5, 10.4, 12.1, 6.8, 3.8, 5.9, 8.9, 10, 7, 5.6, 8.9, 9.3, 7.9, 9.7, 10.8, 5.5, 4.8, 8.7, 10.4, 10.3, 10, 10.3, 4.4, 9.3, 5.4, 6.7, 11.6, 9.3, 5.2, 7.1, 7.9, 13, 7, 7.7, 7.6, 9.6, 6.8, 9.8, 14, 7.4, 9.9, 10.1, 6.2, 11.2, 6.9, 9, 9.2, 11.6, 12, 5.7, 7.9, 7.1, 8.8, 8.3, 8.7, 10.6, 5.8, -874.1, -533.2, -519.2, -652.4, -301.4, 303, 554, 826.5, 784.8, 738.9, 694.4, 652.2, 600.2, 554.6, 518, 470.3, 428.2, 382.5, 340, 308.5, 245, 5.4, 91.9, 4.3, 5.5, -2, -27, 4.2, -8.3, 82.5, -14.7, 58.1, -1.9, 59, 35.2, 15.4, 13.3, 87.2, 27.4, 3.6, 18.4, -1.5, 11.2, 9, 11.5, 0, 4.1, -14.3, 17.7, -2.8, 2.9, 4.5, 9.3, -37.1, 49.1, -109.3, 134, 87.8]
Loading
mixed_cadence/fair — settle 70.9→85.4s, overshoot 1655.7→277.6W, RMS 16.1→23.2W
Metric Base Head Δ
settle_mean_s 70.9 85.4 +20%
settle_p95_s 92.7 180.5 +95%
unsettled_events 0 2 +2
overshoot_mean_w 883.2 90.6 -90%
overshoot_max_w 1655.7 277.6 -83%
band_crossings_per_h 162.0 98.0 -40%
steady_rms_w 16.1 23.2 +44%
mean_abs_grid_w 49.5 36.9 -25%
avoidable_import_wh 35.5 28.0 -21%
avoidable_export_wh 13.9 8.9 -36%
battery_travel_w_per_h 69350.0 34470.0 -50%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 60
    y-axis "W"
    line [300, 262.1, -46.1, 35.5, 33.1, 31.1, 8.2, 54.4, 40.7, 17.8, 26.8, -8.5, 14.6, 18.4, 16.9, 18.7, 9.8, 0.7, 0.9, -4.8, -2.1, -0.3, 1.5, 16.9, 6.3, -0.4, 2.6, 5, 8.9, 7.1, 10, 12.6, 9.7, 11.4, 12.3, 8.4, 14.6, 3.2, 0.2, -3.6, -2.9, 5.4, 11.9, 6.2, 11.2, 11.5, 2, 12.5, 7.2, 10.8, 8.7, 3.9, 7.3, 10.2, 7.4, 5.1, 7.8, 11.3, 9.2, 6.5, 10.7, 9.1, 7.8, 2.4, 7.3, 9.6, 11, 7.7, -3, 7.2, 2.1, 3.5, 3.6, 7.1, 5.4, 4.4, -1.9, 0.6, 0.9, 0.6, 9.2, 11.8, 13.9, 6.3, 7.6, 9.3, 10.1, 12.1, 10.7, 10, 4.4, 4, 9.8, 7.8, 13.8, 10.9, 8.7, 12.4, 7.9, 7.3, 10.4, 7.3, 12.8, 10.4, 7.2, 13.3, 12.5, 12.3, 13.3, 11.4, 7.3, 8.4, 12.1, 9, 8.6, 11.8, 6.8, 12.1, 11.8, 9.3, 11.9, 8.4, 9.2, 7, 7.1, 10.3, 9.8, 5.6, 8.6, 13.6, 9, 13.6, 7, 8.7, 4.3, 5.7, 12.3, 9, 11.3, 7, 12.5, 11.6, 9.8, 9, 8, 5.5, 7.2, 10.8, 9.4, 11.9, 14.1, 8.1, 6.9, 8.4, 9.8, 8.1, 17.7, 9.6, 14.5, 11.5, 9.3, 5.3, 6.6, 8.1, 8.5, 12.8, 13.3, 12, 12, 2.9, -4, 1.5, 0.3, 1.9, 1.1, 5.6, 6.3, 5.5, 3, -0.1, 8.9, 9.6, 11.7, 9.7, 7.8, 12.4, 12.8, 6.5, 11.5, 9.1, 9.4, 9.4, 12.6, 8.7, 12.8, 10.8, 6.4, 10.8, 7.5, 6.4, 11, 10.8, 5.8, 7, 9.7, 4.9, 8.7, 5.6, 7.2, 5.3, 8, 7.5, 13.4, 12.3, 11.3, 5.4, 7.5, 7.5, 12.8, 7.8, 11.1, 9.6, 7.7, 12.5, 10.8, 11.9, 4.5, 3.4, 12.7, 10.1, 9.5, 14, 7.4, 8.9, 10.1, 11.3, 8.5, 11.7, 9.9, 11.5, 2.5, 10.1, 12, 10.1, 16.1, 12.4, 10.8, 13.2, 8.5, 11, 7.3, 12, 3.8, -3, 5.8, -2.1, -2.8, 5.3, 4.2, 4.5, 1.7, 6.1, 6, 2.9, 7.5, 9.7, 7.3, 9.6, 9.2, 4.3, 9.1, 14.5, 6.5, 5.8, 11, 8.2, 5.5, 11.9, 8.7, 8.6, 13.1, 12.7, 8, 11.9, 12.6, 6.2, 8.9, 12.3, 5.2, 8.2, 9.6, 7.1, -1.6, -4.5, 0.1, 1.8, 4.4, 4.1, 10.1, 2.4, 8.7, 8.8, 8, 6.7, 7.4, 8.6, 3.6, 12.9, 8.8, 1613, 1935.6, 1182.3, 398.3, -175.7, 25, 22.9, 20.7, 22.5, 14.6, -16.6, 58.7, 131.1, 107.4, 80.2, 40.2, 14.8, 53, 69, 77.3, 71.7, 46, -0.3, -17.5, 90.1, 61.6, 10.5, -11.9, 80.5, 129.5, 107, 79.3, 32.7, 10.3, 45.5, 124.6, 93.4, 61.4, 20.5, 10.2, -23.2, 17.7, 26.2, 3.9, 22.4, 4.8, -0.2, 4.8, 5.9, 2.8, 10, 14, 8.1, 6.6, 8.9, 9.2, 13, 5.7, 8.7, 16, 9.2, 7.4, 10.7, 9.2, 7.7, 0.3, 6.2, 3.6, 7.2, 3.6, 1.4, 7, 0.7, 10.3, -0.1, 6.8, 6.8, 6.1, 8.9, 3.8, 6.7, 7.7, 4, 9.2, 11.1, 9.2, 13, 7.8, 9.8, 9.6, -1775, -1059.2, -193.9, 619.4, 1282, 1173.7, 403.9, -355.6, -719.4, -37.1, 159.9, -169, -182, -184.4, -182.8, -43.5, 90.6, 43.6, -87.4, -8.1, -15.6, -35.9, -37.9, -36.3, 25.2, -117.3, -69.4, -21.4, -37, -7.3, 7, 3.9, 8.5, 2.9, 8.3, 8.4, 15.2, 7, 9.7, 4.9, 4, 7.2, 9.5, 7.4, 10.5, -6, 8.5, 6.2, -3.2, 7.7, -4.9, 5.8, 0.1, 1.8, 13, 14.2, 9.8, 6, 8.9, 9.2, 10.6, 11.4, 9.1, 13.3, 14.2, 10.4, 13.7, 12.8, 14.8, 11.3, 13.6, 6.4, 12.5, 14.7, 7.6, 9.2, 14.4, 14, 13.1, 8.4, 11.2, 10.8, 6.3, 9.8, 12, 13.9, 10.7, 9.9, 6.8, 3.4, -1.9, 0.4, 6.1, -6.2, 0.8, 4.7, 1.5, 7.3, 1.3, 11.1, 5.9, 4.3, 5, 6.1, 0.2, 11.6, 9.2, 5.4, 12.1, 8.1, 11.3, 9.4, 16.8, 9.7, 12.8, 11.9, -1, -3.1, 10.5, -9.7, 0.9, 6, -0.6, 10.4, 14.5, 16.2, 7.1, 11, 0.6, 3.1, 1, -12.5, 1.4, 8.8, -8.7, -0.4, 6, 4.9, 4, 5, -1.4, 3.3, 7.4, 11.6, 9.9, 5.4, 12.7, 387.3, 1490.6, 926, 165.7, -407.2, 244.6, 382.6, 134.5, 109.8, 102.9, 102.6, 101.5, 57.8, 25.6, 52.7, 140.1, 112.7, 78.7, 45.9, 26, -17.6, 124.9, 78.1, 25.9, 0.9, 45.7, 50.5, 2.6, 24.7, 35.8, 19.8, 33.1, 32.3, 32.1, 21, -1.3, 3.2, 2.3, -14.6, 1.7, -8, 15.9, 12.7, -11.1, -0.2, -0, 15.2, -7.7, 8.5, 16.2, 8.4, 11.9, 1, 4.5, 1.5, 6.8, 12.7, 4.5, 6, 3.8, 8.7, 7.5, 7.2, 8.4, 4.2, 6.2, 4.2, 9.4, 4.3, 11, 9.6, 6.4, 11.3, 7.1, 5.6, 3.5, 0.8, 4.3, 12.2, 8.4, 11.2, 11, 10.9, 10.4, 0.7, 3.1, 3.8, 17.6, 20.9, 5.2, 16.9, 18.3, 2.3, 13.7, 9.2, 14.8, 10.8, 1.8, 2, 12.4, -2.1, 4, 7.1, 8, 9.8, 5.8, 12.6, 10.6, 8.6, 11.6, 10.1, 9.6, 1.8, -9.7, 9.4, -0.6, -4.9, 4.9, -592.9, -1409.1, -618, 194.9, 855.7, 1549.8, 1383.6, 697.4, -194.5, -737.8, -159.8, 399, 581.2, 14.1, -202.8, -89.2, -85.4, -88.5, 15.5, 26.8, -82.5, -83.4, -85.2, -82.5, -16.7, -34.1, -39.3, -19.5, -44.2, 22.4, -4.2, 2.8, 4, 8, 6.6, 1.4, 16.2, 6.5, 1.8, -1.1, 2.5, 7.4, 5.1, 12, 10.8, 14.3, 10.2, -3.6, -0.9, -0.1, 5.1, 11, 6.1, 10.1, 5.1, 10.2, 8.8, 8.1, 12.6, 10.5, 8.3, 11.5, 13.7, 8.8, 7.1, 12.3, 9.6, 5.4, 11.6, 9.3, 8.2, 15.8, 10.2, 14.6, 10.4, 3.9, 8.9, 6.8, 10.7, 10.8, 7.7, 8.7, 11.8, 10.7, 7.2, 11.5, 8.7, 6.6, 8.7, 905.1, 1275.7, 633.7, -214.3, 122.9, 301, 100.7, 87.5, 83.8, 75.7, 38.3, 16.3, 159.8, 160, 160, 161.7, 107.7, 79.9, 60.3, 18, -28, 39.9, 123.7, 109.1, 65.2, 20.7, -0.9, 24.8, 52.8, 14.4, 12.5, 21.5, 19.9, 14.2, 12.9, -5.8, 4.8, 5.4, 15.6, 14.7, 17.2, -2.4, -7.9, 1.3, 0.1, 5.4, 11, 3, 12.2, 12.1, 10.9, 9.1, 10, 9.1, 3.6, 9.3, 4.8, 12.8, 5.2, 8.7, 5.3, 8.6, 10.7, 13.8, 6.3, 14.8, 9, 8.4, 8.9, 8.9, 8.4, 8.1, 9.5, 12.7, 6.5, 8.5, 5.4, 6.9, 8.4, 5.9, 4.4, 6.9, 11.7, 8.2, 9.9, 3.5, 7.2, 7, 7.5, 12.9, 7.9, 5.9, 8.8, 9.5, 10.9, 6.7, 9.6, 6.2, 10.7, 9.7, 9.9, 9.2, 4.4, 6.9, 8.6, 6.2, 2.3, 10.7, 7.3, 10.5, 11.8, 10.6, 13.8, -1152.4, -806.6, -559.6, 154.7, 940.9, 1525.9, 1265.9, 759.2, 349.2, -61.3, -132.4, -128.2, -138.8, 4.1, -87.9, -12.9, 58.3, 20, -33.4, -139.1, -98.5, -93.3, -21.8, 25, 26.1, 8, -1.1, 35.6, 11.7, 16.1, 3, -0, 9, 5.4, 5.9, 8.1, 2.1, 5.3, 7.3, 10, 6.5, 11.4, 7.9, 5, 9.4, 12.4, 10, 7, 9.7, 10.3, 8.3, 8.9, 8, 12, 5.7, 8, 8.5, 12.2, 13.4, 9.8, 13.2, 9.8, 15.7, 11, 7.7, 10.6, 12.6, 12.6, -6.6, -5.9, 0.9, 5.3, 3.1, 4.6, 3.8, 5.1, 4, 3.8, 11.6, 1.2, 4.4, 10.1, 10.4, -2.5, 2.8, -0.9, 5.2, 12.8, 12.4, 10.3, 17.7, 15.6, 12, 13.8, 16.8, 13.5, 9.9, 15.5, 9.9, 13.7, 14.5, 13.8, 15.5, 12.9, 9.5, 7, 15.7, 12.3, 9.8, 14, 12.6, -0.5, 4.1, 16.6, 11.1, -4.3, -0.9, -2.4, 6.6, 2.7, 3.3, 9.9, 2.3, 2.1, 5.8, 9.8, 4.3, 10.8, 4.4, 8.3, 5.6, 8.7, 7.3, 5.7, 6.5, 9, 10.2, 8.6, 7.9, 8.3, 9.6, 8.3, 10.6, 15.5, 7.9, -1.3, 13, 4.6, 9.2, 9.1, 12.7, 11.1, 7.7, 11, 13.2, 8.9, 8.1, 8.6, 8.8, 11, 8.6, 10.6, 9.1, 8, 6.5, 3.9, 6.4, 9.4, 6.6, 11, 12.2, 9.2, 6.9, 14.2, 9.1, 10, 12.4, 9.2, 9, 7, 9.8, 5, 11, 4.3, 8.8, 12.2, 9.1, 8.7, 10.3, 9.3, 10.6, 14.1, 12.3, 6.4, 9.8, 7.9, 8.8, 11.2, 7.3, 10.2, 9.6, 8, 9.6, 8.2, 9.3, 5.5, 7, 9.2, 9.4, 3.8, 6.5, 13.3, 5.6, 5.9, 11.7, 6.5, 6.4, 9.6, 11.3, 8.8, 11.2, 11.5, 9.6, 7.5, 7.1, 11.6, 8, 12.3, 9, 12, 8.7, 8.4, 9.6, 8.8, 9.6, 8.3, 10.6, 11.1, 9.1, 7, 3.4, 7.6, 10.6, 5.7, 7.7, 7.7, 5.1, 10.3, 6.4, 4.8, 7.2, 9.4, 5, 10.5, 8.3, 9, 10.1, 6.1, 11.4, 10.4, 10.5, 8.8, 7.4, 6.7, 8.4, 10.4, 11.5, 6.8, 8.3, 9.3, 9.7, 9.2, 8.7, 8.1, 6.8, 6.4, 11.3, 10, 10.8, 9.9, 8.8, 6.5, 10.9, 10.2, 14, 10.8, 12.3, 13, 8.6, 5.6, 10.6, 12.9, 8.1, 8.6, 10.6, 8.2, 7, 6.5, 6.8, 10.5, 10.7, 9.6, 11.5, 8.4, 12.1, 9.9, 12.4, 11.8, 5.9, 9.2, 8.4, 8.7, 9, 10.5, 14.3, 5.8, 8.6, 8.4, 6, 11.8, 12.3, 7.7, 8.2, 10.2, 15.7, 7.4, 4.2, 9.2, 12.6, 9.6, 7.7, 5.2, 15.6, 11.6, 6.6, 2.7, 5.6, -0.3, 3.9, -2.7, 4.2, -1.6, 0.2, -0.7, 4.6, 2.9, 4.3, -0.5, 0.7, 9.8, 6.7, 6.3, 7.4, 13.2, 8.2, 6.3, 12.3, 9.7, 7.9, 10.1, 12.9, 5.6, 8.9, 12.8, 5.7, 12.3, 10.6, 14.7, 13.3, 9.9, 11, 8.3, 13.8, 8.4, 0.6, -4.5, -2.4, -0.5, -1.9, -2.2, 1.7, -1.6, -3.2, 0.8, 0.7, 1337.7, 1894.8, 1256.9, 504.2, -104.9, 257.9, 160.3, 102.7, 103.2, 103.5, 94.9, 52, 25.9, 5.3, 6.9, 102.2, 68.9, 19.6, -0.7, 90.1, 118.3, 90.9, 58.1, 45.3, 22.8, 33.4, 135.6, 120.1, 64, 36.1, 16.5, -23.2, 86.5, 19.6, -28.3, 37.5, 17.5, 21.7, 20.1, 2.1, -4.8, 14.5, 11, -2.9, 11.1, 11, 13.4, 11.2, 15.7, 8.7, 11.7, 6.4, 4.1, 6.2, 11.1, -0.6, 12.5, 12.8, 11.5, 8.8, 10, 1.7, -14, 5.5, -0.2, 4.5, 7.7, 1.6, 0.7, 8.4, 9.2, 2.4, 4.6, 2.4, 6.5, 4.2, 4.5, -0, 4.2, -4.5, -7.6, 2.9, 4.1, -6.2, 5.7, 9.1, 3.4, 3.9, 2.6, 4.8, -662, -1742.1, -1001.8, -253.3, 633.4, 1300.2, 1211.5, 438, -342.4, -733.2, 39.1, 352.9, 64, -152.1, -191.1, -83.2, -20.5, 95.6, -184.7, -100.7, -109.9, -106.2, -104.6, 8.2, 62.8, 71.9, -109.4, -102.9, -35.6, 51.3, -37.6, -29.1, -12.6, -18.7, 11.6, -27.2, 1.2, 20.1, -8.4, -13.1, -3, 3.5, -1.8, 2.2, -8.2, 13.2, 17.4, 14.4, 8.5, 10.1, 6.7, 3.2, 1.7, 2.5, 6.8, 7.5, -1.5, -3.7, 2.9, 10.5, 11, 6.8, 3.9, 8.5, 9.8, 4.4, 5.2, 11.7, 8.9, 4.9, 9.2, 8.7, 8.4, 11.8, 12, 9.1, 9.8, 9.7, 6.1, 6.4, 7, 8.8, 9, 12.9, 5.1, 9, 11.2, 7.6, 9.6, 13.1, 3.1, 10.8, 11.2, 8.7, 11.6, 6.6, 7.8, 11.9, 12.9, 7.5, 7.6, 827.8, 859.8, -13.8, 67.6, 329.1, 154.3, 130.8, 136.5, 135, 123.7, 95, 71.4, 22.6, -24, 39.5, 151.8, 127.7, 94.6, 59.7, 23.3, 48.1, 71.2, 64.9, 70.2, 33.1, 45.4, 35.9, 29.2, 13.6, 5.1, 0.9, 17, -11.6, 6.1, 0.7, 3.8, 5.9, 6.2, 4.6, 6.3, 5.3, 7.3, 8.1, 8.1, 9.5, 9.8, 7.3, 12, 10.4, 4.3, 6.7, 8.8, 10.1, 9.2, 12, 8.3, 12, 8.8, 10.1, 8.6, 6.8, 13.3, 7.5, 7.1, 7.4, 12.4, 5.2, 3.7, 8, 10.2, 11.8, 7.5, 6.2, 4.8, 5.8, 8.7, 11.6, 10.9, 10.9, 9.3, 6.7, 5.2, 4.9, 7.9, 8.7, 11, 11.9, 11.8, 10.3, 11.5, 5, 9, 5, 4.2, 11.8, 11.5, 11.4, 4.5, 10, 8.7, 10.1, 6.9, 9.5, 9.4, 12.8, 13.8, 12.2, 7.8, 12.2, 8.2, 5.6, 7.2, 7.9, 11, 10.8, 8.5, 6.5, 10.3, 9.5, 5.2, 8.2, 9.1, 5.4, 11, 6.3, 7.6, 9.7, 10.9, 7.2, 12.8, 9.8, 13.5, 11.6, 11, 8, 3.3, 8.8, 12.6, 6.8, 6.7, 2.7, 6.4, 10.3, -0.4, 17.3, -6.9, 16.7, 12.9, -4.5, 8.4, 4.9, 5.9, 14.5, 5.3, 6.5, 3.8, 6.8, 9.6, 12.4, 6.8, 4.2, 13.3, 5.5, 4.4, 3.8, 8.6, 13.3, 7.2, 9.9, 10.1, 11.9, 12.8, 9.3, 5.8, 8.4, 7.6, 1.5, 9.7, 12, 9.7, 7.5, 4.5, 10.6, 9.1, 9.3, 10.6, 6.6, 5.8, 10.3, 6.5, 9.1, 16.9, 3, 7.9, 13.1, 12.4, 8.1, 9.7, 9.3, 6.1, 7.5, 7.1, 10.6, 6.2, 13.7, 9, 10.7, 10.1, 6, 10.7, 8, 6.5, 4.8, 9.7, 12.3, 11.9, 6.3, 9.4, 9, 6.1, 5, 11.5, 7.5, 7.5, 7.2, 6, 5.8, 8.7, 9, 9.8, 4.2, 12.8, 11.6, 9.1, 9.4, 11, 9.6, 13.8, 9.9, 8.1, 11, 9.8, 6.5, 6.2, 11, 12.8, 7.4, 4.4, 6.5, 9.6, 10.6, 7.6, 6.2, 9.5, 9.9, 8.6, 10.3, 11.5, 6.1, 5.5, 9.4, 11.1, 10.9, 10.6, 10.9, 5.1, 9.9, 6.1, 7.3, 12.2, 9.9, 5.8, 7.8, 8.5, 13.6, 7.6, 8.4, 8.2, 10.2, 7.4, 10.5, 14.6, 8.1, 10.5, 10.7, 6.8, 11.9, 7.5, 9.6, 9.8, 12.3, 12.7, 6.3, 8.5, 7.8, 9.5, 9, 9.3, 11.2, 6.5, -816.8, -280.1, 426.5, 667.5, -61.8, -361.5, -26.5, -32, -31.7, 2.8, 35.4, -109.6, 26.1, 106, 55, -71.7, -19.4, -6.1, -32.8, -8.2, 0.1, -16.3, -6.1, 6.7, 11.6, -4.1, -0.9, -6.9, 2.5, 3.5, 5.2, 0.8, 2.4, 11, 8.8, 5.3, 4.5, 8.4, 11.2, 9.6, 10.4, 6.7, 10.4, 8.2, 10.7, 12.1, 8.6, 9.1, 11.9, 7.4, 12, 8.7, 7.4, 7.4, 8.3, 2.2, 9.2, 12.4]
    line [300, 166, 31.6, 48.8, 11.5, 10.3, 7, 11.2, 16.8, 12.6, 8.8, -5.9, 3.3, 6.6, 5.1, 6.9, 8, 6.9, 9.2, 3.5, 6.1, 5.4, 2.2, 13.2, 2.6, 5.8, 6.6, 6.3, 8.2, 6.3, 9.3, 11.9, 9, 10.7, 11.6, 7.6, 13.8, 8.2, 6.7, 1.5, 0.7, 10.6, 15.2, 9.4, 14.5, 14.8, 5.3, 15.8, 10.5, 14.1, 12, 1.2, 0.9, 9, 8.6, 7.3, 10, 13.5, 11.4, 1.3, 6.8, 6.4, 5.1, -0.3, 6.2, 9.9, 11.2, 7.9, 0.6, 10.4, 4.4, 6.1, 7.8, 5.4, 3.7, 8.6, 6.3, 8.9, 9.2, 6.9, 10.6, 12.1, 14.2, 6.5, 7.9, 9.5, 10.3, 12.4, 10.9, 10.2, -3.7, -3.4, 6, 11.4, 5.5, -7.9, 5.2, 13.7, 11.2, 3.9, 3.6, 0.5, 6.1, 3.7, 3.6, 16.4, -4.2, 1.6, 2.5, 5.1, 5.6, 6.7, 10.4, 7.2, 6.9, 10, 5, 10.3, 10.1, 7.6, 10.1, 6.7, 7.4, 5.3, 5.4, 8.6, 8.1, 4.6, 7.9, 12.8, 8.3, 12.8, 6.2, 7.9, 3.6, 5, 11.5, 8.2, 10.5, 6.3, 11.7, 10.9, 9.1, 8.3, 7.2, 4.8, 6.5, 10.1, 8.7, 11.1, 13.4, 7.4, 6.1, 7.6, 9.1, 7.4, 16.9, 8.8, 13.8, 10.7, 8.5, 4.5, 5.9, 7.3, 7.7, 12.1, 12.6, 11.3, 11.2, 10.5, 5.2, 10.8, 9.6, 11.1, 10.3, 11, 12.5, 11.8, 9.3, 3.2, 9.2, 9.8, 12, 10, 8.1, 12.7, 13, 6.8, 11.7, 9.3, 9.6, 9.8, 12.9, 8.9, 13.1, 11.1, 6.7, 11.1, 7.7, 6.6, 11.2, 11.1, 6, 7.3, 9.9, 5.1, 8.9, 5.9, 7.5, 5.5, 8.2, 7.8, 13.6, 12.6, 11.5, 5.7, 7.8, 7.7, 13, 8, 11.4, 9.8, 7.9, 12.7, 11.1, 12.1, 4.7, 3.7, 12.9, 10.3, 9.7, 14.3, 7.7, 9.2, 10.3, 11.6, 8.8, 11.9, 10.1, 11.8, 2.7, 10.4, 12.3, 5.4, 8.9, -2.3, 3.6, 8.5, 3.7, 6.2, 2.6, 2.4, -2.1, 0.8, 5.8, -3.7, 0.4, -1.6, -0.5, 2.3, -0.1, 4.4, 4.3, 1.4, 8.6, 9.3, 6.5, 8.9, 8.4, 3.5, 8.3, 13.7, 5.8, 5, 10.2, 7.5, 4.8, 11.2, 8, 7.9, 12.7, 13, 8.2, 12.1, 12.9, 6.4, 9.1, 12.6, 5.5, 8.4, 9.9, 7.4, -1.4, -13.2, -3.7, -1.9, 3, 3.4, 12.8, 4.5, 9.9, 10.1, 9.3, 8, 8.7, 9.8, 4.8, 14.2, 10, 1604.3, 1850.4, 1179.6, 388.9, 86.7, 84.4, 74.3, 66.1, 63.8, 55.9, 48.9, 44.1, 33.5, 29.9, 22.8, 16.2, 10.1, 49.2, 185.8, 175.5, 162, 160.3, 146.7, 138.6, 132.5, 132, 121.1, 118.7, 113.7, 103.3, 99, 95.5, 81.1, 80, 75.5, 72, 61.9, 56.7, 42.6, 45.6, 31.3, 27.7, 29.6, 14.1, 11.7, 7.2, 4.1, 183.3, 171.6, 131.7, 127.1, 124.4, 110.5, 105, 99.4, 93.7, 93.5, 76.1, 74.1, 76.4, 61.3, 53.8, 51.1, 43, 38.1, 30.2, 25.6, 17.7, 14.6, 4.4, -1.1, 31.5, 161, 138.8, 119.9, 121.2, 112.8, 103.6, 99.4, 89.2, 84.1, 79.8, 67.7, 65.3, 61.5, 51.6, 49.5, 40.2, 32.2, 28, -1770.6, -1084.7, -221.5, 247.8, 258.7, 216.8, 165.1, 95.6, 47, 5.1, -12.7, -16.8, 30.2, 26.8, 26.4, -1.8, 2.2, 9.2, 66.6, 75.7, 81, 44.2, 5.9, -11.6, -15.3, -0.3, 17.8, -11.2, -14.6, 23.5, -0.1, -40.1, -8.7, -26.9, -15.5, 0.2, -4.6, -5.3, 8.5, 8.1, 7.2, 8.2, 9.7, 6.6, 9.7, 8.8, 8.9, 11.7, 6.5, 12.3, 10.1, 14.8, 10.9, 4.8, 11.2, 12.4, 8, 4.2, 7.1, 7.4, 8.8, 9.6, 7.2, 11.5, 12.4, 8.5, 11.9, 11, 13, 9.5, 11.8, 4.6, 10.7, 12.8, 5.8, 7.4, 12.6, 12.2, 11.3, 6.7, 9.4, 9, 4.5, 8, 10.2, 12.1, 8.9, 8.1, 5, 13.6, 6.9, 9, 6, 9, 8.1, 2.9, 8.4, 6.3, 10.7, 9.3, 4.1, 5.9, 10.2, 8.3, 2.1, 11.3, 7.8, 3.6, 10.3, 6.3, 9.5, 7.6, 15, 7.9, 11, 12, 9.2, -1, 0.1, -5.9, -1.3, 4.2, -2.4, 7.4, 11.7, 13.4, 4.3, 8.2, 10.5, 7.9, 7.8, 0.1, -3.7, -4, -0.6, 2.8, 2.2, 0.3, 1.7, 0.9, -4.2, 0.5, 8.6, 12.8, 11.1, 6.6, 13.9, 388.5, 1411.6, 906.6, 207.8, 62.9, 48.5, 67.5, 155.5, 130, 72.9, 52.6, 31.4, 36.9, 116.1, 114.7, 84.7, 52.3, 18.2, -4.6, 94.4, 90.7, 71.3, 44.6, 29.8, 45.1, 42.5, 13.6, 31.7, 6.9, 19.9, 25.9, 23.1, 9.2, 8.4, -1.7, -7, -3.1, 14.3, -10.7, 5, 16.2, 21, 14.3, -8.2, -2.6, 11.5, 14, -0.2, -3.4, 11.7, 15.9, 3.7, -16.3, -0.6, 3, 6.5, 11.1, 2.9, 4.5, 2.2, 7.2, 6, 5.7, 7.4, 3.6, 5.8, 3.7, 8.9, 3.9, 13.3, 12.1, 8.9, 13.8, 9.6, 8, 6, 3.3, 4.6, 11.4, 6.9, 9.7, 9.5, 9.4, 8.9, 11.4, 8.6, 6.1, 9.1, 14.4, 11, 10.4, 7.7, 6.8, 13.2, 8.5, 13.3, 9.3, 8.1, 7.5, 14.3, 10.8, 8.4, 8.3, 8.5, 10.3, 6.2, 13.1, 11.1, 9.1, 12.1, 10.6, 8.4, -6.9, -12, 10.2, -1.6, -7.7, 4.4, -587.4, -1447.6, -773.5, -115.7, -12.8, 20.3, 78, 35.9, -1.6, -6.9, 25.1, 9, 59.3, 17.6, -13, -11.5, 15.7, 4.3, -24.2, 5.6, 10.3, 39.4, 9.6, -11.9, -16.9, -16.3, 14.7, -26.7, -27.4, 32.9, 8.4, 11.3, 1.5, 7.4, 3.4, 2.2, 7.3, 7, 6.3, 4.9, 4.1, 7.2, 3.9, 10, 8.7, 12.1, 10, 12.8, 10.3, 7.9, 7.9, 11.8, 7, 10.9, 5.9, 11, 9.6, 8.9, 13.4, 11.3, 9.1, 12.3, 14.5, 9.6, 7.9, 13.1, 10.4, 6.2, 12.4, 10.1, 9, 16.6, 11, 15.4, 11.2, 4.7, 9.8, 7.6, 11.5, 11.6, 8.5, 9.5, 12.6, 11.5, 8, 12.3, 2.8, 4.2, 8.5, 894.9, 1279.3, 663.2, 79.4, 50.5, 18.1, 2.1, 92.3, 110.8, 102.8, 65.5, 22.3, -3.2, 12.9, 171.7, 142.8, 88.7, 60.9, 41.4, 42.8, 104, 106, 66.1, 49.2, 26.3, 32.9, 28.4, 6.5, 5.6, 2.9, 17.4, -2.9, -0.9, 6, 11.1, 10.4, 10.6, 6.9, 12.1, 8.7, 12.7, 11.1, 11.5, 13.5, 11.5, 12.7, 13.4, 2.4, 11.6, 11.5, 10.4, 8.5, 9.4, 8.5, 3, 8.7, 4.2, 12.2, 4.7, 8.1, 4.8, 8, 10.1, 13.2, 5.7, 14.2, 8.5, 7.9, 8.3, 8.4, 7.8, 7.6, 9, 12.1, 5.9, 8, 4.8, 6.3, 7.8, 5.4, 3.9, 6.4, 11.6, 8.7, 10.4, 4, 7.7, 7.4, 8, 13.3, 8.4, 6.4, 9.2, 10, 11.3, 7.2, 10.1, 6.7, 11.2, 10.1, 10.3, 9.6, 4.8, 7.3, 9, 6.6, 2.7, 11.1, 7.8, 10.9, 11.6, 10.1, 13.2, -1178.9, -981.2, -230.2, 127.2, 123.4, 80.1, 30.6, -3.5, 1.1, -5.3, 4.4, -8, -18.7, 33.6, 29.2, 25.2, -4.3, -8.3, -10.7, 18, 10.1, 41.2, -1.4, -28.4, -28.5, 1, -4.9, 76.3, 23.3, -9.8, -20.5, -4.2, 13.1, 41.6, -50.6, -26.3, -4.3, -7.6, 17.9, 10.6, -6.1, -4, 2.5, 1.5, 7.6, 12.1, -0.3, -2.4, 9.4, 9.9, 2.9, 7.5, -0.2, 4.7, 2, 6.7, 7.1, 10.8, 12.1, 8.4, 11.8, 8.4, 14.4, 9.7, 4.4, -2.7, -0.8, 8.4, -5.3, -4.7, 0.6, 5, 2.8, 4.3, 3.4, 4.7, 3.6, 3.5, 11.3, 15.7, 6, 9.4, 9, 9.2, 6.1, -2.9, 0.3, 3.1, 3, 2.9, 13.5, 13.3, 9.6, 11.5, 14.4, 11.2, 7.5, 13.2, 7.6, 11.4, 12.2, 11.4, 13.2, 10.6, 7.2, 4.7, 13.4, 9.9, 7.4, 11.7, 10.2, 9.1, 10.8, 10.9, 16.4, 12.5, 14, 4, 10.4, 6.3, 6.9, 13.5, 5.9, 5.7, 9.5, 13.5, 7.9, 14.5, 8.1, 11.9, 9.2, 12.4, 10.9, 8.2, 7.1, 9.7, 10.9, 9.3, 8.5, 9, 10.3, 9, 11.3, -3.1, -8.2, -5.8, 13.7, 7.2, 11.8, 11.7, 15.3, 13.8, 10.4, 13.7, 15.9, 11.6, 10.8, 11.3, 8.1, -3.4, -4.7, -1, 8.5, 11.7, 11.2, 8.5, 11, 14, 11.3, 15.6, 16.8, 13.9, 11.5, 11.4, 0.1, -5.7, 1.9, 4.6, 13.4, 12.6, 15.4, 10.7, 7.3, -3.1, 6.9, 14.3, 11.7, 11.3, 12.9, 12, 13.2, 16.7, 15, 9, 12.5, 10.5, 1.5, 1.5, 3.9, 9, 10.1, 9.6, 11.3, 9.9, 11, 7.1, 8.7, 10.9, 11, 5.4, 8.1, 15, 7.3, 7.5, 13.4, 8.2, 8.1, 11.3, 12.9, 10.4, 12.8, 13.2, 11.2, 9.2, 8.8, 13.3, 9.6, 13.9, 10.7, 13.6, 10.4, 10.1, 11.2, 10.5, 11.2, 9.9, 12.3, 12.7, 10.7, 8.7, 5, 9.3, 12.2, 7.4, 9.4, 9.4, 6.7, 12, 8.1, 6.5, 8.8, 11.1, 6.6, 12.2, 10, 10.7, 11.7, 7.8, 13.1, 12.1, 12.2, 10.5, 9.1, 8.4, 10.1, 12, 13.1, 8.5, 10, 11, 11.3, 10.9, 10.4, 9.7, 8.5, 8, 12.3, 10.7, 11.4, 10.5, 9.5, 7.2, 11.6, 10.8, 14.6, 11.4, 13, 13.6, 9.2, 6.3, 11.3, 13.6, 8.8, 9.2, 11.2, 8.8, 7.6, 7.2, 7.5, 11.1, 11.3, 10.3, -6.6, 1.8, 15.8, 16.6, 19.1, 18.5, 12.5, 14.3, -7.4, 6.4, 12.3, -5.2, 9.9, 6.2, 12.2, 12.1, 9.7, 15.5, 7.6, 10.6, 15.9, 11.8, -0.7, -4.2, 6.3, 11.9, 12.8, -0.2, 4.3, 2.7, 14, 10.3, 5.3, 7.3, 14.3, 8.4, 12.5, 6, 13, 5.8, 5.9, 5, 10.2, 8.5, 10, 5.1, 3.9, 11.5, 8.3, 7.9, 7.6, 11.8, 6.8, 4.9, 11, 8.3, 6.5, 8.8, 11.6, 4.2, 7.5, 11.5, 4.3, 11, 9.3, 13.4, 11.9, 8.6, 9.6, 7, 12.5, 7.1, 11.9, 8.4, 10.3, 12.1, 6.6, 5.5, 9.4, 6.1, 4.4, 8.3, 7.4, 1336, 1836.7, 1299, 552.1, 34.3, 32.5, 26.2, 17.3, 11, 4.8, 0.8, 69.1, 122.1, 126.5, 117.3, 107.9, 104.1, 95.1, 89.9, 83.2, 76.1, 70, 64.1, 62.1, 53, 44.1, 42.7, 38.4, 22.6, 18.7, 15.2, 5.1, 11.8, 124.2, 115.3, 110, 101.4, 94.3, 93.6, 86.8, 79.9, 72.9, 66.4, 62.3, 60.8, 43.7, 40.1, 33.9, 30, 17.4, 14.3, 7.7, 44.6, 191.9, 172.1, 143.7, 139.2, 132.8, 128.2, 115.5, 112.6, 104.9, 99.7, 91.1, 87.5, 77, 73, 68.8, 58.4, 58.3, 50.9, 36.1, 32, 21.1, 19.2, 12.9, 9.9, 1.5, 147.1, 135.5, 112.9, 111.6, 103.3, 94.5, 88.2, 83, 74.7, 68.6, 60.6, 59.5, -617.4, -1717.5, -997.2, -278.6, 10.1, -49.4, -59, -45.8, -12.9, 59.1, 33.7, 0.5, -31.4, -19.1, 7.8, -7.4, -29.5, -30.3, -1.4, -1.2, 23.7, 22.7, -29.6, -22.4, -10.6, -19.5, 5.2, -6.4, -3.9, 1.5, 2.1, 7.4, 5.5, 2.4, 4.8, 3.2, 4.7, 12.9, 8.2, 4, 6.5, 5.3, 8.8, 7.7, 6.6, 6.4, 10.6, 7.6, 1.7, 7.3, 9.9, 6.4, 4.8, 5.9, 12.6, 13.7, 12.1, 10.3, 9.9, 12.6, 13.1, 9, 6, 10.6, 11.9, 6.6, 6.9, 12.8, 10, 6.1, 10.3, 2.5, -4.2, 1, 5.4, 4.1, 6, 6, -0.7, 0.6, 6.1, 7.9, 8.2, 12, 4.2, 8.1, 10.3, 6.8, 8.8, 12.2, 2.2, 10, 10.4, 7.8, 10.8, 5.7, 6.9, 11.1, 12.1, 6.7, 6.7, 791.9, 796.7, 148.7, 68.7, 39.4, 2.1, 16, 167.4, 127.3, 75.7, 47.1, 23.5, 21, 77.7, 73.5, 43.6, 14.6, 27, 10.5, 9.6, 1.1, 3, 6.7, 8, 6.5, 7.3, -0.1, 13.5, 7.2, 9.8, 6.8, 11.5, 5.8, 7.3, 3.5, 6.6, 8.6, 9, 7.4, 8.5, 5.2, 7.1, 7.8, 7.8, 9.3, 9.6, 7.1, 11.7, 10.1, 4, 6.4, 8.6, 9.8, 9, 11.8, 8, 11.8, 9.4, 10.9, 9.4, 7.5, 14, 8.3, 7.9, 8.1, 13.2, 5.9, 4.5, 8.8, 10.9, 12.5, 8.3, 6.9, 5.5, 6.5, 9.5, 12.3, 11.7, 11.7, 10.1, 7.4, 5.9, 5.7, 8.6, 9.4, 11.8, 12.7, 12.6, 11.1, 12.2, 5.7, 9.8, 5.7, 5, 12.5, 12.3, 12.2, 5.2, 10.5, 8.4, 9.8, 6.7, 9.3, 9.2, 12.6, 13.6, 12, 7.5, 12, 8, 5.4, 6.9, 7.6, 10.7, 10.5, 8.3, 6.2, 10.1, 9.2, 4.9, 7.9, 8.9, 5.2, 10.7, 6.1, 7.4, 9.5, 10.7, 6.9, 12.5, 9.6, 13.2, 11.3, 10.7, 7.7, 3, 8.6, 12.3, 6.6, 8.3, 8.1, 10.2, 12.2, 4.9, 20.3, -1.5, 12.5, 10, 4.1, 11.2, 5.7, 6.6, 15.3, 6, 7.3, 4.5, 7.6, 10.1, 12.2, 6.5, 3.9, 13.1, 5.2, 4.1, 3.5, 8.4, 13, 6.9, 9.7, 9.9, 11.7, 12.6, 9.1, 5.6, 8.2, 7.4, 1.2, 9.4, 11.8, 9.4, 7.2, 4.2, 10.3, 8.9, 9, 10.3, 6.3, 5.5, 10, 6.2, 8.8, 16.9, 3.8, 2.7, 6.3, 6.1, 1.9, 3.5, 3, -0.1, 3.5, 9.9, 5.3, 0, 11.5, 4.7, 6.5, 5.8, 1.7, 6.4, 3.8, 2.3, 0.6, 5.5, 8.1, 7.7, 2.3, 8, 9.4, 6.9, 5.7, 12.3, 8.2, 8.2, 7.9, 6.8, 6.5, 9.4, 9.7, 10.5, 5, 13.6, 12.4, 5.8, 0.2, 11.1, 12.4, 4.5, -3.6, 6.7, 14.7, 13.5, 10.2, 9.9, 14.8, 16.5, 11.2, 8.2, 10.3, 11.3, -6, 1.1, 1.2, 10.3, 11.7, 10.3, 12.1, 13.2, 7.9, 7.2, 11.1, 12.8, 12.7, 12.4, 12.7, 6.8, 11.7, -13, 1.5, 13.4, 14.7, 11.6, 13.5, -1.9, 16.6, 8.2, 20.1, 7.1, 6, -2.6, 7.2, 11.4, 6.6, 10.3, 10.5, 6.6, 11.6, 7.3, 9.4, 9.6, 12, 12.4, 6.1, 8.3, 7.5, 9.2, 8.8, 9.1, 11, 6.2, -873.7, -491.3, -51.9, 12.6, -10.6, -21.4, -0.6, 5.9, -15.9, -22.1, -23.3, 11.2, 36.4, 72, 103.7, 72.7, 30.6, -1.1, -21.6, 4.8, -76.4, -39.6, -17.5, -29.1, -31.4, -14.8, -21.3, -1.5, -11.6, 3.9, 12.2, 7.8, 9.4, 15, 12.8, 9.3, 8.5, 11.6, 13.2, 11.6, 12.4, 8.7, 12.4, 10.2, 12.6, 14.1, 10.6, 11, 13.9, 3.3, -8.4, 5.5, 3.4, 3.4, 4.3, -1.8, 5.2, 8.3]
Loading
mixed_venus_b2500/eff — settle 247.2→227.9s, overshoot 316.9→168.8W, RMS 37.8→39.8W
Metric Base Head Δ
settle_mean_s 247.2 227.9 -8%
settle_p95_s 600.0 524.8 -13%
unsettled_events 7 7 =
overshoot_mean_w 127.1 110.9 -13%
overshoot_max_w 316.9 168.8 -47%
band_crossings_per_h 648.0 677.33 +5%
steady_rms_w 37.8 39.8 +5%
mean_abs_grid_w 47.9 52.4 +9%
avoidable_import_wh 48.8 50.0 +2%
avoidable_export_wh 21.9 27.6 +26%
battery_travel_w_per_h 131474.0 137352.0 +4%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 90
    y-axis "W"
    line [300, 103.5, -21.1, -10.4, -5.1, -6.4, -26.4, 7.4, -8.8, -25.6, -7.7, -10.2, -20.5, -2.8, -15.9, -10.2, -8.5, 24.1, 11.5, -15.7, -12.3, -30.5, 7, -16.7, -15.1, -19.5, -4.1, -21.3, -14.5, -31.7, 1.1, -20.6, -13.2, -22.2, -0.7, -12.9, -15.8, -16.9, -10.5, -18.2, -7.7, -19.7, -12.4, 1, -1.4, -3.8, -1.9, 17.3, -22.7, -2.3, -27.2, -13.1, -2.3, -7.7, -28, -21.7, -4.6, -14.2, -25.9, 0.4, -5.3, -19, -9.7, -9.3, -10, -9.2, -26.7, 7.9, -7.7, -24.5, 0.9, 10.6, -16.8, -22.6, -32, -14.7, -10.6, -16.5, -12.8, -12, -17.2, -19.6, -13.1, -17.9, -8.4, -18.9, -16.1, -12.6, -8, -31.5, 3.1, -14, -1.3, -6.2, 36.1, -24, 3, -9.8, -10.9, -15.6, -22.4, -0.8, 13, -18.3, -12.1, -29.4, 5.7, -19.8, -1.6, 26.1, -14.6, -14.9, -11.4, -16.4, -18.5, -12.2, -19, -15.8, -10.5, -1.3, -18.7, -24.3, 1.6, -6.7, -22.8, -10.5, -16.1, -2.6, -2.8, -23.7, -15.8, -10.6, -21.5, -22.8, -3.8, -17.1, -6, -20.1, -22.1, -4.7, -23.7, -9, -14.3, -10, -8.4, -17.3, -12.6, -10.4, -1.4, -2.5, -13, -28.9, -8.5, -15, -16.9, -10.2, -5.4, -17.5, 1.9, -31.7, 8.3, 8.8, -9.2, -4.8, -5.3, -4.7, -0.7, -11.4, -7.5, -10.8, -4.6, -4.9, -23.7, -5.3, -11.3, -19, -13, -10.1, -10.8, -18.4, -5.1, -23.4, -4.6, -14.5, -9.3, -10.9, -17.1, -16.1, -6.7, 9.6, -13.2, -23, -2.9, -0.3, 28.8, -7.1, -18.6, -0.7, -18.3, -8.4, -15.9, -2.9, -6, 18.3, 26.7, -14.6, 1986.7, 1777.8, 1038.3, 61.2, 104.5, -28.8, 113.4, 56.1, 13.1, 47.9, -28.3, 65.3, -13.4, 49.5, -9.3, 44.4, -14.2, 47.3, 20.1, 21.5, 38.9, 0.7, 41.2, 10.8, 24, 39.5, -3.9, 36.6, 15.7, 6.7, 42.7, 4.2, 22.3, 26.5, 17, 13.6, 45.3, -6.4, 41.7, -2.8, 37.9, 11.9, 23.8, 23.8, 16.1, 23.5, 43.2, 0.5, 39.2, 9.4, 30.5, 20.3, 17.2, 6.2, 34.9, 10.3, 7.5, 7.3, 9.7, 10.4, -1745.9, -128.3, -53.8, -305.2, -355.8, -188.1, -90.9, -5.8, -27.8, -5.8, -15, -12.3, -9.3, -13.7, -21.4, -35.8, -3.8, -18.5, -18.6, -0.5, 1.1, -42.3, -27.1, 7.5, -6.4, -19, -6.9, -19.9, -5.3, -8.2, -32.5, -6.2, -7.9, -15.3, -14.7, 50.5, 47.8, -22.6, -18.7, 48.8, -5.3, 41.5, 7.5, 71.8, 33.3, -1.4, 3.7, 14, 18.2, 32.7, 18, 72.3, -28.3, 66.5, 8.9, -21.2, 11.6, 2.8, -2.6, 56.5, 26.3, -16.9, 19.2, 75.4, -3.3, -7.3, 59.3, 9.5, 36.7, 2.2, 11.2, -10.8, 53.8, 22.7, 9.9, -3.5, -6.8, 22.3, 56.5, 21.7, -2.4, 61, 10.6, 44.5, -4.3, 12.5, 63.8, 10.9, 106.1, -12.8, 102, 8.7, -8, 39.7, 8.6, 30.5, 1, 43.6, 91.5, 2.3, 90.4, 38.1, -27.6, 51.9, 14.1, 28.6, -7.2, 9.5, -8.5, 43.3, 22.3, 41.3, 18.9, 61.1, -5.3, 92.8, -12.5, -14.2, -25.3, 40, 16.3, 65.3, 16.1, 44.1, 24.6, -5.3, -7.1, 104.9, -9.7, 1, 2, 51.5, -10.3, 13.9, 69.9, -1.9, 43, 21.4, -0.1, 22.7, 4.6, -0.4, 79.8, 41.5, -4.3, 42.8, 12.5, 25.8, -22.8, 63.8, 0.6, 24.6, -12.1, -8.7, 85.8, -2.1, 29.6, 95, -8.3, 50.5, -3, 65.5, 16.9, -3.5, -42, 35.1, -19.6, 56.6, -3.2, 32.3, -5.3, 105, 31.2, 30.6, 0.6, 60.4, -1.5, 16.2, 83.3, -21, 109.1, 31.3, 3.4, 9.3, -2.8, 54.5, -20.8, -15.7, -17.3, -20.5, 100.8, 29.7, 5.1, 33.5, 8.9, 80.3, -6, 28.7, 4.9, 4.6, 23.3, 7.9, 38.9, 11.9, 41.7, 17.5, -2.9, 41.9, -15.8, -2.5, 115.2, -20, 60.8, 23.7, 1.4, 26.4, -2.1, 41.4, -24.7, 55.4, -2.5, -23.1, 61.1, 88.9, -29.9, -12.3, 86.1, 4.7, 8, 0.5, -9.7, 17.1, -10.4, 25.7, 84.8, -21, -15.6, 50.4, -14.2, 49.7, 56.5, 44.8, 34.2, 2.6, 31.4, -27.7, 57, 64.9, -6.1, 21.2, 10.3, -0.7, 85.2, 1.6, 2, 56.6, -5.1, 95.2, 20.7, 16.9, 61.1, -1.4, 70.4, -3, -5.7, 11.8, 46.7, 19.7, 8.8, 2.8, 5.2, -11.3, 55.4, -14.1, -12.2, 38.3, 22, -15, 1050.4, 1353.4, 811.8, 204, 8.8, 37.8, -4.4, 38, -6.6, 20.3, 5.8, 22.3, 44.8, 7.5, 21.9, 25, 21.3, 9.1, 38.7, 14.7, 15.3, 45.5, 9.7, 17.5, 12, 5.9, 13.7, 24.9, 23.3, 3.5, 44.9, 11, 20.6, 26.7, 18.2, 18, 27.5, 9.3, 7.9, 11.9, 13.9, 17.7, 16.3, 17, 16.1, 17.8, 15.7, 15.2, 14.4, 12.9, 16.5, 16.4, 17, 17.2, 18.9, 15.6, 14.9, 17.3, 16.9, 14.3, 15.1, 13.8, 14.8, 15.6, 11.2, 17.3, 15.3, 14.3, 14.3, 16, 18.4, 14.6, 15.6, 16.5, 17.1, 17.8, 15.4, 15.2, 15.5, -1240.7, -102.4, -120.8, -7.2, 19.4, -15, 83.4, -0.2, 39.7, 28.3, -2.1, 20.2, 10.6, -11.2, -31.6, 29.7, 7.7, 2.6, 64, 3, 26.7, 53, -15, 1.2, 72.2, 28.7, 46.9, -11.5, 12.6, 19, 19.4, 27.1, 18, 71.4, 9.7, 21.9, 31.4, 10.8, 19.1, 56.5, 4.4, 24.9, 18.7, 3.6, 63.7, 30.6, 9.4, 30.8, -0.8, 48.5, 1.5, 7.7, -5.2, 16.5, 34.2, 1.9, 32.2, 6.6, 63, 970.5, 1265.5, 686.5, 61, -3.2, 40.5, 1.6, 21.9, 30.9, 4.4, 37.9, -11.5, 54.1, -17.2, 55.8, -1.5, 26.3, 24.7, -15.3, 55.4, -5.5, 32.1, 23.5, 2.3, 41.2, 19.3, 23.1, 38.8, 1.3, 32.6, 11.6, 23.6, 32.5, 1.5, 39, 14.4, 30.2, 26.9, 7.6, 8.5, 30.1, 6.6, 22.2, 20, 7.2, 8.3, 6.3, 17.1, 16.9, 16.4, 21.3, 15.7, 17, 14.8, 17.6, 18.3, 14.9, 19, 14.4, 17.1, 17.4, 14.8, 14.8, 19, 15.4, 16.7, 13.3, 14, 15.1, 16.9, 18, 15.9, 15.8, 15.1, 14.4, -983.3, -329, -124.6, -85.9, -0.3, 44.3, 35.5, 42.6, -26.9, 34.4, 1.1, 47, -14.8, 63.1, 48.2, 8, 27.2, -3.9, 15, 16.5, 4, 24.8, -4.5, 11.5, 14.2, 0.6, 34.6, 16.7, 9.1, 65.3, 11.2, 33.8, 5.7, 29.1, 3.1, 55.8, 48, 1.9, 31, 38, 9.6, 16.4, 19.8, 9.6, 31.6, 23.6, 11.4, 29.8, 12.5, 6.9, 5.4, 19.7, 13.1, 18.6, -2, 24.3, 16.8, 14.9, 1.4, 4.3, 17.6, 29.5, 17.2, 1.6, 1010.6, 1287.8, 709.5, 90.9, 8.8, 0.6, 36, -4.3, 35.6, 15.1, 20.7, 34.4, -3.4, 38.6, 12.2, 27.9, 12.9, 9.1, 43.9, 2.5, 19.6, 28.3, -3.6, 48.2, 20.8, 24.9, 34.6, -2.9, 33.6, 12, 14.6, 6.6, 25.8, 12.4, 28.8, 8.1, 6.2, 15.6, 17.8, 15.8, 12.9, 13.3, 16.6, 18.3, 18, 14.5, 13.4, 14, 19.5, 13.2, 14.8, 14.2, 14.1, 18.5, 19, 15.9, 12.7, 14.6, 14.4, 15, 13, 15.4, 12, 13, 14.9, 14, 15.2, 16.6, 17.2, 17.6, 13.1, 14.5, 14.4, 17, 13.3, 13.5, 12.9, 16.5, 17.7, 14.7, -979.4, -372.6, -176.2, -246.9, -187.3, -53.3, 1.1, -18.4, -2.3, -12.7, -16, -14.9, -25.3, -5.7, -0.4, -19.1, -34.3, 8.6, -27, 2.3, -1.6, 20.6, 1.6, -15.1, -8.4, -25.6, 2.7, -9.9, -14.9, -26.1, -18.1, -13.3, -20.5, 0.1, -22, 1.5, 27.8, -11.2, -7.1, 14.9, -27.6, -24, 0.3, 0.6, 12.2, 39.8, -36.1, -2.6, -9.7, -12.8, -16.3, -20.6, -11.1, -9.6, -11.1, 0.6, -22.5, -13.5, 2.7, 1.4, 1408.8, 1025.3, 443.7, 39.9, -9, 43.5, 0.1, 23.8, 29.4, -10.6, 37.5, 5.9, 19.4, 26.9, 7.7, 25.7, 22.9, 18.9, 10.8, 10.8, 9.7, 8.6, 9.8, 10.2, 9.7, 12.1, 17.7, 18.3, 14.5, 16.5, 17.1, 12.4, 16.4, 14.6, 17.5, 19.9, 16.7, 16.3, 18.5, 16.5, 15.6, 14.7, 15.1, 19, 12.8, 17.7, 16.7, 16.7, 14.4, 19, 15.3, 17.3, 17.1, 14.6, 14, 15.1, 15.5, 16.1, 17, 16.1, 16.4, 15, 18.4, 16.2, 15.9, 15.5, 17.6, 14.4, 16.3, 15.1, 15.8, 14.6, 16.1, 15.5, -974.1, -356.4, -159.7, -256.7, -169.6, -78.2, -1.1, -14.3, -0, -21.3, -17.3, -13.6, -21.2, -7.4, -14.1, -25.3, -8.3, -15.4, -12.9, -7.2, -3.7, -11.7, -29.3, -7.9, -8.6, 14.5, -6.7, -15.3, -15, -12.9, -28.2, -2.7, -28.2, -2.5, -15.9, -16.7, -23.3, -14.5, -10.4, -16.4, -4.1, -28.6, 5.8, 18.7, -29.9, 8.1, -22.3, -11.9, -11.2, -20.1, -9.9, -10.9, 20.2, 4.4, -4.8, -7.6, -21.2, -2.5, -6.4, -13.4, -9.1, 31.8, -9.8, 2.2, -9.8, -20.7, -8.4, -10.1, -4, -5.8, 11.2, -15.1, 13.5, 33.8, -7.8, -2.9, -38.7, 2.9, -6.6, -36.5, -13.6, -12.4, -0, -16.2, -10.8, -24.5, -4.9, -11.4, -5.1, -22.3, -17.2, -7.8, -3.6, 27.6, -10.8, 16.5, -16.4, -26.4, -12.2, -2.5, 18.9, -11.1, -16.2, -14.4, -5.4, -24.9, -21.2, -12.1, -3.1, -9.1, -0.9, 20.7, -14.5, 25.9, -3.4, -10.6, -29.9, -9.5, -21.2, -10.7, -18.1, 2.5, 28.7, -30.4, -4.4, -19.2, -9.4, -11.5, -12.5, -8.1, -15.5, -26.5, -1.9, 10.3, -10.2, -31, 2.9, -0.7, 27.9, -7.8, -15.5, -16.5, -32.9, 10.3, -23.6, -8.5, -7.5, -17.7, -6.5, -17.3, -0.9, -21, -23.4, -21.1, -9.7, -16.2, -21.4, -24.6, -10.3, -13.3, -7.2, -28.7, -9.1, -12.2, -13.6, -12.9, -35.7, 46.8, 5.4, 37.3, 68.2, -13.4, 91.5, 5.1, 47.3, -2.5, 13.9, -34.8, 89.5, 40.3, 15.2, 18.2, 8.7, 7.4, -13.6, 80.4, 19.6, 40.4, 27.5, -6.9, 35.7, -10.6, 3.2, 21, 101.9, -9.5, -15.1, 109.9, 1.7, -5.1, 91, 17.4, 25.4, -5.9, 10.7, -22.6, 47.7, -6.7, 95, 4.4, 16.9, -16.2, 47.2, 72, 1.4, -12.3, 6.8, 66.2, 65.3, 1909.2, 1530.5, 927, 206.3, 60.2, 99.4, -14.5, 66.9, -18.6, 56.7, -20.6, 46.3, -14.6, 38.6, 5.6, 25.9, 39.3, 1.5, 47.1, 15.5, 29.5, 37.7, -5.1, 39.1, 11.2, 16.1, 36.1, -12.4, 45, 15.5, 13.7, 42.6, -4.3, 45, 20.8, 25.9, 41.9, 4, 32.3, 10.5, 28.1, 9.1, 8.8, 34.8, 2.8, 42.1, 9.3, 21.6, 42.3, -7.4, 51.1, 21.6, 1.8, 46.9, 5, 41.2, 6.7, 52.9, 2.3, 23.4, -1324.9, -520.7, 228.8, 19.1, -295.8, -124.4, -32.3, -16.9, 61.3, 17, 24.1, -5.1, -2.7, 15.8, -16.3, -8.7, 7.6, -25.5, 14.9, 11, 42.1, 23.8, 105.7, -9.5, 58, 13.9, -6.5, 62.7, -5.2, 26.3, 36.5, 40.3, -4, 42.8, 12.7, 56.7, 1.6, 4, 16.9, -3.7, 7, 20, 6.8, 52.7, 5.9, 6, -8.5, 28.7, 14.6, 2, 3.8, 37.1, 9.5, 19.8, 35.7, -5.5, -5.4, 46.6, -8.3, 10.9, 105.1, -20.6, 0.8, -9.3, 95.5, 55.4, 56, 87, -8.7, 91.2, 19.5, 28.7, -3.5, 18.3, -18.8, 71.7, -0, 95.4, 11.3, 0.6, -2.9, -6.8, 29.7, 59.4, 19.2, 2, 28.9, 11.3, 8.9, 38.3, 32.5, -12.7, 65.8, 11.1, 52.9, 17.5, 70.4, 43, 30.9, 49.4, -2.7, 5.9, 41.9, 19.4, -15.7, 29.1, -11.4, -10.9, 72.4, 60, -12.9, 60.8, -2.5, 41, -16.8, 74.4, 19.6, -8, 51.5, 61.6, 11.7, 100.7, -14.4, 37.3, -34, 1044, 882.8, 414.8, -12.9, 54.5, 0.8, 21.2, 29.8, 7.1, 43, 12.8, 13.1, 45.1, 12.3, 24.3, 4.8, 17.8, 34.5, -5, 44.1, -17.3, 54.9, 5.9, 25.7, 28.4, -12.9, 51.8, -13.2, 26.6, 9.5, 7.5, 43.9, -9.8, 39.5, -8.9, 26.7, 7.2, 1.2, 36.5, -17.6, 37.2, 6.5, 22.4, 20, 13.9, 15.6, 15.8, 13.7, 15.8, 15.1, 13.7, 14.3, 16.2, 13.8, 12.3, 14.2, 15.6, 12, 14.1, 13.8, 16.5, 15.3, 14.2, 11.9, 16.9, 14.7, 14.3, 13.7, 14.8, 16, 14.6, 12, 17, 12.9, 13.5, 15.7, 12.2, 17.1, 14.9, 14.9, 14.1, 17.1, 13.6, 12.4, 12.8, 11.2, 12.9, 14.7, 14.9, 20.5, 13.8, 16.4, 14, 16.2, 15.8, 15.1, 11.7, 15.7, 13.3, 15.8, 15.7, 14.6, 9.5, 15.5, 15, 15.8, 14.3, 14.9, 13.5, 15.7, 16.5, 13.6, 13.8, 16.3, 16.5, 16.3, 14.4, 16.1, 14.9, 14.7, 14.3, 15.6, 14.6, 14.9, 13, 14.5, 15.2, 15.2, 15.5, 15.5, 12.9, 14.4, 12.5, 13.2, 14.7, 14.4, 16.4, 12.6, 12.1, 11.8, 11.5, 13.6, 12.1, 16.5, 12.9, 13.6, 16.3, 12.3, 10.8, 12.2, 15.7, 15, 17.8, 12.9, 15, 12.3, 13.9, 11, 13.3, 16.1, 15.2, 14.4, 13.9, 13.8, 17.6, 14.3, 13.3, 18.5, 17.7, 15.8, 12.6, 21, 13.6, 13, 14.4, 15.2, 14.6, 14.4, 11.2, 13.5, 15.5, 13.8, 15, 15.6, 12, 12.6, 15.6, 13.3, 15.3, 11.9, 11.1, 14.4, 17.6, 16.2, 13.9, 18.8, 12.8, 15.9, 17.2, -475.7, -535.8, -64.1, 3.8, 18.7, -10, 23.5, 7.3, 62.8, 38.8, -25, 30.3, 17.2, -0.3, 27.9, -4.7, 1.1, 11.2, -2.4, 72.5, 24.9, -7.4, 17.9, 29.6, 21.2, 14.1, -6.1, 3.8, 24.9, 28.8, 11.8, -11.5, 39.7, 2.9, 22.6, 15.8, -13.7, 31.6, -8.9, -10.5, 14.7, 15.6, 11.3, 37.2, 12.3, 24.6, 75.5, 18.7, 36.4, 10.8, 28, 24, 27.6, 63.2, 9.8, 9.8, 1.1, 27.8, 6.2, 51.1, 25.5, -0.9, 23.9, 25.9, 22.2, 9.4, 30.8, -2, 50.4, -10, 28.8, 11.3, 16.1, 26.2, -4, 29.9, 20.3, 71.9, 7.2, 7.9, 20.8, 28, 32.5, 4.6, 46.6, 22.9, 42, 4.5, 38.2, 4.4, 88.7, 11.9, 42.6, 2.9, 33.9, 29.5, 88.5, -12.5, 39.2, 2.8, 10.7, 18.6, 21.4, 14.2, 44.7, 7.1, 18.9, 30.1, 32.9, 6.2, 39.5, -4.2, 52.5, 27.3, 18.2, 1.9, 4.4, 15.7, 2.6, 43.4, 2.2, 14.1, 3, 41.1, -0.4, 21.1, 75.9, 5.1, 23.1, 19.6, 1.8, 35.6, 5.8, 29, 91.6, 26.3, -2.6, 40.1, -9.5, 57.5, 1.1, 27.3, 5.4, 19.9, -14.1, 32.3, 2.7, -27.6, 53.6, 7.2, 67.9, 14, 30.1, 20.5, 28.7, -8.5, 63.7, 5.9, 33.4, 4.6, -4.7, 50.1]
    line [300, -1.6, -24.3, 4, -2.1, -5.8, -27.3, 8.5, -7.7, -11.2, -16.7, -22.7, -12.6, -12.4, -30.8, -19.1, -10, 24.9, 5.2, -16.4, -12.3, -31.2, 8.6, -16.4, -14.7, -19.5, -4.1, -21.3, -13.7, -31.1, 1.1, -20.6, -21.1, -8.6, -9.4, -12.9, -9.4, -24.6, -2.9, -21.1, -6.7, -20.1, -15.3, 1.4, 38.7, -24.3, -3.3, 46.6, 10.7, -7.8, -26.2, -14, -2.3, -8.7, -27, -21.6, -4.9, -14.7, -26.3, 1, -5.1, -18.8, -9.8, -9.8, -10.1, -2.4, -7.3, -8, -6.9, -26.8, 2.9, -8, -21.4, -16.3, -29, -13, -20.4, -13.6, -15.7, -10.4, -19.6, -19.7, -13.1, -18, -8.4, -18.9, -16.2, -12.7, -8, -31.4, 2.9, -13.9, -1.8, -5.7, 43.3, 61.1, 17.8, -10.6, -10, -16.1, -22.3, 2.1, 14.3, -5.3, -8.3, -27, 9.6, -20.6, -0.7, 57.5, 40.3, 18.2, -23, -16.1, -18.3, -12.6, -18.5, -15.2, -9.9, 0.3, -16.2, -23.9, 4.2, -8.1, -22.8, -10.5, -16.1, -0.2, 0.4, -23.8, -16.6, -11.4, -18.6, -22.9, -3.6, -17.1, -8, -19.8, -21.9, 2.8, -19.8, -2.4, -13.9, -9.1, -5.2, -25.3, -10.6, -17.7, -1.5, -1.8, -13.4, -29.2, -8.9, -15.3, -17.3, -10.5, -8.3, -1.4, -26.3, -22.1, 4.9, -11.6, -12.4, -17.6, -14, -2.5, -6.6, -24.6, -5.6, -9.5, -4.8, 1, -26.1, -14.6, -0.5, -19.5, -12.3, -9.4, -19.4, -7.5, -3.3, -23.8, -3.5, -13.8, -9.2, -11.2, -16.6, -16, -5.5, 12.6, -15.1, -19.1, -11.6, -3.5, -10.5, -23.3, -19.1, -6.7, -12.3, -18.1, -15.6, -4.3, -5.6, 17.7, 35.8, -7.3, 1965.1, 1704, 1285.7, 636.3, 269.1, 115.5, 1.6, -1.5, 3.4, 5.1, 12.7, 44.9, 14.4, 37.5, 13.5, 19.9, -5.9, 44.8, 25.7, 12.1, 32.5, 18.5, 13, -30.6, 54.7, -17.2, 57.4, -18.5, 52.2, 10.3, 16.8, 39.3, -7.9, 44.7, 11.7, 18.3, 40.5, -2.2, 39.7, 9.4, 15.6, 42.1, -2.1, 36.3, 12.1, 19.1, 41.6, -6.5, 38.8, 9.4, 18.9, 32.4, 1.1, 14.3, 17, 20.5, 10.2, 9.9, 12.4, 9.3, -1943.7, -1233.3, -461.9, -353.3, -258.8, -217.6, -103.9, -5.5, -29.6, -5.2, -15, -12.4, -9.1, -13.5, -18.6, -37.2, -3.6, -18.2, -18.7, -12.2, 1.8, -47.5, -27.2, 7.3, -6.5, -18.9, -6.9, -20.1, -5.4, -8.3, -32.7, -6.4, -8, -15.4, -14.6, 47.4, 20.4, -5.5, 30.6, 3.5, 1.8, 42.5, 27.3, -1.1, 91.9, -7.9, 35.9, 38.6, 13.4, 30.9, 11, 50.7, -16.1, 10.3, 17.1, -41.1, 48.3, -7, -16, 63.8, 21.6, -19.9, 19.4, 75.8, -3.8, -7.1, 58.8, 9.7, 36.6, 1.1, 10.6, -12.9, 52.6, 17.4, 14.9, -5.2, -22, 21.7, 53.6, 19.3, 3, 57.7, 9.7, 44.5, -4.3, 12.5, 45.8, 1.4, 115.3, 44, 2.7, 11.1, 17.5, 35.2, 80.9, -16.9, 12.2, 42.7, 64.5, -27.5, 63.7, -16.6, 8.9, 29.6, 47.8, -0.3, 20.4, -7.5, -17.6, 57.2, 13.5, 61.4, 7.4, 50.9, 2.2, 62.9, -10.9, -19, -25.5, 41, 19.9, 48.5, -29.2, 20.3, 54.6, -7.4, 32.4, 73, 5, 72.1, -5, 40.5, -0.5, -17.2, 100.3, -20.9, 47.4, 17, 50.3, 12.6, 21.3, 1.8, 22.1, 95.8, -16.2, 28.5, 19.5, 67.1, 1, 30.8, 29.8, 39, -9.9, -7.6, 85.4, -1.3, 27.2, 96.7, -13.5, 53.9, -5.5, 67.1, 16, 4.8, 8.8, 8.1, 10, -11.4, 36.8, -3.9, -3.4, 100.6, 10.9, 36.1, -4.4, 63.4, 1.8, -12.5, 101.5, -10.2, 102.9, -7.6, 37, -21.1, 14.4, 23.4, 0.6, -0.6, 64.6, -3.1, 78.6, -19, 87.8, -12.4, -4.1, 91.1, -8.2, 58.2, 30.7, 5.3, 27.6, 5.7, 8.6, 12, 41.8, 17.6, -2.8, 42, -21.2, 21.3, 104.5, 6.6, 45.7, 7.2, 40.2, 19.7, -12.5, 58.7, -14.3, 22, 16, 3.5, 20.2, 33.1, -23, 12.8, 58, 28.3, -2.1, 36.5, -11.3, 15.5, -5.4, -2.8, 111.8, 9.5, 3.5, 92.3, -21.2, 50, 12, 65, 42, 36.9, 48, -29.2, 30.1, 90.7, 8, 6.8, 24.4, -6.2, 88.5, 3.1, 24.9, 45.9, -0.5, 63.8, -25.2, 3.7, 37, 13.6, 33.9, 14.6, -7.9, 18.8, 38.3, 7, 21, 1.7, -11.8, 71.8, 33.9, -21.6, 47.6, 9.9, 63.3, 15.3, 1055.1, 1410.8, 1082.4, 505.7, 208.9, 71.6, -18, 103.2, 6.8, 53.4, 36.4, -17.6, 45.2, -3.9, 17.8, 22.3, -4.5, 37, 3.3, 25.9, 11.6, 25.6, 9.5, 7.1, 6.8, 8.2, 12.3, 8.4, 9.3, 8.1, 9.7, 10.1, 10.5, 11.8, 7.5, 10, 9, 9.7, 6.3, 5.3, 7.3, 11.1, 9.6, 10.4, 9.5, 11.2, 9.1, 8.5, 22.9, 13.8, 9.9, 9.8, 10.4, 10.6, 12.3, 9, 8.3, 10.7, 10.3, 7.7, 8.4, 7.2, 8.2, 9, 4.6, 10.7, 23.7, 11.8, 26.6, 9.4, 11.8, 7.9, 9, 9.8, 10.5, 11.1, 8.7, 8.6, 8.9, -1441.7, -747, -164.6, -7.8, 18.7, -15, 82.7, 1.7, 5.4, 32.3, -1.2, 19.8, 10.3, -7.5, 34.1, 26.3, 19.6, 8.1, 63.3, 3.3, 27, 53.6, -14.3, 1.1, 71.9, 9.2, 98.7, 8.5, 10.9, 19, 19.7, 28.4, 18.4, 71.5, 9.8, 22, 31.4, 10.9, 19.2, 56.5, 4.5, 25, 18.8, 3.6, 50.4, 23.8, 11.7, 34.1, -2.4, 23.3, 6.8, 37, 8.1, 15.9, 34.3, 2.6, 32.9, 5.9, 62.6, 996.7, 1241.8, 761.4, -10.6, 38.7, 5.6, 35.7, -1.8, 41.1, 18.6, 8.9, 26.5, 21.3, 23.8, 46.3, 10.8, 23.8, 4.1, 5.3, 33.5, 9.7, 8.6, 7.9, 3.4, 7.7, 47.4, 2.5, 32.8, 15.1, 7.2, 48.3, 12.5, 24, 11.4, 15, 40.1, -1.9, 38.6, 11.1, 18.2, 39.9, -1.6, 39.4, 17.4, 17.2, 41.3, -11, 46.7, 8.4, 20.5, 42.8, 0.6, 37.8, 7.3, 17.7, 41.3, -13, 50.4, 16.1, 25.2, 45.3, 6.1, 35.7, 10.1, 24.5, 40.5, -8.3, 51.3, 19.4, -7.4, 33.9, -18.2, 29.8, 29.4, -4.4, -941, -1023.8, -209.3, -20.1, 14.4, 0.4, 48.5, 50.5, -23.5, 34.9, 1.2, 47.2, -14.7, 63.3, 48.3, 8.2, 27.4, -3.8, 15.1, 16.6, 4.1, 24.9, -4.4, 11.6, 14, 0.7, 34.7, 16.8, 9.2, 65.4, 11.5, 34.2, 6, 29.4, 3.4, 56.2, 48.1, 2.3, 31.4, 38.3, 9.6, 16.6, 20, 9.8, 31.8, 23.8, 11.5, 30, 12.7, 7.1, 5.5, 19.9, 13.3, 18.8, -1.9, 24.5, 16.9, 14.7, 6.9, 3.1, 16.8, 22.4, -7.4, -5.4, 1007.5, 1228.5, 653.6, -16.5, 67.5, -2.1, 24.2, -12.7, 35.6, 2.7, 20.6, 2.1, 17.6, 28.4, 4.9, 28.2, -17.4, 40.1, 6.3, 37.2, 2.4, 22.2, 18.8, 12.1, 37.4, 13.3, 19.3, 45.1, 3.1, 21.8, 36.1, -5.1, 41.6, 17.5, 33.5, -2.6, 43.4, 4.3, 35.2, 5.6, 17.5, 42.6, -1.4, 47.7, 17.7, 22.7, 42.6, 3.7, 42.9, 10.2, 20, 40.6, -2.2, 53.8, 4.9, 45.5, 17.7, 16.3, 39.9, -14.9, 53, 5.1, 39.1, 15.3, 22.4, 39.9, -3.4, 46.7, 15.4, 16.8, 38.7, 7.8, 34.4, 8.5, 10.6, 31.8, 3.5, -0.5, 0.7, 41.1, -972, -824.7, -319.5, -279.6, -182.8, -54.6, -7.4, -9.6, 0.6, -7, 2.7, -23.3, -21.7, 7.8, -7.9, -23.5, -26.5, 4.3, -26.6, 3.7, -1.7, 15.8, -2.1, -39.5, -8.5, -22.7, 5.4, -9, -11.4, -26.6, -19.8, -13.4, -41.2, -9.1, -22, 2, 59.2, 47.8, -3.1, 20.5, -27.9, -24, 0.3, -2.3, 15, 30.2, -33.2, -2.6, -9.6, -13.1, -16.6, -20.7, -10.8, -9.3, -10.7, 0.9, -23.1, -13.5, 0.3, -5.9, 1392.1, 980.6, 304.8, -8.3, 32.4, 11.3, 36.1, -0.8, 32.8, -10.7, 30.1, 15.6, 7.8, 45.9, 8.8, 47.6, 16.6, 18, 9.9, 9.8, 8.8, 7.6, 8.8, 9.3, 8.8, 9.2, 9.8, 10.4, 6.6, 8.6, 9.2, 4.5, 8.5, 6.6, 9.5, 11.9, 8.8, 8.4, 10.6, 8.6, 7.7, 6.7, 7.2, 11.1, 4.9, 9.8, 12.5, 27.6, 6.4, 11, 7.4, 9.4, 9.1, 6.7, 6, 7.2, 7.6, 8.1, 24.2, 5, 23.4, 3.1, 32.9, 8.3, 8, 7.6, 24.8, 1.2, 41.8, 14.6, 28.1, 42.9, 4.3, 35.3, -961.1, -779.8, -282.4, -244.7, -137, -46, -1.4, -13.3, -0.9, -21.4, -20.7, -13.8, -21.4, -8.1, -14, -26, -8.2, -15, -12.5, -0.2, -2.2, -10.3, -29.3, -7.9, -8.5, 14.5, -1.7, -15, -15.5, -13.3, -27.4, -3.3, -28.5, -2.8, -14.7, -20.1, -15.1, -13.3, -8.3, -13.5, -2.9, -24.2, 5.7, -13.8, -22.2, -0.3, -20.7, -7.8, -10.5, -20, -10, -10.7, 19.3, 67.4, 15.2, -13.3, -19.6, -2.5, -6.1, -13.7, -8.8, 59.3, -13.8, -3.8, -0.8, -23.3, -7.2, -9.7, -3.7, -5.5, 11.1, -14.8, 13, 40.8, -5, -6.9, -40.2, 2.9, -6.5, -35.8, -13.5, -12.3, 3.6, -19.9, -10.3, -24.8, 4.9, -10.6, -4.7, -21.2, -17, -7.7, -3.6, 41.4, -8.4, 28.1, -11.9, -15.3, -16.2, -2.2, 13.8, 27.6, -30.2, -11.4, -6.3, -23.7, -21.2, -11.6, -2.6, -9.2, 0.9, 36, -14.6, 47.8, 32.3, -6.5, -18.8, -10.6, -20.9, -10.9, -19, 6.5, -27.2, -7.1, -7.6, -9, -9.4, -9.3, -11.1, -8.5, -16.2, -27, -3.5, 6.3, -22.5, -28.8, 2.6, -0.9, 28.2, -4.9, -17.1, -13.5, -33.2, 7.5, -25, -7.9, -8.1, -15.7, -11, -16.9, -5.2, -10.1, -19.4, -19.4, -13.7, -14.6, -13.1, -31, -14.8, -13, -1.7, -27.4, -8.8, -11.9, -13.4, -11, -20.4, 28.3, 4.9, 24.5, 105.7, 45.2, 0.5, 45.5, -36.4, 29.5, 8.6, -18, 77.3, 7.4, 11.4, 35.5, -10, 26.7, -20.3, 82.1, 5.1, 52.1, 5, 8, 1.3, 31.3, -12.4, 77.1, 54.1, -15.3, -13.8, 110.5, 2.3, -5.1, 90.6, 17, 25, 4.6, -16.3, 26.8, 53.3, -0.6, 61.6, -6, 32.3, -15.9, 22.2, 50, 11.2, -9, 11.6, 37.4, 85.8, 1933.5, 1537.1, 666.9, -11.6, 89.2, -7.8, 68.1, -10, 52.7, -22, 55.6, -11.4, 51.1, -11.1, 37.2, 13.4, 13.7, 45.1, 0.7, 40, 15.5, 8.2, 34.6, 13.2, 13.7, 42, -7.4, 29.8, 15.8, 21.5, 38.3, -0.5, 30, 18.7, 23.2, 41.5, -1.5, 39.4, 15.2, 26.6, 26.6, -9.4, 54, -23.4, 43.7, 5.2, 24.1, 30.9, -4.4, 43.6, -13.8, 55.4, -12.5, 27.6, 35.1, -5.7, 38.2, 13.3, 26.7, 37.8, -1339.1, -1614, -516.5, -296.3, -211.6, -119.9, -23.5, 3.7, 23.9, 19.5, 35.6, -21.6, 17.8, 48.1, -3.5, -11.4, 7.8, -25.5, 14.6, 35.1, 27.2, 29.1, 64.8, -7.2, 56.2, 28.3, -28.8, 64.9, 6.1, 11.8, 37, 14.6, 33.6, -9.1, 39.1, 7.6, 16.1, 0.5, 1.6, 41.9, 7.2, 20.2, -8.5, 71.5, -1.8, 16.9, -19.9, 62.3, -15.3, 6.2, 3.5, 1.4, 35.8, 7.1, 40.3, -8.7, -4.1, 44.9, -11.7, 29.6, 91.1, 40.8, 60.6, 32.7, 15.1, 7.6, 114, 22, 6.5, 0.5, -18.3, 42.2, 0.3, 15.6, -10.4, 70.8, -0.1, 95.4, 11.5, 0.7, -1.4, -9.7, 32.4, 56.9, 40.1, 5.4, 72.6, 0.5, 40.1, 6.8, 11.3, 0.1, 99.2, 45.2, 14.9, 26.5, 94.4, 88.8, 21.5, 28, 16.7, -9.2, 73.5, 10.5, 73.3, 21.8, -25.6, -12.6, 67.8, -19.2, 71.3, 78.5, -7, 92.9, 41.7, 20.9, 74.2, -29.6, 99.3, 34.6, 12.6, 68.1, -5.9, 66.7, -21.8, 1073.4, 723.6, 257.7, -25.4, 63, -15.4, 41.2, 9.6, 16.2, 45.7, -6.7, 36.4, 21, 18.7, 44.2, -12.6, 47.5, 13.7, 15.6, 42, -2, 50.8, 17.1, 14.6, 6.2, 9.4, 23.9, 6.9, 4.5, 5.8, 6.7, 19.6, 15.9, 3, 10.9, 5.4, 9.2, 10.6, 9.6, 9.2, 4.3, 7, 8.2, 6.9, 44.7, 3.8, 44.7, 8.8, 23.1, 27.9, 0.6, 49, -8.1, 25, 5.6, 31.2, 38.5, -1.3, 38.3, 5.1, 18.2, 36.1, -0.7, 23.4, 6.4, 4.2, 3.8, 19.5, 13.8, 7.5, 9.9, 22.4, 30.9, 3, 33.6, 32.3, -14.6, 55.8, -1.5, 31.6, 27.6, -9.8, 41.7, 10.4, 7.9, 21.2, 22.7, 19.7, 16.5, 42.1, -0.4, 43.5, 12.7, 22, 37.5, 1.2, 20, 31.7, 6.8, 9.3, 9.2, 8.1, 3, 9, 8.5, 9.3, 7.8, 8.4, 7, 9.2, 10, 23.4, 4, 39.6, 13.8, 18, 44.7, -7.4, 44.9, 16.2, 14.6, 42.4, 4.1, 53.7, -13.9, 46.2, 5.7, 18.4, 36, -10.7, 44.7, 3.5, 42.9, 16.9, 21.4, 24.3, 14.8, 20, 5.5, 44.1, -3.2, 40.7, 12.9, 9.7, 41.5, -0.2, 38.5, 15.8, 25.6, 40.4, 6, 20.4, 26.6, 15, 9.5, 6.8, 8.4, 5.6, 7.8, 10.6, 9.7, 8.9, 12.2, 27.2, 12.1, 8.8, 7.8, 13, 12.2, 10.3, 7.1, 15.5, 8.1, 7.5, 8.9, 9.7, 9.2, 8.9, 5.7, 8, 10, 8.3, 9.5, 10.1, 6.5, 7.1, 10.1, 11.6, 28.7, 6.4, 5.6, 8.9, 12.1, 10.7, 8.4, 13.3, 7.3, 10.5, 11.7, -481.2, -929.7, -180.5, -6, 32.4, 14.2, 55.5, -1, 58.4, 71.3, 8.2, 41.1, 17.4, 0.3, 27.8, -5.2, 1.2, 11.3, -2.6, 68.9, 25, -7.3, 17.7, 29.5, 21.8, 15, -5.2, 4.6, 24.8, 29.7, 12.4, -11.6, 40.5, 3.8, 23.5, 14.4, 11.5, -8.5, 66.3, -5.1, 17.4, 17.1, 10.8, 36.7, 11.8, 24.4, 69.6, 16.7, 26.7, 10.5, 27.8, 23.7, 27.4, 62.9, 9.6, 9.6, 0.9, 23.6, 6.3, 50.8, 29.1, 13.6, 14.1, 19.5, 16.3, 8.5, 30.2, -2.4, 50.1, -10.4, 28.7, 10.9, 15.7, 26.5, -4.3, 29.8, 20, 71.5, 12.1, 37.9, 23.4, 32.1, 32.9, 5.3, 46.7, 23, 42.1, 4.5, 38.2, 4.4, 88.7, 11.9, 42.6, 3, 34, 29.6, 88.5, -12.4, 39.3, 2.9, 10.8, 18.7, 21.5, 14.3, 44.8, 7.2, 19, 30.2, 33, 6.3, 39.6, -4.1, 52.5, 27.3, 18.3, 1.9, 4.5, 15.8, 2.6, 43.4, 2.3, 14.1, 3, 41.2, -0.3, 21.2, 76, 5.2, 23.2, 19.7, 1.9, 35.3, 5.6, 29.1, 91.6, 26.4, -2.6, 43.5, -7.9, 56.8, 14, 16.3, 11, 20.5, -14.4, 35.1, 2.3, -27.9, 53.4, 7.3, 67.6, 13.8, 30, 20.5, 28.7, -8.5, 63.7, 5.9, 33.5, 4.6, -4.7, 50.1]
Loading
mixed_venus_b2500/fair — settle 151.2→113.0s, overshoot 2098.6→248.4W, RMS 25.0→24.9W
Metric Base Head Δ
settle_mean_s 151.2 113.0 -25%
settle_p95_s 334.9 207.3 -38%
unsettled_events 4 4 =
overshoot_mean_w 752.6 153.0 -80%
overshoot_max_w 2098.6 248.4 -88%
band_crossings_per_h 392.0 346.67 -12%
steady_rms_w 25.0 24.9 -0%
mean_abs_grid_w 49.6 52.7 +6%
avoidable_import_wh 59.6 61.9 +4%
avoidable_export_wh 15.1 17.4 +15%
battery_travel_w_per_h 87338.0 65603.0 -25%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 90
    y-axis "W"
    line [300, 72.9, 14.8, 8.8, 38.6, 15.4, 10.4, 41, -1, 43.8, 13.3, 8, 36.4, -11.3, 41.8, 10.9, 8.4, 43.8, -20, 47.3, 8.9, 12.3, 42.1, -10.2, 36.1, 11.3, 6.9, 35.9, -7, 24.5, 28.1, -9.5, 49.4, -11.3, 55.3, -2.3, 27, 25.4, 10, 21.4, 30.5, -6, 45.8, 0.5, 25.8, 39.1, -5.8, 39.5, -1.6, 30.9, 9.4, 1.5, 43.8, -1, 48.2, -21.7, 39.8, 12.2, 2.4, 47.8, -12.2, 35.9, 7.2, 7.1, 44.2, -13.9, 55.7, -20.7, 44.7, 8.4, 29, 28.7, 7.5, 17.3, 16.3, 13.6, 13.4, 17.7, 13.8, 19.3, 15.9, 14.9, 12.6, 16.1, 19.2, 15.5, 14, 15.8, 21, 19.7, 16.5, 11.6, 14.3, 18.8, 18.9, 17.3, 14.2, 19.6, 15.6, 19.5, 18.9, 12.3, 17.5, 16.3, 15.4, 17.8, 16.7, 14.4, 17, 16.6, 17.4, 16.2, 12.8, 16, 13.4, 16.4, 12.9, 13.2, 10.4, 16.6, 19, 15.3, 12.9, 16.2, 16.9, 15.4, 18.5, 16.2, 10.5, 19.1, 17.7, 15.8, 15.7, 15.6, 18, 14.6, 16.2, 15.9, 20.4, 18, 15.9, 15.2, 15.7, 16.2, 12, 15.6, 14.5, 14.4, 14.9, 16.1, 16.3, 17.3, 12.6, 19.1, 13.9, 17, 15.7, 15.2, 20.8, 16.5, 19.8, 14.8, 15.6, 15.3, 16.4, 14, 16.7, 14.4, 18, 11.6, 15.6, 13, 15, 14, 17.7, 17.7, 15.5, 17.6, 14.7, 16, 17.3, 14.8, 14.6, 16.4, 16.1, 14.7, 14.7, 13.1, 10.4, 13, 16, 14.9, 13.9, 13.5, 18.5, 17.7, 13.3, 13.8, 18.2, 15.8, 17.4, 15.2, 13.1, 17.4, 13.6, 13.3, 1969.1, 1529.9, 212.2, 23.9, -10.1, 24.2, -3, 30.8, -4.4, 34.9, 6.6, 41.8, 10.5, 25.7, -3.9, 41.4, -7.7, 43.7, -10.9, 43, 12.7, 21.6, 45, 2.9, 41.2, 15.6, 23.2, 30.3, 0.3, 40.1, 11, 22.4, 31, 0.9, 45.9, 14.4, 16.1, 38.6, 2.2, 32.2, 11, 28.3, 37.9, -1, 33.3, 10.4, 18.1, 40.1, -9.6, 40.7, 15.8, 25.4, 40.9, -12.8, 48.6, 15, 5.4, 27.8, 8.1, 21.3, -1744, 382.9, 1930.2, 1528.7, 38.2, 70.4, 34.4, 3.8, -48.1, 57.6, -27.6, -25.1, 43.9, -41.9, 34.5, -48.3, 64.4, 5.5, -1.9, 38.9, 3, 32.5, 9.9, 12.2, 14.4, 11, 14.1, 12.7, 10.3, 11.9, 12.4, 11.1, 11.5, 10.8, 12.9, 12.8, 13.1, 10.4, 10.9, 8.7, 12.3, 11.2, 13.4, 13.4, 10, 14, 9.6, 12.1, 10.1, 14.1, 14.4, 15.1, 11.9, 14.7, 12.9, 13.6, 8.6, 10.3, 13.9, 13.1, 11.2, 12, 13.6, 11.5, 9.7, 8.4, 12.8, 10.8, 13.3, 11.3, 13.6, 12.3, 10.3, 12.1, 15.8, 9.1, 9.6, 12.5, 10.9, 8.9, 10.8, 10.9, 12.3, 13.5, 9.6, 7.8, 6.7, 10.5, 12.2, 11.5, 10.7, 9.4, 13.2, 12.2, 8.8, 13.2, 12.3, 10.4, 11.1, 13.3, 9.6, 10.8, 9.6, 12.7, 13.1, 13, 11.9, 8.6, 8.5, 11.7, 13.6, 11.1, 10.8, 12.5, 15.3, 11.1, 13, 9.3, 12, 9.3, 15, 10.8, 10.5, 16.1, 10.9, 6.5, 10.2, 11.4, 14.8, 9.5, 12.5, 13.4, 9.9, 9.6, 11.7, 11.7, 12.8, 11, 11, 10.1, 10.2, 10.6, 13.9, 11.3, 14.8, 10.5, 14.3, 8.1, 12.9, 13.5, 13.4, 13.6, 8.1, 11, 11.3, 11.4, 14.2, 11.4, 10, 10, 10.1, 14, 11.1, 10.9, 10.2, 12.6, 11.7, 9.6, 13.7, 7.7, 13.6, 10, 11.2, 11.3, 10.9, 12.3, 9.6, 13.7, 10.9, 13.7, 11.2, 13.4, 15.1, 14.5, 15.2, 15.9, 10.6, 14.9, 13.2, 12.6, 8.2, 9, 12.9, 8.9, 12.5, 13.6, 12.5, 10.9, 12.2, 12, 11.1, 13, 10, 9.3, 10, 8.1, 13.3, 11.4, 9, 9.4, 11.9, 11.1, 11.3, 11.2, 10.6, 13.4, 12.4, 8.6, 9.5, 9, 12, 11.3, 13.2, 16, 8, 7.1, 12.6, 10, 15.3, 12.4, 11.5, 12.5, 6, 14.5, 11.9, 6.9, 12.6, 9, 11.7, 5.6, 11.3, 9.6, 10.9, 10.9, 8, 10.1, 13.6, 13.2, 10.1, 16, 10.4, 14.9, 13.8, 11.6, 11.7, 11.6, 12.9, 11.4, 12.9, 14.9, 9.9, 10.5, 14, 11.3, 14.4, 13.1, 11.7, 9, 16.8, 9.1, 9.9, 12.5, 10.4, 11.7, 12, 12.8, 13.7, 13.5, 1006.8, 1241.7, 308.6, -48.8, 79.9, -5.3, 24.5, -2.5, 33.2, -5.4, 40.9, -7.6, 48.2, 2.5, 23.1, 8.6, 12, 11.5, 11.3, 11.5, 11.8, 9.2, 12, 9.6, 9.3, 10.7, 14.8, 10.9, 11.8, 10.6, 12.2, 12.6, 13, 14.3, 10, 12.5, 11.5, 12.2, 8.8, 7.8, 9.8, 13.6, 12.1, 12.9, 12, 13.7, 11.6, 11, 10.3, 8.8, 12.3, 12.3, 12.9, 13.1, 14.8, 11.5, 10.8, 13.2, 12.7, 10.2, 10.9, 9.7, 10.7, 11.5, 7.1, 13.2, 11.1, 10.2, 10.2, 11.9, 14.3, 10.4, 11.5, 12.3, 13, 13.6, 11.2, 11.1, 11.4, -1244.8, 715.8, 993.6, 319.9, -107.4, 78.7, -38.5, -7.5, 34.4, -45.7, 45.9, -27.9, 0.1, 12.2, 27.8, -12.3, 43.8, -6.8, 43.1, 14.4, 8.6, 41, -6, 38, 14.2, 8.5, 50.2, -12.7, 49.4, -2.5, 27, 6.1, -6.2, 36.1, -14, 35.8, 6.9, 31.4, 11.1, 11.1, 48.8, -12.2, 52.9, 6.6, 40.8, 9.3, 11.1, 49.1, -16.7, 44.9, 5.4, 15.2, 25.2, 17, 19, 17.7, 19.9, 19.8, 18.7, 1016.4, 1246.2, 322.3, -16.1, 53.6, -26.9, 40.2, -23.8, 42.9, 7.4, 17.9, 32.4, 0.4, 46, 21.4, 20.4, 36.7, -0.3, 35.6, 11.3, 28.3, 23.1, 11.5, 27.4, 1.5, 50.4, 5.2, 38.3, -0.3, 32.9, 11.9, 24.5, 33.9, 2.7, 43.7, 17.8, 21.7, 26.8, 8.1, 9, 30.6, 7.1, 22.1, 19.6, 6.7, 7.8, 5.9, 16.6, 16.4, 15.9, 20.8, 15.2, 16.6, 14.3, 17.1, 17.8, 14.4, 18.5, 13.9, 16.6, 16.9, 14.3, 14.3, 18.5, 14.9, 16.2, 12.8, 13.5, 14.6, 16.4, 17.5, 15.4, 15.3, 14.6, 13.9, -983.8, 62.9, 1106.4, 642.3, -190.4, 133.8, -65.1, 66.6, -26.7, -13.8, 28.2, -54.4, 37.5, -10.3, 27.5, -24.4, 12.1, 41.6, 5.2, 6.9, 6.5, 27.7, 25.7, 16.3, 14.4, 15, 15.1, 16.3, 11.8, 16.4, 15.3, 14, 17.3, 15.2, 17.6, 16.2, 11.9, 16.4, 11.1, 16.6, 12.4, 14.9, 14.9, 18.3, 14.8, 15, 11.5, 15.2, 16.8, 14.2, 14.9, 16.9, 12.5, 16.9, 16.7, 13.4, 18.9, 13, 13, 16, 16.3, 16.2, 18.2, 17.4, 1009, 1248.1, 314.2, -16.7, 45.2, 3.9, 36.7, -6.2, 25.9, 10.2, 30.2, 7.7, 18.8, 41.1, -7.8, 51.5, -23.5, 43.9, 8.2, 34.2, 2.3, 29, 14.8, 14.9, 22.2, 8, 4.1, 41, 11, 21, 39.8, -6.6, 43.9, 17.6, 30.8, 18.4, 19.5, 23.8, 39.4, -6.2, 43.7, 18.2, 24.6, 39.5, 2.7, 21.8, 30.7, 11.7, 17.1, 10.9, 12.5, 11.9, 11.8, 16.2, 16.7, 13.6, 10.4, 12.3, 12.1, 12.7, 10.7, 13.1, 9.7, 10.7, 12.6, 11.7, 12.9, 14.3, 14.9, 15.3, 10.8, 12.2, 12.1, 14.7, 11, 11.2, 10.6, 14.2, 15.4, 12.4, -981.8, 57.6, 1103.9, 640.3, -195.5, 129.6, -67.6, 49.3, -29.5, -11.7, 26.2, -54.8, 29.4, -29.2, 32.5, -1.6, 7, 40.7, -12.1, 56.5, 16.6, 1.4, 48.7, -16.4, 37.5, 5.8, 18.1, 39.2, -6.2, 40.9, 7.6, 32.5, 7.8, 5.6, 44.4, 6.1, 34.3, -11, 39.1, 13.1, 5.7, 41.7, -3.1, 43.7, -16.5, 56.1, -23.2, 58.8, -22.6, 41.7, 10, -2.5, 45.9, -9.4, 34.8, 15.2, 6, 41.9, 0.1, 52.4, 1359.8, 672.6, -49.9, 62.4, -11.7, 52.6, -20.1, 38.9, 4.8, 31.5, -8.9, 25.9, 5.7, 24.1, 10.1, 27, 33.2, -4.3, 38.4, -19, 42.6, 9.1, 2.8, 36.2, 4.4, 41.8, 13.9, 17.8, 38.8, 4.4, 48.7, 17, 27.5, 37.4, 1.8, 23.6, 6.7, 22.5, 9.7, -4.1, 42.4, -16.8, 48.8, -21.7, 46.7, -10.6, 43.3, 16.7, 11, 13.9, 10.2, 12.2, 11.9, 9.5, 8.9, 10, 10.4, 10.9, 11.9, 11, 11.3, 9.9, 13.3, 11.1, 10.8, 10.4, 12.5, 9.3, 11.2, 10, 10.7, 9.5, 11, 10.4, -979.3, 57.9, 1112.2, 647.8, -186.3, 114.4, -72.9, 61, -22.8, -32.3, 23.6, -58.7, 41.6, -27.1, 96.6, -30.4, 51.6, 1.2, 12, 48.2, -11.2, 48.7, 2.1, 11.8, 40.7, 1.5, 52.4, -7.8, 29.3, 28.3, -6.7, 42.1, -22.7, 39.1, 11.5, 8.5, 42.9, -8.4, 40.5, -16.2, 34.4, 5.7, 27.9, 5.2, 0.4, 48.7, -13.4, 39.1, 12.6, 5.1, 48.5, -4.5, 44.9, 9.8, 3.7, 40.8, -14.6, 41.6, 12, 1.3, 44.3, -13, 41.4, 12.8, 10.7, 39.5, -12.1, 54.6, -18.2, 55.5, -8.6, 29.3, 32.2, -10.7, 45.3, 4.8, 27.3, 32.1, -3.5, 42.8, -5.9, 49.8, -1.2, 24.5, 10.3, 13.7, 6.1, 9.1, 11.9, 24.6, 31.9, 14.3, 20.9, 19.1, 22.7, 20, 22.7, 20.9, 22.1, 20.6, 19, 20.3, 17.5, 20.6, 17.6, 16.2, 19.6, 21.5, 21.7, 15.1, 21.1, 21.2, 16.6, 21, 17.7, 19.1, 18.7, 20.1, 17.7, 19.3, 14.7, 22.7, 21.9, 20.9, 23.1, 21.2, 19.6, 19.8, 20.7, 18.6, 19.6, 25.7, 14.8, 20.9, 20.2, 19.8, 18.2, 18.7, 17.5, 18.4, 19.5, 21.6, 17, 20.2, 25, 19.3, 21.8, 17.9, 19.3, 16.6, 22.3, 20.4, 17.7, 18.8, 17.9, 20, 20.3, 19.1, 20.2, 16.2, 18.2, 18.6, 17.7, 21.1, 20.9, 20.4, 18.1, 16.3, 16.8, 18.4, 19.2, 23, 19.3, 22.6, 19.2, 21.5, 17.8, 17.5, 21.4, 24.4, 23.1, 22.3, 20.4, 20.3, 22, 18, 16.8, 22.1, 20.6, 19.6, 21.1, 20.6, 19.3, 23.6, 19.8, 18.6, 19.8, 20.5, 16.8, 21, 19.6, 21.5, 18.3, 16.5, 19.5, 18.5, 20, 21.3, 21.8, 24, 17, 17.7, 21.5, 23.9, 19.2, 17.4, 16.6, 20.9, 19, 1996.3, 1619.4, 245, 54.5, 127.6, 31.3, -9.4, 39, -7.5, 25.9, 30.6, -0.7, 46.4, -21, 45.4, 20.2, 16.7, 46.6, 9, 40.4, 17, 7.5, 32.9, 11.2, 15.9, 44.6, -4.7, 36.3, 20, 30.4, 24.7, 9.5, 38.9, 11.5, 10.6, 12.7, 10.2, 11.4, 7.8, 12, 8.7, 9.9, 12.1, 9.8, 13.4, 10, 8.9, 9.4, 8.3, 8.8, 10, 9.6, 10.6, 11.4, 10.4, 6.2, 11.1, 13.5, 13.4, 16.6, -1312.9, -440.2, 1730.7, 1773.5, 592.2, -145.3, 209.7, -50.3, 42.5, -32, -29.6, 41.9, -42.1, 32.3, -27.3, 6.9, 34.1, -17.1, 35.5, -24, 50.8, 2.3, 26.6, 17.6, 14.8, 11, 10.7, 8.7, 11.1, 14, 12.8, 11.9, 10.9, 14.6, 13.4, 16.4, 12.2, 10.9, 13.8, 10.5, 14, 8.6, 11.2, 13.2, 13.1, 8.8, 11.1, 13.8, 11.2, 12.2, 12.1, 12.2, 8.8, 9.9, 13.7, 9, 14.3, 14.7, 11.1, 11.4, 11.7, 9.3, 9.9, 10.9, 9.1, 15.9, 12.4, 11.4, 11.6, 12.2, 15.4, 14.4, 11.3, 10.3, 10.8, 13.2, 13.6, 12.2, 9.7, 12.9, 11, 8.1, 12.9, 10.4, 14, 11, 13.5, 14.8, 9.9, 12.5, 12.2, 10.8, 11.7, 12.8, 10, 14.6, 12.4, 9.9, 14.2, 14.4, 12.1, 14.2, 12.1, 14.6, 9.3, 12.1, 9, 12.4, 10.6, 13.3, 13.5, 12.3, 11.6, 11, 12.2, 12.7, 6.9, 9.7, 9.9, 11.4, 12.6, 10.4, 14.9, 12.8, 9, 1064.8, 628.8, -11.8, 49.3, -19.8, 43.5, 2.5, 11.7, 47.4, 7.7, 42.7, 10.6, 16.1, 43.1, -3, 37.8, 8.4, 7.3, 45.3, 6.1, 39.1, 24.2, 26.3, 22.8, 19.2, 11.1, 10.5, 12.3, 9.9, 11.2, 12.1, 9.9, 13.7, 8.4, 16.3, 10.8, 14.6, 16, 15.1, 14.6, 9.7, 12.4, 13.6, 12.3, 12.4, 14.6, 14.1, 12.1, 14.1, 13.5, 12.1, 12.7, 14.6, 12.2, 10.6, 12.6, 13.9, 10.4, 12.4, 12.2, 14.8, 13.6, 12.6, 10.2, 15.2, 13.1, 12.6, 12, 13.1, 14.3, 13, 10.3, 15.4, 11.2, 11.9, 14.1, 10.6, 15.5, 13.2, 13.3, 12.5, 15.4, 11.9, 10.8, 11.2, 9.6, 11.3, 13, 13.3, 18.9, 12.1, 14.8, 12.4, 14.6, 14.2, 13.4, 10, 14.1, 11.7, 14.1, 14.1, 12.9, 7.9, 13.8, 13.4, 14.1, 12.7, 13.3, 11.8, 14, 14.8, 12, 12.2, 14.7, 14.9, 14.7, 12.8, 14.4, 13.2, 13.1, 12.6, 13.9, 12.9, 13.2, 11.4, 12.9, 13.5, 13.5, 13.8, 13.9, 11.3, 12.7, 10.9, 11.6, 13.1, 12.8, 14.7, 11, 10.4, 10.2, 9.8, 12, 10.4, 14.8, 11.3, 11.9, 14.6, 10.7, 9.2, 10.6, 14, 13.4, 16.1, 11.3, 13.4, 10.7, 12.3, 9.4, 11.7, 14.4, 13.5, 12.7, 12.2, 12.2, 15.9, 12.7, 11.7, 16.9, 16, 14.2, 10.9, 19.4, 12, 11.4, 12.7, 13.6, 13, 12.8, 9.6, 11.9, 13.9, 12.2, 13.3, 14, 10.4, 11, 14, 11.6, 13.7, 10.3, 9.5, 12.7, 15.9, 14.5, 12.2, 17.1, 11.2, 14.3, 15.5, -477.4, -331.4, 601, 219.3, -72.8, 51.4, -23.9, -6.1, 33.5, -30.5, 17.5, -13, 41.9, 13, 31.2, 35.8, -7.3, 52.2, -15.2, 41.3, 14.6, 12.2, 43, -5.1, 26.7, 10.6, 12.2, 38.1, -8.7, 35.7, 11.9, 9.8, 40.3, -2.7, 39.3, 15, 12.6, 28.3, 32.2, 21.2, 23.7, 21, 23.3, 21.2, 23.1, 20.1, 23.3, 23.5, 23.3, 21.5, 23, 24.3, 18.5, 22.2, 24.5, 19.1, 25.5, 22.1, 18.8, 24.6, 21.5, 19.9, 21.8, 21.9, 19, 23.3, 21.5, 20.8, 20.5, 22.9, 24.6, 24.8, 20.2, 20.3, 24.3, 21.3, 21.8, 21.1, 20.8, 20.9, 21.4, 24.7, 18.9, 18.5, 20.9, 23, 21.6, 20.3, 21.8, 18.7, 22.6, 21.1, 22.3, 20.8, 22.5, 18.9, 20.2, 25.6, 23.9, 22.3, 22.9, 22.8, 20.2, 21.2, 22.6, 23.9, 21.8, 21.1, 23, 21.4, 21.8, 18.9, 19.4, 22.1, 20.7, 21.2, 22.9, 21.2, 20.7, 20.8, 20.1, 21.6, 21.8, 19.6, 21.9, 21, 22.7, 23.1, 22.2, 19.5, 21.6, 23.3, 18.8, 24.6, 17.8, 18.8, 22.1, 21.6, 23, 23.7, 22.3, 19.7, 20.9, 18.4, 17.6, 21.1, 23.2, 22.5, 23.9, 23.9, 20.1, 17.8, 23.8, 23.1, 21.1, 19.7, 24.7, 20.4, 24.4, 20.5, 23.8, 23.3]
    line [300, -11.1, 53, 7, 23.1, 30, 1.7, 29.9, 31.8, -3.3, 41.3, -16.4, 35.6, 7.5, 21.4, 33.4, -1.6, 46.1, -20.9, 46.4, 7.8, -2.5, 48.7, -8.9, 34.6, 10.7, 7.3, 34, -16.7, 28.1, 9.5, 10.4, 10.3, 6, 9.4, 4.1, 30.8, -6.9, 46.5, -23.8, 46.1, 9.6, 3, 47.7, -14.9, 57.1, 5.6, 27.7, 10, 26.4, 4.5, 0.5, 43, -11.9, 40.3, 4.8, 11.9, 26.6, 8.9, 25.4, 20.2, 13.2, 9.2, 10.7, 8.5, 10.4, 10.8, 10.5, 10.4, 9.5, 7.1, 10.7, 8.9, 11.5, 10.4, 7.7, 7.5, 11.8, 8, 13.5, 10, 9, 6.7, 10.2, 13.3, 9.7, 8.1, 9.9, 15.2, 13.8, 10.6, 5.7, 8.4, 12.9, 13.1, 11.5, 8.3, 13.7, 9.7, 13.6, 13, 6.5, 11.6, 10.5, 9.5, 11.9, 10.8, 8.6, 11.2, 10.7, 11.5, 10.3, 6.9, 10.1, 7.5, 10.5, 7.1, 7.3, 4.5, 10.7, 13.2, 9.4, 7, 10.3, 11, 9.6, 12.6, 10.4, 4.7, 13.2, 11.9, 9.9, 9.8, 9.7, 12.1, 8.7, 10.4, 10, 14.5, 12.2, 10, 9.3, 9.8, 10.4, 6.1, 9.7, 8.6, 8.5, 9, 10.2, 10.4, 11.4, 6.7, 13.2, 8, 11.1, 9.8, 9.3, 15, 10.6, 14, 8.9, 9.8, 9.5, 10.5, 8.1, 10.8, 8.5, 12.1, 5.7, 9.7, 7.1, 9.2, 8.1, 11.8, 11.9, 9.6, 11.8, 8.8, 10.1, 11.5, 8.9, 8.7, 10.6, 10.2, 8.8, 8.8, 7.2, 4.5, 7.2, 10.1, 9, 8.1, 7.6, 12.6, 11.8, 7.5, 8, 12.4, 9.9, 11.5, 9.3, 7.3, 11.5, 7.7, 7.4, 1973.4, 1816, 1659.8, 1496.2, 1335.5, 1174.2, 1013.7, 855.5, 766.6, 705.8, 648.5, 588.1, 526.5, 467.2, 408.2, 344.7, 288.8, 228, 167.1, 89.1, -9, 43.9, 4.7, 25.8, 45.9, 4.4, 31.2, 6.4, 39.8, 10.3, 16.8, 20.8, -0.5, 41, -3.1, 40.4, 15.5, 8.6, 37.5, -0.1, 40.1, 13.3, 10.3, 41.6, -13.3, 42.9, 12.6, 25.4, 40.3, -13.7, 50.7, 2.7, 12.4, 34.9, -3.1, 47.6, 13.2, 8.7, 43.3, -0.4, -1801.4, -782.8, 175.7, 116.6, -4.1, -0.5, 8.5, 6.6, 7.9, -5.1, -20.2, 31.1, 13.5, 29.1, 24.9, 7.1, 29.3, 3.5, 17.4, 34, -5.2, 39.2, -16.4, 32.4, 29.4, -1.5, 44.4, -4.7, 23.3, 30.7, -8.3, 42.5, -14.2, 32, 4, -1.9, 39.8, -20, 38.9, 6.3, 28.9, 10.1, 16, 29.4, 7.1, 11.1, 6.7, 9.3, 7.2, 11.2, 11.5, 12.2, 9, 11.8, 10, 10.7, 5.7, 7.4, 11, 10.2, 8.3, 32.8, 6.6, 20.2, 9.1, 5.3, 48.1, -0.5, 23.7, 10, 6, 45.8, -5.1, 30, 24.9, 2.8, 52.1, -9.7, 27.7, 20.2, 5.2, 40, 3.1, 31.2, 18.6, -3.6, 48.8, -10.9, 33.2, 8.9, 5.9, 34, 12.5, 21.4, 3.5, 24.4, 4.6, 2.7, 29, -13.7, 55.8, 18.4, 12.5, 8, 32.1, 9.3, 8.2, 4.9, 4.8, 8.1, 9.9, 23.8, 0.1, 49.6, 3.8, 17.2, 13.9, 27.2, 11.4, 12.3, 33.9, -6.4, 34.4, 18.2, 13.4, 37.8, -16.1, 41.2, 8, 15.8, 30.7, 6.5, 25.5, 5.2, 7.3, 7.3, 8.4, 6.6, 6.6, 22, 11.9, 27.1, 11.5, 8.9, 12.4, 8.1, 11.9, 7.7, 16.5, 17.1, 17, 17.2, 11.7, 14.6, 14.9, 14.9, 17.8, 15, 13.6, 13.6, 13.7, 17.6, 14.7, 14.5, 13.7, 16.2, 15.3, 13.2, 17.3, 11.3, 17.2, 13.6, 14.8, 14.8, 14.5, 15.9, 13.2, 17.3, 14.5, 17.3, 14.8, 17, 18.7, 18.1, 18.8, 19.5, 14.2, 18.5, 16.8, 16.2, 11.8, 12.6, 16.5, 12.5, 16.1, 17.2, 16, 14.5, 15.8, 15.6, 14.7, 16.6, 13.6, 12.9, 13.6, 11.7, 16.9, 15, 12.6, 13, 15.5, 14.7, 14.9, 14.8, 14.2, 17, 16, 12.2, 13.1, 12.6, 15.6, 14.9, 16.8, 19.6, 11.6, 10.7, 16.2, 13.6, 18.9, 16, 15.1, 16.1, 9.6, 18.1, 15.5, 10.5, 16.2, 12.6, 15.3, 9.2, 14.8, 13.2, 14.5, 14.5, 11.6, 13.6, 17.2, 16.8, 13.7, 19.6, 14, 18.5, 17.4, 15.2, 15.3, 15.2, 16.5, 15, 16.5, 18.5, 13.5, 14.1, 17.6, 14.9, 18, 16.7, 15.3, 12.6, 20.4, 12.7, 13.5, 16.1, 14, 15.3, 15.6, 16.4, 17.3, 17.1, 991.5, 1257.7, 838.9, 364.5, 157.5, 29.3, 27.7, -3.8, 25.5, 3, 31.4, 0.4, 75.6, 21.9, 4.6, 16.5, 39.4, -14.1, 51.1, -8.5, 30.4, 42.2, 7.3, 25.6, -4.9, 26.8, 12.9, 25.6, 24, 4.2, 45.6, 7.9, 6.7, 37.9, 16, 30.5, 39.3, -0.2, 36.1, 0.2, 45.4, 10.9, 8.4, 36.7, 15.7, 5.7, 48.4, 12.1, 45.9, 14.6, 22.4, 32.1, -9, 48.3, -0.5, 35.1, 16.8, 6.8, 41.3, -4, 36.8, 8.5, 31.7, 32.3, 3, 41.8, 20.3, 9.9, 47.3, -11.9, 49.2, 6.2, 21.2, 26.3, 1.6, 41.9, 16.6, 13, 44.3, -1457.8, -757.1, 161.5, 74.9, 10.1, 5.4, -11.3, 26.1, -8.8, 45, -2.2, 41.9, 7.2, 25.3, 4.3, 0.4, 42.4, -17, 37.5, 14.5, 7.5, 39, -15.6, 41.3, 13.8, 6.5, 49.1, -13.4, 48.4, 3.1, 29.6, 9.1, -5.4, 46.9, -5, 30, 10.5, 0.9, 45.9, -2.6, 51.3, -8, 28.4, 31, -8.7, 44.5, -7.7, 28.8, 7.9, 8.4, 43.7, -18.3, 41.4, 8.6, 8.5, 37.8, 0.8, 30.7, -7.5, 1010.5, 1154.9, 522.6, -19.4, 41.4, -23.1, 41.3, -23.1, 43.9, 7.6, 16.8, 29.1, -5.4, 48.8, 22.1, 32.2, 12, 5.3, -1.1, 33.8, 10.3, 9.1, 8.5, 4, 8.3, 33.8, 10.6, 7.1, 9.2, 9.8, 9.6, 8.4, 7.7, 9.7, 8.9, 10.4, 6.3, 8.9, 12, 8.6, 13.6, 9, 8.2, 12.8, 7.6, 8.7, 6.7, 10.7, 10.3, 9.7, 14.7, 9, 10.4, 8.2, 10.9, 11.7, 8.3, 12.4, 7.7, 10.4, 10.8, 8.2, 8.1, 12.4, 8.7, 10, 6.6, 7.4, 8.4, 10.2, 11.4, 9.2, 9.1, 8.5, 7.8, -990, -1082.2, 13, 187.7, 20.9, 43.7, -7, 46.9, -28.1, 57.9, 3.6, 43.1, 6.2, 34.4, 13.6, 4.7, 44.4, 0.1, 44, -20.7, 39.9, 8.5, 5.7, 35.3, -14.9, 49.5, -12.3, 28.5, 9, 28.6, 21.4, -5.5, 51.3, -25.9, 44.1, 11.7, 3.5, 43.1, 6.2, 27.3, 7.4, 6.4, 40.4, -9, 48, -16.2, 42.3, 12.5, 5.2, 44.9, -11.1, 44.7, -19.8, 50.5, 9.3, 2.4, 45.4, -15.8, 35.4, 3.3, 0.6, 45, 12.1, 17.4, 1008.1, 1294.7, 866.5, 377.1, 161, 28.9, 32.8, 88.3, 19.7, 23.4, 17.2, 41.2, -6.7, 11.6, -14, 23.8, 1.1, 22.4, 35.3, -2.1, 32.5, 13.7, -1.1, 51.8, -5.8, 46.3, 16, 21.9, 32.9, -1.4, 34.5, 13.3, 16.4, 42.6, 2.8, 35.8, 15.8, 26.2, 23.3, -17.4, 46, -3.5, 30.3, 25, -5.2, 47.5, -5.4, 27.3, 28.4, 9.9, 37.8, 12.1, 21.1, 46.6, 8.7, 48.3, 14.4, 14.9, 7.2, 7.8, 5.7, 8.2, 19.9, 13.3, 28.1, 21.1, 22.2, 42.4, 2.1, 26.3, 18, 15.6, 17.5, 27, 16.2, 13.7, 44.4, 14.7, 15.7, 41.6, -975.2, -794.6, 159, 106.3, 2.8, 16.8, 11, 19.3, 46.6, 2.6, 14.6, 12.4, 8.5, 42.7, -5.7, 35.8, 3.5, 24.8, 7.3, 32.1, 25.4, 6.4, 15.3, 4.9, 12.1, 7.6, 9.7, 6.3, 29.4, 10.2, 9.5, 9.9, 7, 8.1, 5.7, 10.5, 9.3, 7.8, 6, 9.5, 6.7, 7.4, 5.1, 9.2, 6.3, 11, 10.4, 8.3, 11.7, 11.7, 22.9, 0.9, 26, 11.5, 13.3, 30.8, 10.6, 9.1, 10.4, 12.8, 1471.8, 1319.1, 1162.8, 999.2, 834.7, 674.8, 512.9, 354.5, 266.5, 209.2, 147.2, 88.2, 14.7, 39.2, -8.2, 17.4, 34.1, 1.7, 17.9, 8.5, 7.4, 6.3, 7.5, 8, 7.4, 11.6, 19, 22.6, 22.5, 44.8, 7.5, 39.7, 16.6, 20.5, 47, 4.3, 18.9, 22.3, 0.2, 19.1, 15.7, 7.9, 18.4, 13.4, 11.4, 23.9, 24, 23.3, 22.5, -2.3, 18.4, 20.3, 17.9, 16.3, 16.9, 44.2, 4.9, 17.7, 25.3, 12.8, 36.7, -6.4, 48.5, 15.5, 29.9, 19.3, 25.6, 38.2, -1.5, 43.2, 14.6, 12.9, 6.9, 6.2, -983.4, -1085.1, 11.1, 105, -21.1, 21, -5, 6.1, 36.3, 13.7, 10.6, 13.4, 11.9, 9.8, 11.8, 8.8, 14.2, 9.4, 12.6, 14.1, 12.2, 13.2, 11, 11.4, 7.2, 15.3, 11, 12.1, 10.8, 9.2, 10.4, 9.5, 12.8, 12.7, 8.7, 8.5, 16, 7.6, 11.6, 9.2, 10.3, 10.1, 14.1, 12.3, 10.8, 12.7, 10.7, 11.7, 11.1, 11.7, 12.5, 12.8, 16.4, 14, 9.6, 12.2, 13.4, 8.7, 11.7, 8.5, 11.2, 12, 12.1, 12.4, 14.2, 7.2, 10.3, 10.4, 8.5, 10.6, 5, 7.5, 9.9, 13.7, 10.2, 9.7, 10.5, 9.6, 12.4, 12.7, 13.2, 9.4, 10.5, 11.9, 12, 10.1, 10, 13, 11.8, 8.6, 11.2, 10.1, 12.8, 11, 14.6, 11.9, 14.6, 12.8, 14, 12.5, 11, 12.2, 9.5, 12.5, 9.6, 8.1, 11.5, 13.4, 13.6, 7, 13, 13.1, 8.5, 12.9, 9.6, 11, 10.6, 12, 9.6, 11.2, 6.6, 14.6, 13.8, 12.9, 15, 13.1, 11.5, 11.7, 12.6, 10.6, 11.5, 17.6, 6.8, 12.8, 12.1, 11.7, 10.1, 10.6, 9.4, 10.4, 11.4, 13.5, 9, 12.1, 16.9, 11.3, 13.7, 9.8, 11.2, 8.5, 14.2, 12.4, 9.6, 10.7, 9.8, 11.9, 12.2, 11, 12.1, 8.2, 10.1, 10.5, 9.6, 13, 12.8, 12.3, 10, 8.2, 8.7, 10.3, 11.1, 14.9, 11.3, 14.5, 11.1, 13.4, 9.8, 9.4, 13.3, 16.3, 15, 14.2, 12.4, 12.2, 14, 9.9, 8.7, 14, 12.5, 11.5, 13, 12.6, 11.2, 15.6, 11.7, 10.6, 11.7, 12.4, 8.8, 12.9, 11.5, 13.4, 10.2, 8.4, 11.4, 10.4, 11.9, 13.2, 13.7, 15.9, 8.9, 9.6, 13.4, 15.8, 11.1, 9.3, 8.5, 12.8, 10.9, 1904.8, 1510.5, 612.3, -2.4, 47.4, -16.6, 44.3, -24, 51.8, -18.1, 53.6, -8.5, 49.1, -4.9, 32.9, 15.9, 9.9, 45.6, 0.9, 39.4, 14.9, 11.6, 6.5, 13.8, 30.8, 15.1, 26.7, 4.5, 8.5, 10, 8.3, 6.3, 8.7, 6, 8.4, 10.5, 8, 9.2, 5.6, 9.8, 6.5, 7.7, 14, 15.3, 28.1, 2.8, 30, 8.2, 7.1, 7.6, 8.8, 8.4, 9.4, 10.2, 9.2, 5, 12.3, 26.2, 7.2, 10.4, -1319.1, -1585.3, -378.3, 201.7, 157.8, 98.9, 35.5, -29.8, 25.3, -4.9, 4.9, 30.6, -6.2, 35.4, 2.5, 36.9, -15, 49.5, 13, -2.1, 45.1, -13.4, 41.3, 9.6, 6.5, 38.3, -17.2, 34.4, 9.7, 12.5, 42.2, -2.5, 50.7, 1.2, 32.2, 8.4, 3.1, 39, -6.4, 44.4, -23.3, 48.9, 10.3, 7.9, 24.8, 17.9, 15.8, 10.9, 8.3, 9.4, 9.2, 9.4, 5.9, 7, 10.8, 6.1, 11.5, 11.8, 8.3, 8.5, 8.9, 6.4, 7, 8, 6.3, 13.1, 9.5, 8.5, 8.7, 9.3, 12.5, 11.5, 8.4, 7.4, 7.9, 10.3, 10.8, 9.3, 6.8, 10, 8.2, 5.2, 10.1, 7.6, 11.1, 8.1, 10.6, 12, 7, 9.6, 9.4, 7.9, 8.8, 9.9, 7.1, 11.7, 9.5, 7, 11.4, 11.5, 9.2, 11.3, 9.2, 11.7, 6.4, 9.2, 6.1, 9.5, 7.7, 10.4, 10.6, 9.4, 8.7, 8.1, 9.3, 9.8, 4, 6.8, 7, 8.5, 9.7, 7.5, 12.1, 10, 6.1, 1072, 917.7, 758.9, 595.8, 435.7, 273.6, 154.7, 95.3, -32.6, 39, 0.9, 16.8, 23.5, 34.4, 9.7, 10.4, 10, 6.1, 8.8, 10.5, 9.6, 9.5, 9.1, 9.5, 8.6, 8.1, 7.5, 9.3, 6.9, 8.2, 9.1, 6.9, 10.7, 5.4, 13.3, 7.8, 11.6, 13, 12, 11.6, 6.7, 9.4, 10.6, 9.3, 9.4, 11.5, 11.1, 9, 11.1, 10.4, 9.1, 9.7, 11.6, 9.2, 7.6, 9.6, 10.9, 7.4, 9.4, 9.2, 11.8, 10.6, 9.6, 7.2, 12.2, 10, 9.6, 9, 10.1, 11.3, 10, 7.3, 12.4, 8.2, 8.9, 11.1, 7.6, 12.5, 10.2, 10.3, 9.5, 12.4, 8.9, 7.8, 8.2, 6.6, 8.3, 10, 10.3, 15.9, 9.1, 11.8, 9.4, 11.6, 11.2, 10.4, 7, 11.1, 8.7, 11.1, 11.1, 9.9, 4.9, 10.8, 10.3, 11.1, 9.6, 10.3, 8.8, 11, 11.8, 8.9, 9.1, 11.6, 11.9, 11.6, 9.8, 11.4, 10.2, 10.1, 9.6, 10.9, 9.9, 10.2, 8.4, 9.9, 10.5, 10.5, 10.8, 10.9, 8.3, 9.7, 7.9, 8.6, 10.1, 9.8, 11.7, 7.9, 7.4, 7.2, 6.8, 9, 7.4, 11.8, 8.3, 8.9, 11.6, 7.7, 6.2, 7.6, 11, 10.4, 13.1, 8.3, 10.4, 7.7, 9.3, 6.4, 8.6, 11.4, 10.5, 9.7, 9.2, 9.2, 12.9, 9.7, 8.7, 13.9, 13, 11.2, 7.9, 16.4, 9, 8.3, 9.7, 10.6, 10, 9.8, 6.5, 8.9, 10.8, 9.1, 10.3, 11, 7.4, 8, 11, 8.6, 10.7, 7.2, 6.5, 9.7, 12.9, 11.5, 9.2, 14.1, 8.2, 11.3, 12.5, -480.4, -928.9, -14.3, 136.2, 21.8, -6.8, 17, 10.6, 43.9, 17, 16.3, 17.5, 16, 15.3, 14.9, 14.8, 15.2, 13.9, 17.3, 14.1, 17.4, 18.6, 16.7, 15.8, 14.2, 12, 18.7, 14.1, 13.8, 15.6, 13.7, 15.5, 15.8, 16.5, 17.3, 15.4, 14.1, 13.3, 14.6, 15.5, 18.1, 15.4, 17.7, 15.5, 17.5, 14.5, 17.7, 17.9, 17.7, 15.9, 17.4, 18.7, 12.9, 16.6, 18.9, 13.4, 19.9, 16.5, 13.2, 19, 15.8, 14.3, 16.1, 16.2, 13.4, 17.7, 15.8, 15.2, 14.9, 17.3, 19, 19.2, 14.6, 14.7, 18.7, 15.7, 16.2, 15.5, 15.2, 15.3, 15.8, 19.1, 13.2, 12.9, 15.3, 17.4, 16, 14.7, 16.2, 13.1, 17, 15.5, 16.7, 15.2, 16.9, 13.3, 14.5, 20, 18.3, 16.7, 17.3, 17.1, 14.6, 15.6, 17, 18.3, 16.2, 15.4, 17.4, 15.8, 16.2, 13.3, 13.8, 16.5, 15.1, 15.5, 17.3, 15.6, 15.1, 15.2, 14.5, 16, 16.2, 14, 16.3, 15.3, 17.1, 17.5, 16.6, 13.9, 16, 17.7, 13.2, 19, 12.2, 13.2, 16.5, 16, 17.4, 18.1, 16.7, 14, 15.3, 12.8, 12, 15.5, 17.6, 16.9, 18.3, 18.2, 14.5, 12.2, 18.2, 17.5, 15.5, 14.1, 19, 14.7, 18.8, 14.9, 18.2, 17.6]
Loading
single_venus_solar — settle 11.8→38.1s, overshoot 1046.6→36.4W, RMS 17.1→16.5W
Metric Base Head Δ
settle_mean_s 11.8 38.1 +223%
settle_p95_s 14.8 103.9 +602%
unsettled_events 0 1 +1
overshoot_mean_w 526.6 19.3 -96%
overshoot_max_w 1046.6 36.4 -97%
band_crossings_per_h 5.33 4.0 -25%
steady_rms_w 17.1 16.5 -4%
mean_abs_grid_w 15.6 30.5 +96%
avoidable_import_wh 15.2 35.9 +136%
avoidable_export_wh 8.2 9.8 +20%
battery_travel_w_per_h 11539.0 8292.0 -28%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 90
    y-axis "W"
    line [401.6, 311.1, 18.2, 4, 2.1, 7.3, -6.3, 5.1, -1.2, 7, 3.9, 4.5, 3.9, 3.9, 1.5, 1.2, 3.3, 5.5, -5.2, 4, -42, -0.2, 4.6, -1.4, 6.7, -2.8, 6.2, -1.9, 4.8, -0.6, 4.5, 0.8, -1.2, 2.2, -0.7, 3.4, 7.4, 1.3, 6, 4.6, -43.4, -5.1, 1.6, -0.3, 3.5, 3.4, -2.5, 5.4, 5.6, 4.7, -4.3, 4.3, -2.9, 1.7, 1.2, 5, 6.2, 4, -0.3, -5.4, -15.6, 0.5, 6.5, -2.6, 2.9, 2.3, -1.3, -1.6, 9.3, -4.9, 8.1, 2.6, 0.2, 2.7, 6.4, -1.4, 3.2, 2.5, -0.9, 5, -41.5, 4.7, -0.7, 6, -0.1, 1.4, 0.3, 0.9, 0.3, 4.5, -1.9, -0.4, 0, -0.5, 7, -0.7, 10.2, 0.8, 2.9, 0.6, -42.3, 5.8, 5.7, -1.1, 4.1, -1.7, 3.2, -0.3, 3.4, 5.2, 0.5, 1.9, 4.4, -0, 6.4, -2.7, 0.8, 5.8, -1.3, -2, -37.2, 6.1, 1.4, -1.9, 1.7, -2.1, 2.6, 3.4, -0.2, 1.4, 1.7, 1.6, 2.3, 8.1, -2, 8.3, 2.6, 3.6, 1.6, 8.2, -45, -4.8, -1.8, -1.2, -5.5, 4.4, 2.6, -0, 0.3, 3.5, -2.3, -2.6, -0.5, -6.2, -5, -7.4, 2.1, -4.8, -4.3, 3.5, -38.7, 3.2, -6.2, -0.2, 3.7, -0.7, -2.1, -5.5, -3.4, 1.1, -1.2, -8.1, 4, 1.7, 1.9, -1.6, -1.3, -5.9, 0.9, 4.5, -40.3, -4.2, -0.8, 0.5, -3.7, -3.2, -5.3, -8.8, -4.3, -8.6, -1.2, -4.2, -6.8, -7.7, -6.1, -5.1, -3.5, -6.1, -3.3, -5.4, -45, -4.6, -3.7, -10.4, -1.3, -6.2, -11.5, -4.7, -5.7, -11.5, -11.7, -6.6, -10.5, -0.9, -8.2, -9, -9.9, -6.8, -6.8, -4.7, -38.6, 8.9, 11.1, 10.4, 5.6, 5.8, 8, 5.2, 6.2, 0, 12.3, 11.1, 13.4, 6.7, 8.8, 6.1, 4.9, 11.6, 13, 11.7, -32.9, -11.7, -7.4, -8, -11.9, -7.6, -9, -15, -10.5, -2, -11.9, -10.2, -2.9, -10.3, -1.4, -4.1, -9.8, -11.8, -12, -6.5, -46.1, 4.5, 2, 1.9, 8.2, 10.8, 5.1, 6.6, 7.6, 5.7, 5, -1.6, 7, 1.5, -2.7, -3.1, 0.9, 3.2, -0.3, 5.5, -36.5, -3.7, -3.9, -2.7, -8.6, -4.8, -6.4, -8.8, -8.3, -11.7, -9.5, -3.2, -7.3, -2.8, -9.3, -9, -7, -2.5, -9.4, -1.6, -37.4, -8.3, -8.6, -13.2, -14, -10.6, -6.7, -9.2, -6.6, -7.9, -7.4, -10.4, -14.2, -5.4, -9, -5.3, -4.1, -12.1, -12.2, -8.9, -38.6, -8.4, -4.7, -8.9, -6.2, -3.9, -4.3, -5.1, -5.6, -5, -1.7, -4.5, -7.1, -7.8, -7.1, -2.1, -10.5, -8.3, -8.2, -5, -40.9, 0.3, 2.7, -4.4, -7.6, 1.3, -3.4, 1.7, -8.6, -4.6, 2.6, -3.2, -6, -0.9, -4.7, -6.5, -7, 1.3, -1, 0.1, -16.3, -3.7, -4.1, -6.3, -2.4, -11.3, -8.3, -9.2, -9.7, -5.8, -2.2, -9.4, -4.6, -8, -2.7, -3.6, -10, -6, -6.9, 0.5, -35.9, 0.8, 0.3, -3.9, -6.5, -9.5, -3.9, 5.6, 1, -0.7, -2.8, 2.6, 1.9, -3, -1.5, 0.4, -3.1, -0.1, -1.2, 1.2, -36.7, -9.6, -1.2, -7.7, -6, -6.9, -4.5, -13.8, -10.4, -5.6, -4.2, -8.2, -2, -11, 0.7, -9, 0.6, -8.7, -2.9, -3.1, -21.1, -3.4, -3.1, -2.4, -5.1, -5.1, -0.3, -3.8, -7.1, -4.3, -6.5, 1.3, -5.6, -7.8, -8.7, -5.3, -5.9, -0.3, -5.6, -7.5, -18.2, -7.2, -11, -2.7, -6.2, -5, -8.1, -5.2, -2.5, -8, -1.7, -5, -8.4, -5.4, -2.9, -3.8, -13.1, -6.7, -6.6, -0.8, -30.5, -8.3, -11, -11, -7.6, -5.2, -10.4, -4.7, -9.9, -8.5, -5.9, -3.4, -9.8, -12.5, -3.2, -0.5, -5.1, -5, -6, -11, -16.8, 4.3, 2.8, -3.5, -3.6, -1.5, -0.5, 0, -5.4, -2.3, -8.1, 3.6, -1.9, -1.8, 0, -3.4, -2.8, -4.6, -6.9, -1.8, -12, -9.3, -8.6, -10.5, -5.1, -9.5, -3, -15.2, -11.6, -10, -4.6, -10.4, -9.7, -9.3, -11.9, -11.3, -9.8, -11.2, -5.4, -12, -14.6, 13, 6.8, 12.2, 15, 9.6, 13.5, 11, 11.1, 10.5, 5.7, 9.9, 13.1, 10.7, 8.9, 9.6, 6.4, 10.8, 7.1, 11, -3.3, 8.6, 7.5, 6.1, 4.8, 5.9, 8.2, 6.5, 1.6, 13.9, 3.3, 4.6, 8.5, 6.1, 6, 0.5, 3.8, 12.3, 7.4, 2.2, -9.8, -3.5, 0.4, -6.4, -8.1, -5.8, -3.6, -1.6, -1.6, -6.5, 0.3, -2.6, 1.6, -3.6, -2.4, 2.2, -3.4, 2, -5.5, -5.8, -13.4, 7.6, 6.7, 4.3, 10.2, 0.8, 9.9, 8, 2.3, -1.6, 5, 3.1, -0.1, 4.2, 3.2, 6.7, 10.6, -0.4, 7, 6.4, -8, -7.2, -10.7, -5.8, -9.4, -10.8, -6.8, -16.5, -8.8, -11.1, -2.5, -5.8, -7.6, -12.3, -10.7, -13.2, -11.3, -7.2, -10.2, -4.2, -14.4, 3.3, 6.5, 7, 13.9, 12.4, 3.1, 9.7, 4.9, 8.7, 11, 6.9, 9.5, 11.4, 10.2, 7.9, 11.7, 14.5, 7.6, 8, -14.5, -16.7, -2.9, 8.9, 9.6, 10.9, 6.6, 5.4, 14.6, 9.8, 6.4, 7.1, 13, 9.5, 10.3, 7.5, 6.8, 13.3, 7.1, 6.3, -2.5, 4.9, 1.3, 0.4, -0.5, -0.4, 4.5, 4.8, 2.7, 1.9, 5.8, 1.9, 2.1, -0, 4.7, 1.5, 3.9, 0.7, 1.9, -5.6, -9.7, -1.9, 2.7, 0.1, 1.1, 1.1, 7.4, 3, 2.1, -0.5, -1.3, 4.7, 5.4, 0.5, 4.2, 0.9, 3.6, 1.6, 7.4, -0.7, -11.7, 2.6, -3.3, 7.4, 1.2, 4.9, 6.5, 0.9, 3.5, -3.7, 4.4, -3.2, 0.5, 2.6, -0.6, 1.5, -0.6, 4.4, 3.1, -0.7, -12.3, -7.3, 11.7, 6.6, 6.7, 5.7, 0.3, 4.5, 5.1, 7.8, 7.8, 11.7, 12, 4.8, 6.6, 8.4, 0.9, 2.8, 915.8, 1315.5, 703.6, -0.7, 1.3, 3.1, 1.2, -1.3, -0, 2.6, 1.2, 6.1, 2.7, 1.4, 0.4, 2.1, 1.2, -2.7, 8.4, -0.4, 2.9, -2, 6.5, 0.5, -5.1, 9.6, 3.2, 3.6, 1.4, -1.1, 8.7, 1, 0.1, 1.5, 2.2, -2.7, 4.3, 1.6, 2.3, 1.7, -928.8, -586.3, 592, 980.2, 628.1, 12.4, 10.2, 17.7, 10, 9.1, 12.6, 8.5, 11, 11.7, 17.8, 7.2, 13.7, 10.7, 13.3, 5.5, 7.2, 14, -2.8, 3.3, -8.5, -2.5, -4.7, -0.7, -1.2, 0.3, 3.4, -2.3, 2.3, -7.2, 2.6, -4.8, -3.5, -1.1, -5.5, -9.4, -2.4, 0.3, -10.3, -7.2, -8.7, -12.3, 1, 6.8, 3.1, 9.9, 10.9, 6.7, 10.4, 6.8, 10.7, 1.5, 10.9, 8.4, 5.5, 10.5, 5, 4.5, -1.3, -2, -0.3, 6.1, 2.5, -3.8, 3.3, -6.7, 1.6, -5.5, 2.5, 0.3, -1.7, -1.1, -4.7, 4.7, 6.7, -2.8, -1.5, -2.4, -1.6, -5.6, -8.9, -5, -2.8, -4.4, -4.4, 1.3, 2.5, -8.3, -2.8, -1.7, 1.1, -3.7, -4.9, -5.5, -4.7, 1.1, -1.4, -1.9, -2.8, -10.9, -4.6, -6.8, -14.8, -7.4, -8.9, -5, -4.5, -4.4, -10.9, -11.5, -8.7, -3.6, -4.7, -11.3, -6.6, -12.7, -6.6, -5.2, -3.6, -7, -11.1, -6.3, -9.6, -6.2, -7.4, -9.3, -4.3, -10.6, -6.4, -12.3, -5, -11.4, -11.3, -14.2, -5.3, -14.7, -8.2, -6, -8.1, -6.7, -5, -11.7, -4.2, -6.6, -6.1, -6.3, -8.2, -2.5, -4.7, -10.6, -12, -7.9, -7.7, 0.5, -7.6, -4.5, -16.1, -8.1, -2.2, -3.7, -9.2, -2.6, -5, -1.3, -0.6, -3.1, 1.6, -3.3, -2.2, -0.7, -1.3, 0.1, -8.9, 0.9, -3.5, -1.7, -1.4, -0.1, -3.8, 6.6, 5.1, 6, 1.4, 2.7, -0.8, -6.1, 1.8, 6, -2.4, -3.4, -0.2, 3.8, 7.4, 2, 3.8, 2.7, 3.6, 3.2, 3.6, 5.7, 9.1, 13.6, 7.7, 11.8, 13.6, 7.2, 7.8, 11.6, 5.5, 8.5, 7.1, 4.2, 5.7, 7.5, 13.7, 10.2, 6.8, 4.2, 16.5, 7, 11.5, 5, 14.9, 5.3, 10.5, 10, 1412.7, 1230.4, 354.8, 0.3, -0.3, 4.1, 1.1, -0.1, 3.3, 2.9, 2.1, 1.6, 5.9, 2.2, 7.4, 0.8, 5.1, -0.4, 1.5, 7, -2.9, 3.4, 4, 2, -3.1, 4.7, 1.5, 5.4, -3.2, 8.9, -3.9, 8.4, 1.2, -2, 0.3, 7.4, 2.2, 1.5, 1.8, 2.3, -1261, -189.4, 883.3, 937.9, 350.8, 10.6, 2.4, 2.3, 5, 2.2, 5.2, 12.9, 8.3, -7, 3.5, 2.3, -3.3, -2.6, 1.6, 1.3, 0.3, -2.2, -0.2, -0.4, -5.1, -0.4, -1.3, 3.6, 3.3, 4.3, -1.9, 0.1, 0.5, -3.1, -3.2, -2.7, 5.3, -2.1, -4, -2.4, 4.2, -2.1, -1.2, -4.6, -2.8, -5.1, 2.3, -0.2, 1.5, -0.5, -3.9, -4.5, 11.5, -4.7, -2, -2.6, -7.5, -4.8, -0.6, 4.4, -1, -7.1, -2, 1.4, -2, -2, -1.5, 0.8, 3.1, -2.3, -6.8, -5, 10.8, -6.2, -2.7, -3.9, -8.5, -3.1, -2.9, 0.7, -1.7, 1, 0.8, -1.3, -0.7, -5.2, -4.2, -2.3, -1.7, -3.7, 3.5, -3, 18.3, 5.4, 3.5, -2.2, 6.3, -4.2, -2.2, 4.2, 3.9, 0.6, -0.7, -5.4, 2.6, 1.5, -1.4, 0.4, -0.5, -5.1, 2.5, 6.3, 11.6, -0.4, 1.1, -2.5, -1.8, -7, 6.2, 3.2, 5.4, 5.3, -7, 2.4, 2.8, -6.9, -7, -0.8, 1.7, -3.7, -1.8, -1.8, 15.4, -0.4, 4, 9, 3.7, -4.3, 3, 2.3, 2.6, 5.3, 1.9, 3.4, 9.3, 0.1, -0.8, 2, 1.2, 0.4, -1.9, 2.7, 18.1, 9.5, 12.8, 13.1, 6, 7.3, -4.4, -8.2, -11.1, -8.7, -10.8, -9.7, -12.7, -7.8, -8.4, -13.8, -11.4, -6.6, -14, -12.6, 16.7, -12.2, -7.3, -9.8, -6.8, -4.6, -7.9, -8.9, -14.9, -3.3, -9.3, -1.7, -5.7, -11, -7.4, -10.9, -8.9, -7.1, -2, -12.7, 12.1, -0.9, 5.7, -1.9, 1.6, -2.8, 1.5, 8.4, 2.3, 0.2, 4.4, 4.9, -0.8, 3.4, -5, -3.9, -0.2, -1.9, -1.7, 3.2, 10.1, 1.5, -7.1, -1.9, -3.5, -2.9, 2.5, -0.9, -1.2, -5.9, -1.7, -0.4, -2.8, -3.3, -6, -3.8, -0.3, -8, -6, -0.8, 17.8, 15.6, 7.3, 8.7, 7.4, 6.7, 9, 7.8, 8.7, 6, 8.2, 5.6, 6.4, 8.2, 8.2, 11.1, 7.5, 5.9, 11.5, 4.8, 15.4, -5.8, 1.5, -0.5, -1.5, -4.7, -11.6, -2.3, -2.4, -1, 2.4, -1.6, -8.2, -1.8, -6.4, -0.2, -1.3, 1.5, -7.9, -1.4, 13.4, 14.9, 10.9, 12.4, 10.8, 10.6, 8.6, 5, 12.1, 13.2, 2.4, -10.7, -8.1, -10.3, -11.8, -7.8, -4.5, -9.6, -6.4, -7.1, 11.5, 13.5, 14.1, 8.3, 13.5, 13.8, 13.8, 15.8, 13.4, 10.2, 13.1, 10.2, 1.5, 3, 6.1, 4.4, 6.6, -6.5, -2.5, 3.7, 19.1, 1.6, 3.8, -2.1, 2, -1.9, 1.1, 2.6, -3.1, -7.2, -1.1, -1.8, 0.1, -7.3, 1.5, 5.3, -4, -1, -1.6, -6.5, 33.9, 7, 14.4, 9.6, 12, 13, 10.1, 5.2, 16, 11.2, 10.5, 5.1, 14.4, 8.9, 7.3, 11.2, 7.9, 10.9, 10.9, 3.7, 43.3, 9.3, 11.7, 3.4, 8.4, 2.2, 4.9, 4.1, 1.4, 7.9, 9.4, 2.1, 4.1, 5.2, 1.3, 3.4, 11.3, 8, 6.1, 7.7, 25.6, -10.4, -15.9, -11.6, -7.5, -13, -12.9, -8.1, -7.4, -6.3, -12.7, -10.2, -11.1, -7.5, -11, -12.4, -4.7, -9.1, -11.6, -7.7, 26.7, 10.1, 1.9, 7, 6.9, 9.7, 6.1, 6.3, 8.2, 3.8, 6.8, -1.5, 3.1, 8.2, 0.4, 7.7, 1, 1.7, 4.6, 3.9, 29, 3.3, 4.2, 13.4, 8.8, 11.3, 6.5, 9.6, 11.5, 13.8, 3.2, 7.5, 0.3, 4.2, -0.9, 5.1, 6.9, 15, 3.1, 10.9, 43.4, 7.3, 3.2, -6.2, -4.3, -1.9, -14, -8, -2.1, -8.2, -16.1, -8.3, -6.8, -8.4, -15.9, -16.3, -10.7, -6.8, 0, -10.6, 33.1, 1.8, -3.7, -6.2, -7.2, -0.2, 4.4, -2.3, 1.3, -2.5, 1.6, -6.6, -1, -3.9, 5.6, -5.2, -4.5, -7.8, -2.2, 3.8, 44.9, -2.4, -7.8, -3, 0.4, -8.7, -1, -6.6, 1.2, -4, -7.3, -7.6, -3.3, -6.7, -2.3, -3, 2.5, -2.9, -0.8, -0.8, 43.2, 8.3, 8.7, 3.2, 12.4, 14.2, 15.6, 12.4, 11.9, 9.2, 4.1, 17.6, 10.8, 10.3, 12.8, 11.3, 11.5, 10, 7, 12.1, 54.7, 13, 15.1, 9.5, -7.9, -4, -7.5, -6.3, 0.6, -6.5, -6.6, -4.4, -7.2, -2.7, -3.3, -1.1, -4.4, -1.7, -9.7, -3.5, 15.3, 0.8, 1.4, 0.4, 7.1, 2.4, 3.7, -0.4, 1, 4.4, 7.1, 4, 3.2, 4, 3.7, 2.8, 3.7, 1.2, 1.2, -0.6, 41.8, 7.6, 15.7, -7.8, -0.5, -13.3, -11.6, -10.8, -13.4, -8.1, -11.9, -6.5, -8.4, -10.4, -12, -11.4, -8.2, -8, -13, -7, 29.9, 11.7, 11.5, 12, 11.9, 3.8, 9.1, 11.4, 9.9, 12, 8.3, 9.2, 6.3, 5.2, 9.5, 11.6, 2.6, 6.5, 13.4, 11.3, 27.4, -2.5, 2.2, -4, -1.4, -2.2, -6.6, -5.8, -7.4, 3.1, 0.3, -2.2, -5.9, -1.8, 2.1, -7.9, -3.2, 3, -6.1, -5.5, 43.2, 7, 14.7, 14.7, 5.2, 15.7, 12.7, 7.8, 1.9, 7.8, 8.9, 5, 1.6, 7.3, 9, 11.5, 1.3, 6.9, 3.8, 6.3, 27.9, 0.9, 2.3, -0.9, 3.8, 2.5, -1.6, -0.3, 9.1, -0.5, -0.9, 5.2, 1.8, 6.6, -3.3, 3, -0.9, -1.7, 2.1, 5.9, 43.5, -1.4, 1.9, 7.7, -2.1, 5.3, 4.8, -2, -2, 1, 7.5, 6.2, 4.7, -0.4, 3, -2.8, 3.7, 7.5, 0.7, -0.6, 69.9, 19.8, -3.6, 2.9, 4.2, -0.5, 2.1, 4.6, 2.4, 5.3, -0.5, 3.6, -1.2, 5.6, -4.6, 10.1, 1.4, 0.7, 1.8, -0.3, 43.6, 7.5, 6.1, 4.4, -5.2, 5.6, 0.5, -0.9, 2.8, 0.9, 7.7, -2.6, 5.2, 8.4, -4, 1.6, 2.2, 3.6, 2.9, 3.4, 56.4, 2.8, 3.8, 2.2, 1.7, 2.6, -0.3, 7.8, 2, -3.3, 7.1, 2.4, 0.2, 3.2, 4.3, -0.3, -0.7, 4.5, -2.8, 0.7, 62, 6.4, 5.6, -0.5, -4.8, 0.4, 2, 3.2, -0.2, 1.1, 3.6, 2.3, -3.8, 2.7, 6.5, 5.5, -1.4, 4.5, 3.9, -2.5]
    line [401.6, 247.8, 78, 4.1, 1.4, 7.4, -6.2, 5.1, -1.2, 7.1, 4, 4.5, 4, 3.3, 1.2, 1.2, 3.4, 5.5, -5.1, 3.4, -25.3, -0.5, 3.6, -2.3, 6.8, -2.7, 6.3, -1.9, 4.9, -0.6, 4.6, 0.9, -1.1, 1.9, -0.6, 3.5, 7.4, 1.3, 6.1, 4.6, -45.7, -5.1, 1.6, -0.3, 3.5, 3.4, -2.4, 5.5, 5.6, 4.7, -4.2, 4.4, -2.9, 1.8, 1.3, 5.1, 6.3, 4.1, -0.2, -5.3, -15.5, 0.6, 6.5, -2.5, 3, 2.3, -1.3, -1.5, 9.4, -5.2, 8.2, 2.7, 0.3, 2.8, 6.5, -1.3, 2.6, 2.2, -0.8, 5.1, -43.4, 4.7, -0.6, 6, -0.1, 1.4, 0.4, 1, 0.4, 4.6, -1.8, -0.3, 0.1, -0.4, 3.7, -0.6, 10.3, 0.2, 5.6, 0.3, -47.2, 5.9, 5.7, -1, 4.2, -1.6, 3.3, -0.3, 3.5, 5.3, 0.6, 2, 4.5, 0, 6.4, -2.6, 0.9, 5.9, -1.2, -2.3, -20.5, 6.2, 1.5, -1.8, 1.5, -2.4, 2.7, 3.5, -0.1, 1.5, 1.8, 1.7, 2, 6.5, -3.6, 8.3, 2.7, 3.6, 1.6, 8.2, -50.6, 3.3, 6.3, 6.9, 2.6, 12.5, 10.6, 8.1, 8.4, 11.6, 5.7, 5.5, 7.6, 1.8, 3.1, 0.7, 10.2, 3.3, 3.8, 11.6, -34.2, 0.3, -9.1, -3.2, 0.8, -3.6, -5.1, -8.4, -6.3, -1.9, -4.2, -11.1, 1.1, -1.3, -1, -4.6, -4.2, -8.8, -2, 1.6, -28.5, -13.2, -9.7, -8.4, -12.6, -12.1, -7.2, 3.2, 7.8, 3.5, 10.9, 7.9, 5.3, 4.4, 6, 7, 8.6, 5.9, 8.8, 6.7, -37.3, -5.6, -4.6, -11.3, -2.2, -7.2, -12.4, -5.6, -6.6, -12.4, -12.6, -7.5, -11.4, -1.8, -9.1, -9.9, -10.8, -7.7, -7.8, -5.6, -22.5, 8.9, 11.2, 10.5, 5.7, 5.9, 8.1, 5.2, 6.3, 0.1, 12.3, 11.2, 13.5, 6.8, 8.8, 6.2, 5, 11.6, 13.1, 11.8, -33.1, -12.7, -8.3, -8.9, -12.8, -8.5, -9.9, -15.9, -11.4, -2.9, -12.8, -11.1, -3.8, -11.2, -2.3, -5.1, -10.8, -12.7, -12.9, -7.4, -36.4, -14.4, -1.6, 5.9, 12.2, 14.9, 9.2, 10.7, 11.6, 9.7, 9.1, 2.4, 11.1, 5.6, 1.4, 1, 5, 7.2, 3.8, 9.6, -33.7, -3.7, -3.8, -2.6, -8.5, -4.7, -6.4, -8.7, -8.2, -11.6, -9.5, -3.2, -7.2, -2.8, -9.3, -8.9, -7, -2.4, -9.3, -1.5, -22, -12.2, -12.5, -17.1, 2.1, 5.4, 9.3, 6.9, 9.5, 8.1, 8.7, 5.7, 1.9, 10.7, 7.1, 10.7, 11.9, 4, 3.9, 7.2, -27.9, -8.4, -4.6, -8.8, -6.1, -3.9, -4.2, -5, -5.5, -5, -1.6, -4.4, -7.1, -7.7, -7, -2, -10.4, -8.2, -8.2, -4.9, -43.5, -7.6, -5.3, -12.4, -15.5, -6.7, -11.3, -6.2, -16.5, -12.5, -5.3, -11.1, -13.9, -8.8, -12.7, -14.5, -14.9, -6.6, -8.9, -7.9, -21.6, -7.7, -8, -10.2, -6.3, -15.3, -12.2, -13.2, -13.6, -9.7, -6.1, -13.4, -8.5, -11.9, -6.7, -7.5, -13.9, -9.9, -10.8, 16.6, -25.2, 0.9, 0.4, -3.8, -6.4, -9.4, -3.8, 5.6, 1.1, -0.6, -2.7, 2.7, 2, -2.9, -1.4, 0.5, -3, 0, -1.1, 1.3, -36.6, -9.5, -1.1, -7.7, -5.9, -6.8, -4.4, -13.8, -10.4, -5.5, -4.2, -8.1, -2, -11, 0.8, -8.9, 0.6, -8.7, -2.8, -3.1, -21.7, -4.3, -4, -3.3, -6.1, -6, -1.2, -4.7, -8.1, -5.2, -7.4, 0.4, -6.5, -8.7, -9.6, -6.3, -6.8, -1.3, -6.5, -8.5, -18.5, -7.2, -10.9, -2.6, -6.1, -4.9, -8.1, -5.1, -2.5, -8, -1.6, -5, -8.3, -5.3, -2.8, -3.7, -13, -6.6, -6.5, -0.7, -30.5, -8.2, -10.9, -10.9, -7.5, -5.1, -10.3, -4.7, -9.8, -8.4, -5.8, -3.3, -9.7, -12.5, -3.2, -0.4, -5, -4.9, -5.9, -10.9, -16.7, 4.4, 2.9, -3.4, -3.5, -1.5, -0.5, 0.1, -5.3, -2.2, -8, 3.7, -1.9, -1.7, 0.1, -3.4, -2.7, -4.6, -6.8, -1.7, -11.9, -9.2, -8.5, -10.5, -5, -9.4, -2.9, -15.1, -11.5, -9.9, -4.6, -10.3, -9.6, -9.2, -11.8, -11.2, -9.7, -11.2, -5.3, -11.9, -19.3, 6.1, -0.1, 5.2, 8.1, 2.6, 6.5, 4.1, 4.2, 3.6, -1.2, 3, 6.2, 3.8, 2, 2.7, -0.5, 3.9, 0.1, 4.1, -5.5, 8.6, 7.6, 6.2, 4.9, 5.9, 8.3, 6.6, 1.6, 14, 3.3, 4.6, 8.6, 6.2, 6.1, 0.6, 3.8, 12.4, 7.5, 2.3, -9.7, -3.5, 0.5, -6.4, -8.1, -5.7, -3.5, -1.5, -1.5, -6.4, 0.4, -2.6, 1.7, -3.6, -2.3, 2.2, -3.3, 2.1, -5.4, -5.8, -13.4, 7.6, 6.8, 4.3, 10.3, 0.9, 10, 8.1, 2.4, -1.5, 5.1, 3.1, -0.1, 4.3, 3.3, 6.8, 10.6, -0.4, 7, 6.5, -8, -7.1, -10.7, -5.7, -9.3, -10.8, -6.8, -16.4, -8.7, -11, -2.4, -5.7, -7.6, -12.3, -10.7, -13.1, -11.2, -7.2, -10.1, -4.1, -14.4, 3.3, 6.6, 7.1, 14, 12.5, 3.2, 9.8, 5, 8.8, 11.1, 7, 9.6, 11.5, 10.2, 8, 11.8, 14.5, 7.7, 8.1, -14.4, -16.6, -2.8, 9, 9.6, 10.9, 6.7, 5.4, 14.7, 9.9, 6.5, 7.2, 13.1, 9.5, 10.4, 7.6, 6.9, 13.4, 7.2, 6.4, -15.8, -15.1, -18.7, 6.5, 5.6, 5.7, 10.5, 10.9, 8.8, 7.9, 11.8, 8, 8.1, 6, 10.8, 7.6, 10, 6.8, 8, 0.5, -19.6, 0.2, 4.7, 2.2, 3.2, 3.2, 9.5, 5.1, 4.2, 1.6, 0.8, 6.8, 7.5, 2.6, 6.3, 3, 5.7, 3.7, 9.5, 1.4, -10.6, 1.7, -4.2, 6.4, 0.3, 3.9, 5.6, 0, 2.6, -4.6, 3.5, -4.1, -0.5, 1.7, -1.5, 0.6, -1.5, 3.5, 2.1, -1.6, -13.2, -7.7, 11.8, 6.7, 6.7, 5.8, 0.3, 4.6, 5.2, 7.9, 7.8, 11.7, 12, 4.9, 6.6, 8.4, 1, 2.9, 915.9, 1359, 1321, 1297.9, 1265.2, 1234.3, 1200.1, 1171.7, 1140.3, 1111.1, 1082.5, 1054.4, 1019.6, 991.7, 963.4, 936, 900.5, 870.9, 845.7, 814.6, 784.1, 746.2, 727.5, 692.1, 655.9, 638.5, 603.4, 570.5, 542.4, 503.1, 482.3, 448.6, 422.4, 392.8, 361.5, 321.9, 295.5, 266.8, 238.2, 209.7, -752.2, -1030.7, -485.7, -25.7, -3.3, 2.8, 0.6, 8.1, 0.4, -0.5, 3, -1.1, 1.4, 2.1, 8.1, -2.4, 4.1, 1.1, 3.7, -4.1, -2.4, 4.4, -12.4, -6.3, -18.1, -12.1, -14.3, -10.4, -10.8, -9.4, 14.8, 9.1, 13.7, 4.1, 14, 6.5, 7.8, 10.2, 5.8, 2, 8.9, 11.7, 1, 4.2, 2.7, -0.9, -1.6, -2.8, -6.5, 0.2, 1.3, -2.9, 0.8, -2.9, 1, -8.1, 1.3, -1.2, -4.1, 0.9, -4.7, -5.2, -11, -11.6, -9.9, -3.5, -7.1, -13.4, -6.3, -16.4, -8, -15.1, -7.1, -9.3, -11.3, -10.7, -14.4, -4.9, -2.9, -12.4, -11.2, -12, -11.2, 7.7, 4.5, 8.4, 10.6, 9, 9, 14.6, 15.9, 5.1, 10.6, 11.7, 14.5, 9.6, 8.5, 7.9, 8.6, 14.5, 12, 11.5, 10.6, 2.5, 8.8, 6.6, -1.4, 6, 4.5, 8.4, 8.9, 9, 2.5, 1.8, 4.7, 9.8, 8.6, 2.1, 6.7, 0.7, 6.7, 8.2, 9.8, 6.3, 2.3, 7.1, 3.8, 7.2, 5.9, 4, 9, 2.8, 6.9, 1.1, 8.4, 1.9, 2, -0.8, 8.1, -1.3, 5.1, 7.4, 5.3, 6.7, 8.4, 1.6, 9.2, 6.8, 7.2, 7.1, 5.2, 10.9, 8.7, 2.8, 1.3, 5.5, 5.7, 13.8, 5.7, 8.9, -2.7, 5.3, 11.1, 9.7, 4.1, 10.7, 8.4, 12, 12.8, 10.3, 15, 10, 11.1, 12.7, 12.1, 13.4, 4.5, 14.2, 9.9, 11.7, 12, 13.3, 9.5, 16.7, 8.5, 9.4, 4.8, 6.1, 2.6, -2.7, 5.2, 9.3, 0.9, -0.1, 3.2, 7.1, 10.8, 5.4, 7.1, 6.1, 7, 6.6, 7, 9.1, 12.5, -4.1, -10, -5.8, -4, -10.4, -9.9, -6, -12.1, -9.1, -10.5, -13.4, -11.9, -10.1, -3.9, -7.5, -10.9, -13.4, 5.5, -0.6, 3.9, -2.6, 7.3, -2.4, 2.9, 2.3, 1371.7, 1219.3, 795, 246.4, -0.4, 3.9, 1, -0.2, 4.2, 3.5, 2, 1.4, 5.8, 2.3, 1.7, -0.7, 4.9, 0.8, 1.3, 6.8, -3, 3.3, 3.8, 1.9, -3.3, 4.6, 1.4, 2.6, -2.7, 9.8, -3.4, 8.2, 6, -0.5, 0.2, 7.3, 2.1, 1.4, 1.6, 2.2, -1361.7, -939.5, -346.4, -5.1, -7.2, -1.9, -10.1, -10.2, -7.5, -10.4, -7.4, 0.4, 12.5, 5.5, 15.9, 4.7, -0.9, -0.1, 4, 3.8, 2.8, 0.3, 2.2, 2.1, -2.6, 2.1, 1.2, 6, 5.7, 6.7, 0.5, 2.6, 5.2, 2.7, 2.7, 3.2, 11.2, 3.8, 1.9, 3.5, 10.1, 3.8, 4.7, 1.3, 3, 0.8, 8.1, 5.7, 7.4, 5.4, 1.9, 1.4, 14.9, -6.3, -3.6, -4.3, -9.1, -6.4, -2.2, 2.7, -2.7, -8.7, -3.6, -0.2, -3.6, -3.6, -3.2, -0.8, 1.5, -4, -8.4, -6.6, 9.3, -7.6, -4.1, -5.3, -9.9, -4.5, -4.3, -0.7, -3.1, -0.4, -0.6, -2.7, -2.1, -6.6, -5.6, -3.7, -3.1, -5.1, 2.1, -4.4, 17, 4.3, 2.3, -3.3, 5.2, -5.4, -3.4, 3, 2.7, -0.5, -1.9, -6.6, 1.4, 0.3, -2.6, -0.8, -1.7, -6.2, 1.3, 5.2, 10.7, -1.3, 0.3, -3.3, -2.7, -7.9, 5.4, 2.4, 4.6, 4.4, -7.9, 1.6, 2, -7.8, -7.9, -1.7, 0.9, -4.6, -2.6, -2.6, 14.7, -1, 3.4, 8.4, 3.1, -4.9, 2.4, 1.7, 2, 4.7, 1.3, 2.8, 8.7, -0.5, -1.4, 1.4, 0.6, -0.2, -2.5, 2.1, 17.6, 9.1, 12.4, 12.7, 5.6, 13.5, 15.2, 4.6, -11.5, -9.1, -11.3, -10.1, -13.2, -8.3, -8.8, -14.3, -11.8, -7, -14.4, -13, 16.6, -11.6, -6.7, -9.2, -6.3, -4, -7.4, -8.3, -14.3, -2.8, -8.7, -1.1, -5.1, -10.5, -6.8, -10.3, -8.3, -6.5, -1.5, -12.2, 12.3, -1.3, 5.3, -2.4, 1.2, -3.2, 1.1, 8, 1.9, -0.3, 4, 4.5, -1.2, 3, -5.4, -4.4, -0.7, -2.3, -2.1, 2.8, 9.7, 1.1, -7.5, -2.3, -3.9, -3.3, 2, -1.3, -1.7, -6.3, -2.1, -0.8, -3.2, -3.8, -6.5, -4.3, -0.7, -8.5, -6.4, -1.3, 15.5, 17.3, 9, 10.4, 9.1, 8.4, 10.7, 9.5, 10.4, 7.7, 9.9, 7.3, 8.1, 9.9, 9.9, 12.8, 9.2, 7.6, 13.3, 6.5, 17.1, -4.1, 3.2, 1.2, 0.2, -3, -9.9, -0.6, -0.7, 0.7, 4.1, 0.1, -6.5, -0.1, -4.7, 1.5, 0.4, 3.2, -6.2, 0.3, 13, 13.4, 9.4, 10.9, 9.3, 9.1, 7.1, 3.5, 10.6, 11.7, 14.2, 7.8, 10.4, 8.2, 6.7, 10.7, 14, 8.9, 12.1, 11.4, 20.5, 17.7, -1.7, -7.5, -2.3, -2, -2, 0, -2.4, -5.6, -2.7, 1, -4.3, -2.8, 0.3, -1.4, 0.8, -12.3, -8.3, -2.1, 17.3, 1.8, 4, -1.9, 2.2, -1.7, 1.3, 2.8, -2.9, -7, -0.9, -1.6, 0.3, -7.1, 1.7, 5.5, -3.8, -0.8, -1.4, -6.3, 34.1, 7.2, 14.6, 9.8, 12.2, 13.2, 10.3, 5.4, 16.2, 11.4, 10.7, 5.3, 14.6, 9.1, 7.5, 11.4, 8.1, 11.1, 11.1, 3.9, 30.5, 1.7, -2.6, -10.8, -5.9, -12, -9.3, -10.2, -12.9, -6.4, -4.9, -12.2, -10.2, -9.1, -13, -10.9, -2.9, -6.3, -8.2, -6.5, 17.2, 4, -1.5, 2.9, 6.9, 1.4, 1.5, 6.4, 7, 8.2, 1.7, 4.2, 3.3, 6.9, 3.5, 2.1, 9.7, 5.3, 2.8, 6.7, 23, 14.9, 6.6, 11.7, 11.6, 14.4, 10.8, 11, 12.9, 1.8, -8.5, -16.7, -12.2, -7.1, -14.8, -7.5, -14.3, -13.6, -10.7, -11.4, 19.2, -3.8, -2.9, 6.4, 1.8, 4.3, -0.6, 2.6, 4.5, 6.8, -3.9, 0.5, -6.7, -2.8, -7.9, -2, -0.1, 7.9, -3.9, 3.9, 26.9, 8.8, 4, -5.6, -3.8, -1.3, -13.4, -7.4, -1.6, -7.7, -15.5, -7.8, -6.2, -7.9, -15.3, -15.8, -10.2, -6.3, 0.6, -10.1, 33.6, 2.4, -3.2, -5.6, -6.7, 0.4, 4.9, -1.8, 1.8, -2, 2.2, -6, -0.5, -3.4, 6.1, -4.7, -4, -7.3, -1.7, 4.3, 32.1, -3.1, -8.5, -3.7, -0.3, -9.4, -1.7, -7.3, 0.5, -4.7, -8, -8.3, -4, -7.4, -3, -3.6, 1.8, -3.6, -1.5, -1.5, 23.8, 1.5, 1.9, -3.6, 5.6, 7.4, 8.8, 5.6, 5.1, 2.4, -2.7, 10.8, 4, 3.5, 5.9, 4.5, 4.7, 3.2, 0.1, 5.3, 31.2, 6.5, 8.5, 10.3, 7.5, 11.4, 7.9, 9.2, 16, 8.9, 8.8, 11, 8.2, 12.7, 12.1, 14.3, 11, 13.7, 5.7, 11.9, 30.9, 1.2, -5.9, -7, -0.2, -5, -3.7, -7.7, -6.4, -2.9, -0.3, -3.3, -4.2, -3.4, -3.7, -4.5, -3.7, -6.2, -6.1, -8, 36.8, 7.2, 15.4, -8.1, -0.8, -13.7, -11.9, -11.2, -13.7, -8.5, -12.3, -6.9, -8.8, -10.8, -12.4, -11.7, -8.6, -8.3, -13.4, -7.4, 29.6, 11.4, 11.1, 11.6, 11.6, 3.5, 8.7, 11.1, 9.5, 11.7, 8, 8.8, 5.9, 4.9, 9.2, 11.2, 2.2, 6.2, 13.1, 10.9, 31.4, -2.7, 1.9, -4.2, -1.6, -2.5, -6.9, -6, -7.7, 2.8, 0, -2.4, -6.2, -2, 1.9, -8.2, -3.4, 2.7, -6.3, -5.7, 43.9, 9.4, 10.5, -2.9, -12.4, -1.9, -4.9, -9.8, -15.7, -9.8, -8.6, -12.5, -16, -10.3, -8.6, -6.1, -16.2, -10.7, -13.8, -11.2, 17.5, 0.1, 2.2, -1, 4.1, 2.4, -1.7, -0.4, 9, -0.6, -1, 5.1, 1.7, 7.1, -2.4, 3.3, -0.8, -1.5, 2.3, 6, 27.1, -1.1, 2.3, 8.1, -2, 5.3, 4.2, -2.3, -1.6, 1.1, 6.9, 6.2, 5.1, -0.1, 3.3, -2.4, 4.1, 7.8, 1, -0.3, 70.2, 20.2, -3.6, 3.7, 4.5, -0.4, 2.4, 5, 2.7, 5.6, -0.1, 4, -0.8, 6, -4.2, 10.4, 0.8, 0.8, 1.9, 2.7, 23.7, -0.5, 4.1, 4, -5.3, 5.2, 0.4, -0.6, 0.1, 0.2, 7.3, -2.9, 4.8, 8.1, -3.7, 1.2, 1.8, 3.5, 2.5, 3, 37.7, 0.7, 3.7, 1.9, 1.3, 2.2, -0.4, 7.4, 1.6, -3, 6.7, 2, 0.2, 3.9, 4.9, -0.4, -0.4, 5.1, -2.9, 0.3, 61.6, 20.4, 5.3, 0.9, -1.7, 0.5, 1.7, 3.2, -0.1, 0.8, 3.3, 2.4, -3, 2.8, 6.2, 5.2, -1.7, 4.2, 3.6, -2.5]
Loading
single_venus_steps — settle 14.5→21.8s, overshoot 2545.6→18.9W, RMS 15.4→14.3W
Metric Base Head Δ
settle_mean_s 14.5 21.8 +50%
settle_p95_s 24.4 66.9 +174%
unsettled_events 0 0 =
overshoot_mean_w 982.7 17.8 -98%
overshoot_max_w 2545.6 18.9 -99%
band_crossings_per_h 18.0 9.0 -50%
steady_rms_w 15.4 14.3 -7%
mean_abs_grid_w 54.1 55.4 +2%
avoidable_import_wh 43.9 39.1 -11%
avoidable_export_wh 10.2 16.3 +60%
battery_travel_w_per_h 49842.0 29699.0 -40%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 60
    y-axis "W"
    line [299.8, 300.2, 169.1, 6.1, -4.2, 6.3, -1.7, 11.3, 3.9, -6.1, 4.3, 3.3, 0, -0.3, 8, 3.2, 5.4, 1.8, 7.6, -3.1, 9.2, -3.9, 7, 1.3, 5.6, 1.1, 6, -2.5, -3.1, 3.8, 0.8, 9.4, 3.8, 8.5, -3.2, -3.2, 6.1, 4.4, -4.2, 11.5, -4.3, -0.5, 9.3, -3.5, 0.8, -0.8, 8.2, 0.9, -2.1, -0.5, 3.9, -3.7, 5.5, 2.7, 7.2, 6.3, -0.3, 6.2, 5.2, 4.8, 2.6, -7.8, -1.1, 4.6, 3.4, -5.8, 5.5, 3, 4.3, -0.4, -0.2, 4.7, 8.7, -3.7, 9.8, -7, 8.3, -0.2, -1.1, 4, -4.7, 0.8, 4.3, 4.2, 0.2, 12.1, 2.8, 1.1, -5.2, -4.2, 3.8, 11.4, -4, 9.1, -2.2, -2.1, 2.9, 1.9, 4.3, -1.4, 5.6, -8.2, 4.9, 7.8, -6.3, 10.8, -1.6, 3.4, 2.3, 1.7, -1.4, 3.9, 4.2, -0.2, -1.1, 3.4, 6.1, -1, -1.5, 8.1, 4.8, 0.2, 4.2, 0.6, -0.4, 7.2, 2.4, 2.8, -3, 0.8, 7.6, -6.6, 3.7, -3, 7.5, 2.8, 0.6, -6.3, 1.5, 3.6, -6.4, 7.4, 4.1, -2.6, 12.4, -0.5, 6, 2.9, 2.1, -0.4, 0.2, -0.2, 7, 3.6, 3.9, -1, 5.3, -4.4, 2.4, 5.3, -3.2, 2.8, 0.8, 5.7, 1.5, 7.2, -3.3, -0.7, 0.9, 8.2, -3, 1.9, 4.8, -1, -0.9, 10.8, 0.2, -0.5, -6.2, 1.5, 5.5, -6.2, 11.3, -0.5, 1.7, -1.6, -3.6, 4.3, -2, 3.5, 2.5, 3.4, 1.8, -4.5, 4.9, 0.5, 4.8, -0, 1.7, 4.3, 6.9, -2.7, -2.7, 12.6, 1.9, -1.4, 9.1, -1.6, 5, 9.2, 2, -4.1, 3.5, -1.2, 6.7, -1.8, 3.5, 2.9, -3.5, 2.5, -4.4, 7.8, 0.2, 2.3, -0.8, 4, -1, 7, -2.6, 7.7, 1.8, 7.6, -4.5, 4.2, 6.9, 0, 3.9, 4.2, 5, 6.7, 0.8, 2.5, 3, -2.7, 4.8, 1.3, 3.2, 6, -1, 5.5, 5.2, 1.9, 8.6, 6.7, 9.3, 1.1, -3.5, 0.5, 9.4, 3, 4.2, 3, 8.9, -7.7, 8.1, 0.2, 7.8, 12.3, 2.8, 6.1, 2, 2.5, 0, 4.2, 3.9, -0.2, -1.2, -3.8, 10.4, -6.4, 3.3, -4.8, 11.2, -2.6, -0.6, 14.2, -5.4, 4.6, -2.2, 2.2, 5.1, -3, 5.2, 2.8, 6.9, -0.6, 2.6, 4.8, -2.4, 5.5, 0.7, 1.4, -6, 5.6, 3.4, 3.5, 5.8, 7.1, -0.6, 2001.3, 1927.9, 1755.2, 1113.2, 313.8, -14.5, 3.4, -0.1, 8.4, -5.5, 8.7, 4.3, 2.3, 3.2, -2.5, 6.2, 1.5, 3.9, -1.6, 6, 10.6, -4.1, 8.1, -3.9, 8.5, 0.3, 0.6, 0.8, 7.6, -1.7, 4.5, 8.5, -8.1, 2.4, 2.4, -0.3, 7.4, 3.8, -1, 7.5, -7.2, 6.4, -2.1, 4.2, -1.7, 6.2, 9.3, 0.9, 6.1, 6.2, 5.2, 1.2, 3.5, -6, 6.4, 5, -3.8, 4.2, 9.6, -2.5, 0.7, -0.2, 2.2, 4, 4.2, 3.1, -2.7, 2, 1.2, 6.9, -7.1, 3.5, 2.6, 0.9, 1.3, -0.3, 0.2, 2.7, 6.7, 6.6, -1.9, 0, 4.2, 3.8, 5.7, -3.5, 6.5, 3, 8.5, 6.9, -1993.3, -1403.9, -594.9, 204.4, 1000.5, 1805.3, 2467.8, 2468.6, 2281.4, 1650.2, 848.7, 105.5, -6.6, 6.5, 2, 5, -4.6, 5.8, 1.7, -3.2, 7, 1.6, 0.5, 0.6, 3.6, 3.8, -0.2, -2.1, 4.4, -1.8, -1.8, 8.2, -2.3, 6.5, -2.2, 2.3, 3.6, 10.7, 4.5, 0.6, 0.1, 7.1, 0.8, -1.6, 4.3, 8.7, -2.2, 5.7, -4.3, 5.8, -2, 4.6, -1.4, 5, 3.6, 0.6, -1.9, 5.1, 0.2, 10.6, -1.9, 0.9, 6.9, 5.6, 7, 6.4, 6.2, -6.4, 1.3, 0.2, 13.7, 1.6, 0.6, 13.4, -1.2, 3.3, -6.9, 7.1, 0.2, 2.8, 10.1, 0.8, -7, 7.9, -1.6, -1.9, -0, 10.3, -3.9, 8.4, -1.9, 7.2, -6.5, 1.3, -2.7, 6.3, 5.3, -1.6, 6.4, 0, 5.2, 0.8, 5, 13, -0.2, -1.6, 6.2, -4.8, 3.8, 4.8, 6.5, -1.3, -2.8, 6.8, 5.4, -1, -2, 1.4, 3.6, 5, -2.5, 3.1, 2, -4.3, 8.6, -3.5, 9.1, -0.7, -2.2, 4.1, 9.6, -6.9, 6.4, -2.9, 0.6, 0.6, 12.7, -1.8, 3.9, 2.8, 2.4, 6.8, 6.8, 5.2, 5.3, 3.3, 1.7, 752.6, 1463.3, 1358.8, 973, 199.2, -4, 2.7, 0.7, 4.9, 2.8, 3, -2.7, 1.3, -0.5, 2.9, 6.9, 1.1, -0.5, -3.9, 1.6, 6.3, 0.9, 3, -3.5, -1.1, 5.3, 5.7, 5.5, -3.4, 0.2, 6.3, -5.1, 2.5, 3.6, 5.5, -3.5, 3.1, 1.5, -2.1, 0.1, 7.9, 1.4, -2, 4.7, -4.2, 4.7, 3.6, 4.2, -3.3, 8.6, 0.1, 4.2, 7.8, 1.6, -0.4, 2.9, -3.7, 5.7, -1.6, -0.4, 4.9, -0.7, 7.1, 8.6, -3.3, -1.7, 1.5, 8.3, -0.2, 6.2, 3.7, -3.4, 7.7, 3.5, -5.6, 9.8, -0.3, -4.8, 7, -3.7, 6.9, 8.2, 1.6, -0.7, -1.6, 2.2, -1.4, 6.4, 8.2, 1.1, 6.6, -3.1, 4, 5.9, -2.5, 2.5, -1.2, 3.8, 6.2, -6, 11.1, 1, -2.3, -1.1, 3.2, 3.1, 0.8, 7, -4.7, 8.9, -1.8, -3.6, 3, 1.4, 4.2, 4.7, 1.1, 0.6, -745.4, -1285.5, -490.1, 307.2, 1106.8, 1776.2, 1767.5, 1596.5, 957, 164.7, 5.1, 2, 4.1, 1.8, -5.9, 1.9, 6.6, 2.5, 2.8, -1.8, -7.2, 2.5, 5.7, 3.2, 2.3, 10.2, 0.3, 6.6, -2.8, 5.1, -0.9, 2.2, 8.6, 3.4, -0.8, -0.5, 6.9, 5.2, -1.3, 3.5, 8.6, 3.9, 1.9, -0.8, -3.5, 3.2, 1.7, 11.5, 3.6, -1.3, -4.8, 5, 6.1, 5.1, 1.4, -3.1, 10.7, 1.7, -0.1, 1.8, -4, -0.4, 7.4, -1.7, 5.2, 3.9, 8.1, -3.8, -1.6, 4.1, 10.3, -8.2, 5.5, 10.4, 1.8, -5.8, 8.8, 4.1, -4, -4.9, 9.3, -8.8, 8.3, -4, 2.8, 0.7, 6.8, -7.8, 10.7, 742.2, 1465.2, 1359.6, 977.1, 200.4, -3.2, 0.8, -2.4, -1.2, 3.9, 1.4, 8, 3.8, -6.8, -2.2, 0.4, 6.9, 7, 2.8, -1, 3.8, 7.4, 9.2, -3.9, 5.6, 2.4, -4.2, 0, 6.7, 2.7, 1.4, 0.2, 7.9, 5.7, -1.1, -0.9, 2.4, 2.9, 3.9, 2.8, 4.5, -0.5, 4, 1.9, 2.1, 6.2, 6, -3.6, 2.6, 3.7, 3.9, 0.3, -0.2, 7.5, -0.4, -1.2, 9.2, 0.5, 2.5, 3.3, -7.8, 3.5, -0.8, -0, 3.6, -1.8, 9.2, -2.9, -3.4, 0.9, 7.7, 3.1, 0.4, -0.1, 0.9, 8.1, 4.7, 0.1, 1.6, 2, 0, 5.5, 13.5, 4.8, 2.3, -0.2, 2.5, 4.2, 11.9, -6.5, 7.7, -1, 4.3, -5.2, 1.5, 4.8, 2.8, -0.8, 2, 4.9, 2.1, -1.2, 7.8, -4.2, 0.9, 9.6, 2.1, -6.2, 5.1, 4.2, 5.4, -2.9, -0.1, -1485.5, -898.1, -96.4, 699.6, 1501.2, 1848.8, 1750.8, 1364.8, 582.9, -6.3, 9, -1.7, 6.3, 2.3, 7.6, 0.4, 0.1, 0.8, -2.9, 6.5, 4.9, -1.3, 3.7, 4.5, 0.4, 5.8, -3, 7.5, 0.7, -7.8, 5.3, 6.7, -3.9, 5.8, 6.4, 3.2, -0.8, 5.8, -6.9, 9.3, -3.4, 1.3, 0.1, 5.4, -4.4, 1.9, 12.1, -3.2, 4.8, 5.9, 3, 2.6, 1.1, -0.7, -2.4, 8.2, -4.1, 1.8, 1.6, 6.4, -1.9, 1, 4.7, 4.7, -3.4, 7.5, 0.4, 8.8, -4.9, 9.2, 4.2, 3.5, -0.9, -4.5, 5.8, -2.7, 4.6, 11, -5.4, 8.9, -1.7, 0.9, 5, 5.7, 7, 8.3, 2.3, 4.8, 9.9, -3, 9.6, -2.2, 4.5, 2, 11.2, 5.7, -0.8, 0.2, 2.6, 0.6, 5.3, 1.1, 4, -4, 3.7, 0.6, 9.4, 2.9, -0.8, 0.5, 3.9, 5.1, 9.4, -2.6, 2.2, 5, -4.2, 3.3, 3.6, 2.9, 7, -1.8, -3.3, 5.5, 7.8, 1.1, 1.5, 3.3, 2.3, -3.6, 3.8, 10.6, -6.6, 3.8, 4.1, 1, 4.3, 4.9, -2.8, 1.6, 2.5, 0.5, 3.2, 7.5, -2.8, 6.2, 7.9, -5.7, 7.8, -7.6, 0.9, 8.8, -7.9, 0.1, 5.5, 1.4, 8.9, 5, 2.5, 2.8, 5.9, 6.5, 5.1, 9.3, -0.5, -1, 4.1, 2.3, 1.1, -0, 3.9, 7.4, -3.6, 0.4, 2.1, 3.2, 8.9, -1.9, 6.5, 4, 8.4, 1.2, 3.7, -5.5, 3.5, 1.6, 5.9, 0.6, 4.4, 9.8, -3.5, 6.3, 9.9, 5.7, -5.3, 2.9, 2.4, 4.6, 2.2, 7.5, -4.9, 1.9, 3.9, 10.7, -1.8, 4.6, 2.5, 5, 0.9, 12.7, -6.8, -0.9, 1.4, 1.6, 7.1, -5.2, 2, 9.1, -0.3, -2.9, 4.2, 2.6, 0.7, -3.8, 0.6, 5.2, 1.8, 2.7, -7.8, 11.1, 2.7, 4.6, 7.8, -2.7, 10.4, 0, 2.9, 2.8, 0.8, -0.5, 6.6, -0.1, 11.8, -1, -2, 10.1, 3.9, -1.9, 5.3, 3, -4, 12.6, -7.8, 8.1, 0.1, -1.6, 1.4, 4.2, 6.3, -0.7, 2.7, 4.6, 6.6, -0.1, -3.4, -3.5, 2.6, -2.4, 7.7, 4.8, -0.5, 1.7, 0.4, -2.4, 11.6, -1.1, 5.3, -5.1, 6.5, 5.5, 0.8, 5.5, 5, 1.1, -4.1, 2.7, 11.2, 1.5, 0.9, -0.6, 3.1, -0.4, 2.2, -0.4, -1.3, 4.5, 1.9, -2.4, 1.6, 8.4, -3.8, 2.6, 8, 2.4, -2.2, -1, 6.4, -0.5, -1.3, 1.5, 3, 4.6, -0.2, 1.2, -0.7, -2.2, 4.5, 5, 0.9, 3.8, -3.4, 7.2, 4.9, 0.8, -6.8, 6.2, -0.1, 7, 2.9, -1.5, -2.1, 5.5, 8, 2.9, -0.7, 2.8, 6.7, -3.4, 6.1, 5.3, 5.7, 7.9, -0.7, 0.7, 4.2, -3.8, 8.7, -0.8, 0.4, 1, -4, 1.1, 8.4, 0.8, -5, 6.1, 2.1, -2.2, 2.5, -2.9, 2.5, 7.4, 8.2, -1.8, 11, -2.5, 4.2, -2.9, 6.2, -5.8, 1.3, 10.5, -3.1, 1.2, 0.7, 11.7, 1.7, 2.2, -8.6, 9.1, -0.9, 2.5, 8.1, -6.8, 1, 2010.3, 1928.3, 1761.6, 1114.2, 311.5, -8.5, -3.1, -3, 6.8, -1, 4.2, 4.3, 1.4, 6.8, -0.6, -6.2, -0.1, 5.9, 11.7, -4.2, 1.4, 0.8, 5.1, 1.7, 7.8, 3.9, -2, 1.4, 8.8, -6.8, 2.6, 5, 9.9, 3.1, -1.8, 1, 4.8, 0, 7.8, 7.5, -0.2, -0.5, 2.8, 2.5, 7.3, -2.2, 10.2, 0.1, -4.2, 3.7, 5.3, 4.2, -2.8, 5.9, 6.7, 4.8, 0.8, 3.8, 3.4, -0.1, 2.8, 1.8, -2.2, 4.3, 8, -0.2, 0.8, 4.8, 0.4, 7.4, -1.5, 5.4, 1.3, -3, -1, -2.1, 5.9, -2.3, 3.9, 5.9, 3.2, 3.6, 5.8, 2.1, 0.5, -0.6, 7.3, 6.8, 2.8, 0.9, -999.2, -1799.8, -998.1, -194.9, 598.5, 1398.2, 2200.7, 2514.3, 2414.6, 2027, 1252.2, 449.1, -22.3, 7, 0.5, -7, 9.1, -2, -3.9, 5.8, -4.8, 9.2, -5.8, 2.4, 3.8, -7.2, 3.5, -0.2, 6.4, -8.4, 3.7, 2.8, 0.1, 9.4, -4.2, 3.6, 1.3, 2.5, 10.1, 0.6, 3.8, -2.7, 3.8, 4, -2.5, 7.5, -8.3, 9, 3.9, 1.1, -4.1, 8.9, -3.1, 6.6, -3.9, -1.8, 5.3, -1.2, 2.8, 9.1, -3.3, 3.8, 9.7, 1.8, 5.3, -1.4, -4.8, 2.4, 5.6, -0.5, 8.3, -4.1, 0.9, 7.1, 0.3, 3.7, -4.3, 9.8, -0.6, -1.8, 1.1, 5, -1.1, 0.5, -1.3, 1.1, 7.3, -3.5, 7.8, -0.6, -2.6, 5, 1.6, 3.7, 0.2, 4.4, 0.7, 9, 1.2, -8.1, 2, 1115.4, 1077, 897.5, 261.1, -10.5, 7.5, 1.2, 5.2, 1.5, -1.1, 8.8, 3.7, -1.9, -4.1, 3.3, 5.1, -1.2, 1, 9.7, 3.1, -3, 10.7, -3.5, 3.4, 4.2, 1.1, 6.1, -8.2, 4.6, -5, 2.3, 4, 9.2, -4.5, 4.9, -0.2, 2.5, 7.8, 1.8, 0.4, 2, 5, 5.9, -5.2, 5, 3.6, 2.5, -0.8, -4.2, 6.7, 2.7, 4.4, 6.8, 2.3, -0.3, 1, -6, 1.2, 11.5, 1.2, -4, 3.2, 5.7, -1.7, 9.8, -6.8, 9.1, -2.4, 1.8, -1.2, -1.8, 2.7, 9.6, -4.2, 4, 5.4, 4.6, -4.6, 4.4, -1.7, 2.8, -2.2, 9.1, 1.8, -1.3, 1.3, -2.5, 6, 1.8, 3.9, 2.5, 4.8, -7.2, 4.3, 0.4, 4, 4.1, 0.3, 2.6, 8.9, -2.2, -2.3, 1, -0.1, 7.8, -0.1, 3.7, -3.2, 1.5, 1.9, -1.2, 5.8, -6.5, 5.6, 11.1, -4.8, 3.8, 9.4, 5.1, -2.2, 1.4, -2.9, 12.1, 2, -1.8, 10.7, -3.6, -0.5, 1.6, 4.6, 6, 4.9, -0.7, 1.2, -2.4, 1.2, -2.5, 6.3, -2.4, -2.9, 2.9, 1.1, 2.7, 4.7, 4.3, 8.2, 2.1, 0.8, 0.6, -1.6, -2.1, 9.9, 7.7, 3.8, -4.8, -3.4, 7.5, 7.8, -0.5, 1.3, 0.1, -1.2, 6.6, 3.8, 3.4, -8.3, 3.5, 4.5, 7.2, -2.9, 4.7, 6, 1.7, 1.1, 0.2, 0.6, 4.9, -7, 3.8, 0.8, 3.4, -0.3, 2, 7.7, 5.6, 3, 1.3, -0.6, 3.8, 0.3, 6.9, 2.5, -3.1, -1.1, 0.9, 6.8, -0.2, -3.2, 6.1, 9.4, 2.9, -7.4, 7.4, -0.5, 4.4, -3, 3.4, 8.5, 1.1, -4.3, -1.5, 7.2, -5.2, 8.1, -7, 5.7, 2.9, 3.2, 5.7, 8.2, 1.9, -4.9, 4.7, 7.6, 8.9, 12.5, -8.2, 8.8, -1.8, 2.1, 9.3, 0.3, 0.1, -2.1, -1, -2.4, 4.2, 4.8, 7.8, -4.8, 4, 3.9, -3.2, 3.7, -1.3, 5.4, -3.2, 2.2, 9.4, -2.9, 9.4, 4.3, 5.8, 4.6, -4.1, 9.5, -3.9, -0.6, 0.9, 1.8, 0.1, 8.6, -6, 8, -8.3, 12.3, -0.1, 8.3, -0, 5.1, -2.7, -2, -0.2, 5, 4.1, -6.2, 4.7, 7.1, 4.5, 6.2, 1.9, -5.5, -0.7, 8, -3.6, 0.8, 11.5, -3.2, 8.2, -4.6, 7.4, -3.9, 8.6, -9.2, 6.1, 4.6, 6.8, 7.2, -1.7, -1.2, -1086.3, -488.9, 308.4, 886.1, 785.7, 433, -1.1, 9.2, 0, 9.5, 2.4, 0.7, -0.4, -4.8, 5.6, -1.2, 6, -3.6, 1.5, 2.1, 9.1, -1, 7.6, -4.8, 5.2, 4.8, 11.8, -4.3, 7.8, -2, -0.8, 4.7, 9.5, 1.7, 1.1, -6.7, -0.6, 4.7, -2, 6, 1.8, 0.2, -0.2, 4.3, -7.8, 7.8, 2.8, 1.6, 2.1, -2.2, 1.3, 5.5, 6, 1.2, -3, 2.9, 7, -4]
    line [299.8, 250.2, 124.1, 27.9, -6.3, 7.1, -1.9, 11.1, 4.2, -9.3, 5, 2.6, 0.3, -0.1, 8.8, 4, 6.2, 2.5, 5.3, -3.3, 9, -4, 6.7, 1, 6.4, 1.4, 5.7, -2.6, -3.3, 3.6, 1.2, 5.2, -2.4, 5.3, 1.5, -2.4, 6.9, 2.2, -5, 11.3, -4.5, -0.7, 9.1, -3.2, 0.6, -1, 8, 0.7, -2.3, -0.8, 4.2, -3.9, 5.3, 2.5, 7.1, 6.2, 0, 7, 6, 5.6, 2.9, -7, -1.2, 4.5, 3.2, 1.5, 5.3, 2.9, 5.1, -0.1, 0.6, 5.5, 9.5, -6.9, 9.7, -7.2, 8.1, 0, -1.4, 3.9, -4.4, 1.2, 5.1, 4.9, 0.5, 11.9, 2.5, 0.9, -5.5, -4.5, 3.6, 11.2, -4.1, 9.9, -1.4, -1.8, 2.7, 1.7, 4.1, -1.7, 5.4, -7.4, 4.7, 7.6, -6.6, 10.6, -1.8, 3.1, 2.1, 1.5, -1.5, 3.6, 4, -0.5, -1.3, 3.2, 5.8, -1.2, -1.6, 7.8, 4.6, -0, 4, 0.3, -0.1, 6.9, 2.2, 3.1, -7.2, 1.1, 7.4, -6.8, 3.5, -2.8, 7.2, 2.5, 0.9, -5.5, 1.2, 3.5, -6.6, 7.2, 3.9, -2.8, 12.2, -0.8, 5.8, 4.8, 2.1, -0.3, 0.2, -0.2, 7, 3.6, 4, -1, 5.3, -4.4, 2.5, 5.4, -3.2, 1.9, 4.9, 5.8, 2, 7.2, -3.2, -0.6, 0.9, 8.3, -2.9, 1.4, 4.8, -1, -0.9, 10.8, 0.3, -0.4, -6.2, 1.5, 5.5, -6.2, 11.3, -0.4, 1.7, -1.5, -3.5, 4.3, -2, 3.6, 2.5, 3.5, 1.8, -4.5, 4.9, 0.6, 4.8, 0, 1.8, 4.4, 6.9, -2.6, -2.7, 12.6, 2, -1.4, 9.1, -1.6, 5, 9.2, 2, -4.1, 3.5, -1.2, 6.7, -1.7, 3.7, 2.9, -3.5, 2.5, -4.3, 7.8, 0.3, 2.4, -0.8, 4, -0.9, 7, -2.5, 6.8, 1.3, 7.6, -4.3, 4.3, 7, 0.1, 4, 4.2, 5, 6.7, 0.8, 2.6, 3.1, -2.7, 4.8, 1.3, 3.3, 6, -0.9, 5.5, 5.2, 2, 8.6, 6.8, 9.3, 1.1, -3.5, 0.5, 9.4, 3.1, 4.2, 3.2, 9, -7.5, 7.2, -0.7, 7.8, 12.3, 2.9, 6.2, 2, 2.6, 0, 4.3, 3.9, -0.2, -1.1, -3.6, 10.5, -6.4, 3.4, -4.7, 11.2, -2.5, -0.6, 13.2, -5.4, 4.7, -2.1, 2.2, 4.8, -3, 5.2, 2.8, 7, -1, 2.1, 4.8, -2.4, 5.5, 0.7, 1.5, -6, 5.6, 3.5, 3.6, 5.8, 7.1, -0.6, 2001.3, 1928.1, 1830.2, 1653.5, 1289.2, 917.6, 552, 182.2, 8.5, -5.8, 9.3, 4.9, 3, 3.2, -2.5, 6.8, 2.1, 4, -1.9, 5.5, 10.2, -4.5, 7.7, -4.3, 8.1, -0.1, 0.2, 0.4, 7.2, -2, 4, 8.6, -7.4, 0.5, 3, 0.3, 8, 4.5, -0.4, 8.2, -6.5, 6.6, -2.5, 3.8, -2, 5.8, 8.9, 0.5, 5.7, 5.9, 4.9, 0.8, -0.8, -8.4, 6, 4.7, -3.7, 4.8, 10.2, -4.8, 5.2, 0.5, 2.8, 4.6, 4.3, 3.8, -2.6, 2.1, 1.8, 7.6, -6.5, 3.1, 7.2, 5.5, 4.5, 1.4, 0.4, 2.3, 6.3, 6.7, -1.2, -0.3, 3.8, 3.5, 5.2, -3.9, 6.1, 3.1, 9.1, 7.5, -1992.6, -1903.3, -1544.2, -1145, -748.8, -344, -25.7, 1.2, -4.2, 8.7, 2.1, 7.5, -6.4, 6.2, 1.8, 4.8, -4.9, 5.5, 2, -3.5, 6.7, 1.4, 0.3, 0.3, 3.3, 3.5, -0.4, -2.3, 4.1, -2, -1.5, 8, -2.6, 7.2, -2, -1.9, 3.4, 7.5, -0.7, 0.4, -0.2, 6.8, 0.5, -1.8, 4.1, 8.4, -2.3, 5.5, -4, 5.5, -2.2, 4.3, -1.6, 4.8, 3.3, 0.3, -1.1, 4.8, 0.1, 10.3, -2.1, 1.7, 6.7, 5.4, 6.8, 6.2, 6, -6.2, 1.6, -0, 13.4, 1.3, 0.4, 9.2, -1.1, 3.6, -8.2, 6.8, 0, 2.5, 9.8, 0.6, -7.2, 8.7, -0.9, -1.7, -0.2, 10.1, -4.2, 8.2, -2, 8, -5.8, 1.1, -1.9, 10.6, 8.1, -0.3, 6.1, -0.2, 5, 0.6, 4.7, 12.7, -0.5, -1.8, 5.8, -5, 3.5, 4.5, 6.2, -1.6, -2.5, 6.5, 5.2, -1.3, -2.3, 1.1, 3.9, 5.8, -2.8, 2.8, 3.2, -4.7, 8.3, -3.3, 9.8, 0.1, -1.5, 3.8, 9.3, -7.1, 7.1, -2.7, 0.3, 0.3, 12.4, -2, 4.6, 3.5, 3.1, 6.6, 6.7, 4.8, 5.1, 3, 1.4, 752.4, 1413, 1313.4, 1137.8, 774.3, 408, 84.4, -0.7, 4, 2.9, 3.1, -2.6, 1.4, -0.4, 3, 6.9, 1.2, -0.4, -4.3, 1.7, 6.4, 1.1, 2.7, -3.3, -1.1, 5.4, 5.8, 5.6, -3.4, -0.2, 6, -5, 2.5, 3.6, 5.5, -3.4, 2.2, 1, -1.9, 0.2, 7.9, 1.4, -1.9, 4.7, -4.1, 4.7, 3.6, 4.3, -3.2, 8.7, 0.2, 4.3, 7.8, 1.7, -0.8, 2.9, -3.6, 5.7, -1.5, -0.3, 5, -0.6, 7.2, 8.7, -3.2, -1.6, 1.6, 8.3, -0.1, 6.3, 3.7, -3.3, 7.7, 3.5, -5.6, 9.4, -0.2, -4.7, 7.1, -3.6, 7, 8.2, 1.6, -0.6, -2.1, 2.3, -1.3, 6.5, 8.2, 1.2, 6.7, -3, 4.1, 5.9, -2.4, 2.5, -1.1, 3.8, 6.2, -5.9, 11.2, 1.1, -2.3, -1, 3.3, 3.2, 0.9, 7, -4.6, 9.1, -1.6, -4.2, 3, 1.4, 4.3, 4.8, 1.2, 0.6, -745.4, -1460.5, -1240, -842.6, -443.1, -67.8, -1.8, 6, -1.4, -1.9, 4.9, 1.8, 3.8, 1.6, -6.2, 2.2, 6.2, 2.3, 2.6, -2, -7.4, 2.2, 5.5, 3, 2.1, 9.9, 0.1, 6.4, -3, 5.3, -0.6, 2, 9.4, 3.6, -0.9, 0.2, 7.7, 5.5, -1, 3.2, 8.4, 3.6, 1.7, -1.1, -3.8, 3.9, 2, 12.2, 4.4, -0.6, -4.1, 0.8, 4.9, 3.9, 0.6, -3.3, 11.4, 2, -0.3, 1.6, -3.9, -0.6, 7.2, -1.9, 4.9, 3.7, 7.8, -3.5, -0.9, 3.9, 10.1, -7.4, 5.3, 10.2, 1.6, -5.9, 8.5, 3.9, -3.8, -4, 9, -8.4, 8.1, -4.2, 2.6, 5.4, 8.5, -6, 10.4, 742, 1415, 1314.2, 1141.9, 775.5, 412.5, 82.7, -1.6, -1.2, 4.3, 1.9, 8, 3.8, -6.3, -1.8, 0.4, 7.3, 2, 0.8, -0.6, 4.2, 7.9, 9.7, -4, 1.1, 1.4, -3.8, 0.5, 7.2, 3.1, 1.8, 0.2, 8.4, 6.1, -0.6, -1.4, 2.9, 3.4, 3.3, 2.3, 4, -1.1, 3.5, 1.3, 1.5, 6.8, 6.5, -3.6, 3, 3.7, 3.4, -4.2, -0.2, 8.1, 0.1, -1.2, 9.7, 1, 3, 3.2, -7.9, 4, -1.3, -0.1, 3.1, -2.3, 9.7, -3.5, -4, 0.4, 7.2, 2.5, -0.1, -0.7, 0.4, 8.5, 3.1, 0.4, 2, 1.5, 0, 5, 13, 4.2, 1.8, 0.3, 2.4, 3.7, 11.2, -6.5, 7.2, -1.6, 4.2, -5.2, 1.4, 4.2, 2.3, -0.8, 1.5, 5.3, 2.6, -0.7, 8.3, -3.8, 1.3, 9, 1.5, -6.8, 4.6, 3.6, 4.8, -3, -0.1, -1460.1, -1247.7, -846, -449.9, -74.8, 3.4, 5.7, 1.6, -2.1, 4.1, 2.1, -7, 6.4, 2.5, 7.8, 0.6, 0.3, 0.9, -2.8, 6.6, 5.1, -1.1, 3.9, 4.7, 0.6, 6, -2.9, 7.7, 0.9, -7.7, 5.5, 6.4, -4.2, 5, 6.6, 3.4, -0.6, 5.4, -3.7, 10.1, -3.1, 1, 0.9, 5.7, -4.7, 1.6, 11.9, -3.6, 4.5, 5.7, 2.7, 2.8, 1.9, -0.1, -2.6, 8, -3.8, 2.5, 1.9, 6.2, -2.2, 1.1, 4.5, 4.3, -3.7, 7.2, 0.1, 8.6, -4.7, 8.8, 3.9, 3.2, -1.2, -4.3, 5.5, -2.9, 4.3, 10.8, -5.6, 8.7, -2, 0.6, 4.7, 5.4, 6.7, 8.1, 2, 4.5, 9.7, -3.2, 9.3, -2.5, 4.1, 2.2, 7, 6.4, -0.2, -0.1, 2.3, 0.3, 5.1, 0.9, 4.8, -3.9, 4.4, 0.3, 9.2, 2.7, -1.1, 0.2, 3.7, 5, 9.1, -2.9, 2, 5.7, -4, 3.1, 3.3, 2.6, 6.8, -2, -3.1, 5.3, 7.7, 0.8, 1.3, 3, 2, -3.4, 3.5, 10.2, -6.5, 4.6, 3.8, 0.8, 4, 4.6, -3.1, 1.9, 3.2, 0.1, 2.9, 7.2, -3, 5.9, 7.5, -5.5, 7.4, -7.3, 0.5, 8.6, -7.7, -0.2, 5.2, 1.2, 8.6, 4.7, 2.2, 2.6, 5.7, 6.2, 4.8, 9.1, -0.8, -1.3, 3.8, 2.1, 0.8, -0.3, 3.7, 7.2, -3.8, 0.1, 1.9, 3, 8.7, -1.6, 6.2, 3.7, 9.2, 1.9, 3.5, -5.9, 3.2, 2.3, 5.7, 0.2, 4.1, 9.4, -3.8, 6, 9.7, 5.4, -5.6, 2.6, 2.1, 4.5, 1.9, 7.2, -5.2, 2.6, 4.6, 11.3, -1.5, 4.3, 2.2, 4.7, 0.7, 12.4, -7, -0.1, 2, 1.3, 6.8, -5.5, 2.8, 8.8, -1, -3.2, 3.9, 3.3, 0.9, -3.6, 1.3, 4.9, 2.5, 3.4, -8, 11.9, 3.5, 5.2, 8.6, -2, 10.2, -0.2, 2.6, 2.5, 0.6, -0.8, 6.3, -0.4, 11.4, -1.3, -2.3, 9.8, 3.6, -2.2, 6.1, 3.9, -3.2, 8.2, -5.2, 7.8, -2.1, -1.2, 1.7, 3.9, 6.1, -1, 2.4, 4.3, 6.3, -0.4, -3.6, -3.9, 7.3, 3.4, 7.4, 5, 0.2, 2.5, 1, -1.6, 12.4, -0.4, 6, -4.8, 6.8, 6.2, 0.9, 5.2, 4.7, 0.8, -4.4, 3.4, 11.9, 2.2, 1.7, 0.1, 3.9, -0.2, 1.9, -0.6, -1.1, 4.7, 9.6, -4.2, 1.2, 8.2, -3.5, 2.9, 7.8, 2.7, -2, -1.2, 6.2, 4.2, -1.1, 1.2, 2.8, 5.4, 0.5, 1, -0.5, -6.9, 4.2, 4.7, 1.1, 4.5, -3.2, 6.9, 4.7, 0.6, -7.2, 5.9, 0.6, 6.7, 2.6, -1.8, -2.3, 5.2, 7.8, 2.6, -0.9, 2.4, 6.4, -3.6, 5.8, 5.1, 5.3, 7.7, -0.4, 0.9, 3.9, -4.1, 9.4, 0.9, 1.1, 5.8, -2.8, 0.9, 8.1, 0.5, -5.2, 5.9, 2.3, -2.4, 7.3, -0.6, 2.2, 7.2, 8.4, -1.1, 10.8, -2.8, 4, -3.2, 7, -5.6, 1.6, 11.3, -2.9, 0.9, 0.4, 11.4, 1.4, 2.5, -7.8, 8.8, -1.2, 2.8, 7.8, -7, 0.7, 1985.1, 1878, 1781.2, 1472.5, 1103.4, 747.5, 372.1, 46.3, 7.1, -0.7, 4.4, 4.7, 1.8, 7.2, -0.2, -5.9, 0.2, 6.2, 12.1, -4.4, 0.7, 0.6, 5.5, 1.5, 7.2, 3.2, -2.8, 1.8, 9.1, -7, 2.9, 5.3, 10.2, 3.4, -1.4, 1.4, 5.2, 0.4, 7.2, 6.8, -0.4, -0.2, 3.1, 2.8, 7.1, -2.8, 10.6, 0.5, -3.8, 4, 5.7, 4.5, -2.5, 6.3, 7, 5.2, 1, -0.8, 1.8, 0.1, 2.6, 1.2, -2.4, 4.7, 8.3, 0.1, 1.2, 4.2, -0.3, 7.8, -1.1, 5.7, 1.6, -2.7, -0.6, -2.7, 6.3, -2, -0.7, 6.2, 2.9, 2.9, 5.1, 1.4, -0.2, -0.3, 7.7, 7.2, 3.1, 1.2, -999.4, -1900.5, -1548.8, -1145.6, -752.1, -352.4, -27.5, 1.8, 4.8, 0.2, 5.6, 2.5, -1, 6.8, 0.2, -6.7, 8.8, -2.2, -4.1, 5.5, -4.5, 9.9, -5.4, 3.2, 5, -7.4, 3.4, -0.5, 6.2, -8.7, 3.5, 2.5, -0.2, 9.2, -4.4, 3.4, 1.2, 2.2, 9.8, 0.4, 4.2, -2.4, 3.5, 3.8, -2.6, 7.3, -1.5, 8.8, 3.6, 0.8, -4.2, 8.7, -3.3, 6.4, -4.2, -2, 6.1, -1, 3.6, 9.8, -3, 4, 9.4, 1.6, 5.1, -1.5, -5, 2.1, 5.4, -0.7, 8.1, -4.4, 0.7, 6.8, 0.2, 3.5, -4, 10.5, 0.2, -1.6, 2, 4.9, -0.3, 0.8, -1.5, 0.9, 7.1, -3.7, 7.6, -0.8, -2.8, 5.3, 2.4, 3.5, 0, 4.2, 0.5, 8.7, 7.5, -8.2, 1.8, 1110.2, 1086.8, 1062.6, 1046.8, 1019, 1006.5, 980.1, 960.1, 936.5, 912.5, 905.9, 881.7, 863.6, 832.4, 820.3, 798.1, 775.8, 760.5, 748.7, 727, 701, 685.7, 661.5, 643.4, 624.2, 601.1, 589, 559.8, 537.1, 513, 500.4, 477.1, 470, 443.6, 421.9, 399.8, 384, 369.4, 341.9, 316.5, 300.6, 282.5, 262.5, 234.8, 219.7, 203.2, 179.1, 161.6, 132.8, 119.3, 95.2, 82, 63.4, 48.9, 0.2, 1.6, -5.9, 0.9, 7, 1.8, -4, 1.8, 6.3, -1.6, 9.4, -7.2, 8.7, -2.4, 1.4, -1.2, -1.3, 2.2, 7.6, -6.1, 4.5, 6, 5.1, -4.6, 4.9, -1.2, 3.3, -1.8, 9.6, 1.9, -0.8, 1.8, -1.9, 5.5, 6.3, 4.4, 2.6, 9.4, -0, 3.8, 0.5, 4.6, 3.6, 0.3, 3.2, 9.4, -1.6, -2.8, 0.5, 0, 12.3, -0.6, 3.2, -1.1, 2, 1.5, -1.6, 10.3, -7, 5.1, 10.7, -5.3, 3.8, 8.9, -0.3, -6, 1, -2.8, 12.7, 2.6, -1.2, 6.2, -3.1, 0.1, 1.2, 5.2, 5.5, 5, -0.1, 1.3, -2.9, 0.8, -2.3, 6.9, -1.9, -3.4, 2.5, 0.6, 3.2, 4.2, 4, 7.8, 2.2, 1.4, 1.2, -1.6, -2.6, 9.5, 7.2, 3.3, -5.2, -3.9, 8.2, 8.3, 0, 1.8, -0.3, -1.2, 6.1, 3.4, 3, -8.2, 3, 4, 6.7, -2.9, 4.3, 10.4, 1.2, 0.7, -0.2, 0.2, 5.6, -6.5, 3.4, 0.9, 3, -0.8, 2.6, 7.2, 5.2, 2.5, 1.4, -1.1, 4.4, 0.9, 7.5, 3, -3.6, -0.6, 0.4, 6.3, 0.4, -3.1, 5.7, 8.9, 2.9, -7.4, 8, 0, 4.5, -3.4, 3.1, 8.1, 1.1, -3.8, -2, 7.8, -5.7, 7.5, -7, 5.2, 2.5, 3.2, 6.2, 7.8, 1.4, -5.3, 5.2, 8.2, 9.5, 13.1, -7.7, 8.8, -1.8, 2.1, 9.3, 0.2, 1.1, -2.1, -1, -2.4, 4.2, 4.8, 7.7, -4.8, 4, 3.9, -3.2, 3.7, -1.3, 5.3, -3.2, 2.2, 9.4, -2.9, 9.4, 4.3, 5.8, 4.6, -4.1, 9.5, -3.9, -0.6, 0.9, 1.8, 0.1, 8.6, -6.1, 8, -8.4, 12.3, -0.1, 8.3, -0, 5.1, -2.8, -2, -0.2, 5, 4.1, -6.2, 4.7, 7.1, 4.5, 6.2, 1.9, -5.5, -0.7, 8, -3.6, 0.8, 11.5, -3.2, 8.2, -4.6, 7.3, -3.9, 8.6, -9.2, 6, 4.6, 6.8, 7.2, -1.7, -1.2, -1061.3, -838.9, -441.5, -71.2, 1.8, 1.6, -1.3, 9.5, 0.3, 9.7, 2.6, 0.9, -0.1, -4.6, 5, -1.9, 6.3, -3.4, 0.8, 1.4, 9.4, -0.7, 7.9, -4.5, 4.4, 4, 11.1, -4.5, 8.1, -1.8, -0.4, 5.2, 10, 1.7, 0.6, -6.7, -1, 5.2, -2.5, 5.5, 2.4, 0.7, 0.2, 4.3, -7.8, 8.3, 3.2, 2.1, 1.6, -2.2, 1.8, 6, 6, 1.2, -2.5, 2.4, 6.5, -4.5]
Loading
two_venus/eff — settle 34.9→30.7s, overshoot 2069.6→187.2W, RMS 17.0→15.8W
Metric Base Head Δ
settle_mean_s 34.9 30.7 -12%
settle_p95_s 80.7 61.7 -24%
unsettled_events 0 0 =
overshoot_mean_w 765.5 120.0 -84%
overshoot_max_w 2069.6 187.2 -91%
band_crossings_per_h 169.0 162.0 -4%
steady_rms_w 17.0 15.8 -7%
mean_abs_grid_w 52.8 39.8 -25%
avoidable_import_wh 42.2 25.4 -40%
avoidable_export_wh 9.9 13.6 +37%
battery_travel_w_per_h 59166.0 37471.0 -37%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 60
    y-axis "W"
    line [300, 301.9, 96.2, 1, 10.3, 0.3, 9, 7.4, 5.3, 3, -2, 6.3, -0.6, 2.5, 1.4, 0.9, -0.1, -0.4, 7.1, -3.9, 3.4, 3.9, 1.8, 0.6, -4, 1.9, 6.8, 9.6, -1, 7.8, -1.8, 2.1, -0.9, 3.1, 2.2, 1.5, 8, 1.7, 8.1, 5, 1.4, 5, 7.9, 3, 0.5, 2.9, -0.7, -1.9, 1.4, 4.2, 8, 2.9, -0.8, 1.6, -2, 2.8, 0.2, 0.4, 0, 2.3, 6.3, 2.2, 4.4, -5.4, -2.6, -1.7, 1.8, 7.4, 10.2, -1.7, 4.6, -4.5, 3.2, 1.2, -6.3, -1.1, 7.1, -1.8, 5.2, -1.8, -3.7, 1.1, 10.6, 6, 2.8, -2.8, 1.1, -6.8, 9.9, -8.3, -1.1, 3.7, -1.4, -0.4, 0, 4, -4.3, 5, 5.1, 2.8, 3.1, 3.9, 9, 1.5, 7.8, -2.8, 4.4, -2.3, 4, 6.5, 3, -0.9, 3.4, 1, 2.9, -0.5, 1.7, 5.8, -0.2, 7.1, -1.3, -0.6, 3.3, 13.6, -0.5, 3.4, 4.4, 4.5, -4.8, 8.5, 2.8, 0.4, 1, 3.8, 8.2, -0.9, 0.9, 6, -0.4, 3.8, 1.5, 2.6, 3, 4.3, 1.8, 0.9, 8.8, 5.4, 3.6, 3.3, 7.8, 5, 0.2, 1.7, -8, 2.7, 6.3, -2.6, 6, 6.2, 0.2, 1.4, 3.8, 2.8, 1.1, 1.9, 1.9, 4.3, -2.9, 2.5, 2.6, -0.2, 3.4, 0.3, -0.2, 2.6, -2.9, 0.2, 8.1, 8.9, 9.8, -0.5, -2, 6.8, 1, -4.1, 3.3, 4.3, 1.2, 1.5, 1.5, 2.2, -3.4, 4.1, 6.5, -0.4, 3.8, 4.9, 14.9, 5.7, 3.5, 4.4, -1.3, -4.4, 3.1, -4.7, 4.3, -0.5, 3.6, 7.6, 4.6, 1.1, 2.8, -2.6, 1.3, 0.9, -1.6, 1, 8.1, -1.2, 3.5, 0.9, 5, 1.9, 4.3, 7.1, 3.8, -1.2, -2.9, 8.8, 1.4, 0.8, 3.3, 0.4, -1.6, 9.1, 2.3, 2.7, -5.4, 0.4, 0.9, -1.9, -1.3, -2.1, 8.8, -1.4, -2.2, 7.5, 1.9, -0.9, 0.3, 9.3, 4, 3.4, 6.9, -0.1, 8, -3.9, -0.1, 3.7, 2.2, -4, 9.7, -1.2, 0.2, 2.5, 1.5, 5.8, 3, -0.5, 3.3, 1.7, -1.1, -0.5, -4, 2.8, 1.6, 5.8, -2.5, 2.3, 0.8, 1, 4.5, 8.5, 5.9, -1.8, 5.5, -0.5, 2.8, 5.4, 5.9, -3.8, 1.4, 4.3, 6.7, -4.4, 4.3, -1.9, 0.6, 3.9, 9.4, 9.1, -6.6, 0.5, 10.2, -5.3, 6.3, -1.1, 2.8, 2012.9, 2009.7, 2009.6, 1972.8, 1766.9, 1384.9, 497.6, -269.1, 153.1, 229.4, 76, -30.3, 22, 6.2, 4.1, -3.2, 1.8, 9.4, 12.7, 11.1, 10.3, 14.6, 7.5, 14.1, 13.2, 11.5, 11.4, 13.6, 12.6, 7.8, -5.8, 8.6, 10.3, 2.4, 10.7, 12.1, 15, 7.7, 5.5, 12, 8.2, 11.6, 6.6, 14.5, -3.7, 3.6, 11.3, -2, -1.4, 3.9, -3, 5.9, 8.4, 3.8, 6.7, 12.8, 13.7, 8, 8.3, 14.8, 9.3, 14.9, 10.6, 8.8, 8.9, 10.5, 7.8, -2.8, 1.4, 3.5, 6.3, 0.6, 2.9, 9.1, 7, 6.6, 6.7, 4.8, 9.1, 6.3, 8.8, 6.6, 11.7, 9.5, 14, 10.7, 12.6, 12.3, 8.4, 7.7, -1986.7, -990, 609, 1904.4, 1944.8, 1415.9, 327, -6.5, 12.9, -0.6, -1.3, 5.8, 4.1, 3, 6.9, 1.4, 1.8, -0.9, 9.1, 8.1, -3, 10.1, -5.3, 0.7, 2.2, 5.9, 0.2, -5.9, 4.4, -0.6, -3.9, 0.5, 8.8, -2.2, -1.3, 0.1, 1.6, 5.4, -1.2, 1.9, 4.3, -2.7, -4.2, -0.3, 5.3, 3.6, 7.9, 9.2, 5.9, 4, 0.4, 1, -3.8, -1.5, -39.5, 40, 84.6, 9.1, -46, 47.1, -1.2, -53.6, -0.1, 62.2, 46.5, -21.1, -19.6, 28.6, 20.6, -16.5, -4.6, 22.2, -12.2, -4.3, 24.5, 0.6, -18.8, 16.5, 15.2, -17.8, 4.5, 38.8, -7.4, -12.9, 33.2, 19.4, -30.6, 15.9, 16.3, -10.3, -3.2, 9.3, 6.8, -8.5, 5.8, -6, -1.6, 4.4, -0.2, 12.9, 5.5, -4.5, -4.7, 0.8, 2.1, 2.4, 7, 6, -4, 9.8, -12.2, 6.5, 6.7, -18.1, 0.9, 17.4, -9.3, -4.8, 8.5, 13.9, -8.6, -6.1, 11.5, -3, 1.5, 2.3, 4.2, 3.5, 9.5, -1.9, -4.5, -0.5, -4.3, -13, 11.4, 9.4, -4.6, 8.7, 3, -0.1, -0.5, 3.2, 2.1, 1.7, 1.2, -2.3, 2.4, 756.5, 1499, 1501.9, 1450.1, 1224.7, 623, 3.2, -42.7, 52.9, -1.9, 5.5, 0.2, -0.4, 4.4, 3.8, 7.3, 4.8, 6.7, 9.8, 4.3, 6.6, 10, 7.9, 2.8, 11.8, 9.4, 11.8, 10.1, 9.1, 2.8, 9.4, 7.2, 10.4, 7, 0.8, 5.8, 9, 6.7, 10.5, 6, 10, 8.6, 11.3, 13.8, 7.9, 11.2, 11.4, 8, 15.9, 7.2, 11.5, 11.7, 4.5, 11.5, 9.8, 8.2, 7.8, 8.8, 7.8, 12.2, 13, 10.2, 7.6, 14.3, 6.4, 7.7, 4.4, 5, 11.5, 10.8, 12.2, 11.2, 9.7, 3, 8.2, 12.5, 5.3, 8.3, 8.2, 6.7, 8.9, 5, 9.7, 4.5, 6.8, 7.1, 11.1, 7.5, 11.5, 0.5, 7.7, 4.5, 10.1, 8.8, 2, 10.1, 10.8, 7.1, 5.1, 11.3, 6, 6.3, 11.7, 5.4, 14.7, 11.9, 7.5, 12.4, 13.3, 8, 8.5, 10.6, 12.9, 10.8, 10.7, 10.5, 9.4, 4.1, -742, -1189.8, 264.4, 927.9, 771.7, 602.9, 210.1, -308.2, 99.2, 385.1, 339.1, 237.2, -5, -180, 5.5, 180.6, 163.9, 71.4, -39.8, -48.2, 49.2, 36.3, -34, 5.4, 25.5, -18.6, -7.7, 22.6, 10.5, -14.9, 12.4, 2.5, 2.1, 9.8, -12, -3.7, 17.9, 14.4, -4.5, -2.1, 4.5, 4.9, -18.4, 17.4, 17.9, -8.8, -5.9, 17.5, -1.7, 5.9, 5.1, -13.4, 9, 13.2, -17.2, 3, 8.2, 17.9, -9.2, -0.1, 13.6, -13.8, 8.4, 11.4, 1.9, -3.7, 13.6, -18.8, -2.1, 15.1, -8.2, -18.8, 30.4, 3.7, -21.1, 36.2, -14.1, -16.5, 33.1, -1.9, -27.6, 31, 26.1, -15.9, -3, 26.1, -1.7, -25, 25.7, 749.8, 1421.6, 1278.8, 832.1, 699.3, 689.6, 174.3, 36.5, -22.9, 5.5, 11.6, 5.8, 12.4, 13.8, 7.4, 5.6, 5.8, 7.9, 6.8, 7.1, 13.4, 7.1, 9.3, 7.9, 2.4, 7.2, 5.9, 10.6, 5.1, 12.2, 12.3, 6.8, 7.7, 11.8, 9.6, 8.5, 7.3, 5.5, 2.1, 3.3, 5.3, 9.6, 8.1, 4, 12.6, 4, 11.3, 8, 7.1, 9.8, 6.9, 3.1, 8.2, 11.9, 12.8, 9.6, 7.6, 3.9, 8.2, 6.9, 13.4, 7, 7.7, 13.3, 7.5, 6.9, 5.6, 11.3, 9.1, 9.1, 7.8, 8.1, 7.2, 7.9, 9, 3.4, 7.4, 16, 7.6, 7.2, 11.8, 10.2, 7.5, 11.9, 13.6, 4.7, 6.6, 5.9, 8.6, 5.1, 5.1, 4.6, 11.9, 8.5, 13.3, 9.3, 7.4, 8.7, 6.7, 10.6, 7.6, 10.2, 12.7, 11, 8.8, 11, 7, 9.7, 10.5, 10.8, 2.2, 8.2, 8.9, -1490.2, -494.4, 833.9, 974.2, 657.2, 456.5, -55.8, -258.5, 322.6, 397, 319.4, 46.7, -200.9, 176.8, 240, 151.8, -40.1, -75.1, 125.2, 132.2, 41, -44.3, 5.5, 63.1, 44.5, -38.1, -40.3, 39.9, 65.6, 18.9, -29.4, 16.8, 23.1, -29.1, 3.8, 25.6, 0.3, -21.9, 35.6, -28.4, 15.1, 157, 72.2, -4.2, 17.6, 7.9, 1.1, 3, 1.8, 3, -3.8, 2.4, 5.1, -1.8, 3.1, 1.2, 3.7, 7.8, -0.1, -0.1, 0, 1.8, 5.3, -0.5, 2, 8.8, -1.2, 7, 5.3, 4.2, -0.4, 5.3, 3.9, 0.6, -0.1, 4.8, 9.4, 6.7, 10.4, -2.5, 4.9, 3.7, -3.2, 6.1, 1.9, -5.1, 0.4, -1.3, 3, -3, -0.2, 0.6, 0.7, 8.7, 9.5, 5.5, -1.8, 3.8, 0.7, 3.5, 3.9, 4.2, 2, -2.1, 5.1, 9.2, -0.9, 5.8, -8.8, 5.8, 8.1, -0.8, -0.6, -6.7, 7.3, 1.8, 7.5, 0, -2.2, 8.1, 3.3, 9.8, -4.8, 2.4, 2.3, 3.6, 3, -2.6, 0.5, -1.1, 10.7, 12.1, -5.1, 3.9, -7.9, 4, -5.1, 1.5, -0.4, 0.4, 12.1, -5.9, -0, 0.2, 2.3, 1.3, -0.3, 5.5, -1.1, 1.7, 1.9, 3, -2.8, 9.5, 10.1, 0.9, -0.9, -4.7, -0.9, -0.6, -3, 1.2, 2.5, 2.4, -4.5, 4.3, -3.3, -0.5, -1.5, 3.3, 0.3, 1.8, 2.9, -1.6, -2.5, 6.1, -1, 0.1, 8.2, -2, 3.2, 4.7, 6, -1.4, 10.7, 0.2, -2.6, 4, -1, -1.8, 6.3, 7.2, -1, 3.1, 1.6, 6.3, 13.5, -1.3, 3.2, 5.4, -4.5, 2.4, 10.8, -2.4, 6.1, 3.7, 5.6, 4, 6.9, -1.2, -0.1, 1.8, 2.3, 2.7, -0.3, 7.9, 6.3, 1.8, 1.8, 2.3, 1.3, -4.2, -9.4, 1.5, 7.9, 9.4, 6, 2.8, 4.8, 13, -4.1, 5.9, 3.6, 6.7, 2.4, 11.9, -5.7, 7.3, -5.3, 1.7, 6.2, 5.5, 0.1, 8.9, -7, 0.9, -4.2, -1.9, -2.7, 4, 6.8, -5.4, 8.6, 5, -5.3, 1.3, 7, 8.4, -3, 7.5, -8.6, -4.2, 2.7, 8.7, -2.4, -0.2, 8.4, 0.2, 5.8, 1.1, -8, 0.8, 1.3, 6.7, -2, -0.6, 3.8, -1.8, 2.6, -6.6, 7.4, -1.9, 2.2, 4.2, -1.7, 1.6, -0.9, -2, 1, 3.4, -3.5, 0.1, 8, 3.7, 2, 1.1, -7.2, 11.1, -3, 6.3, 3.4, 7.2, -1.1, 3.5, 2.1, -1.2, 5.3, -8.2, 7.5, 3.6, 8.1, -2.8, 4.5, -1.7, 6, 3.1, -5.3, 0.4, 1.6, 6.8, 6.7, -0.8, 4.8, 0.2, -0.6, 2.8, 8.7, 3.2, -0.1, 2.7, -1.6, 4.3, -2.8, -2.6, -1.3, 2, 2.6, 1.1, -3.5, 6.1, -0.9, 1.4, 3.3, 9.9, 7.3, 0.9, 9.4, 1.2, 3.5, -2.8, 4.2, 6.2, 1.7, 1.5, 5.1, 0.4, 3.2, 4.1, 2.7, 4.5, 4.9, -0.4, 8.9, 0.1, 0.4, 2.4, -2.4, 0.7, -6.3, 5.6, 6.8, 4.4, -2.8, -1.2, 7.3, -4.7, 4.5, 1.9, -0.2, 5.5, 8, 2.8, -2.7, 6.2, -5.8, 1988.5, 1998.3, 1990.7, 1901.5, 1627.8, 714.5, -239.3, -36.9, 9.6, -16.5, 4, -14.4, -1.2, 11, 3.2, 9.5, 8.3, 5.7, 7.7, 10, 5.3, 7.9, 2.7, 12.9, 8.4, 10.1, 6.2, 9.1, 3.7, 8.7, 12.4, 6.6, 11.1, 15, -6.4, -5.4, -0.2, 12.7, 4.5, 10.4, 9.3, 7.2, 15.8, 10.7, 8.8, 7.8, 13.8, 14.2, 8, 12.7, 7, 8.8, 8.1, 12.3, -7.4, 3.5, 11.1, 8.5, 9.8, 4.7, 5.9, 1.4, 5.9, 6.8, 7.9, 5.7, 10.8, 13.3, 10.7, 6.8, 5, 13.6, 8.3, 11.4, 9, 10.4, 6.9, 10.4, 8.3, 6.1, 9.4, 5.8, 8.6, 8.2, 1.5, 8.2, 11.3, 10, 6.7, 10.1, -991.2, -1689.3, -191.9, 1411.7, 1984.8, 1737.4, 810.1, 30.7, 34.6, -1.3, 7.4, 1.3, 5.2, 1.3, 11, 9.6, 0.4, -23, -31, 21.7, 58, -36.7, -4.1, 75.3, 54.9, -13, -8.4, 18.8, -6.1, -0.9, 11.8, -11.7, 2.2, 24.1, -12.1, 7.7, 9.7, -2.9, -10.5, 21.8, -2.4, -19.2, 16.4, 4.9, -14.8, 14.8, 12.8, -13.3, 4.1, 2.6, -9.3, 6.4, 10.4, -25, 6.9, 28.4, -21, -2.2, 32, 1.5, -18.1, 22.3, -7.3, -4.9, 24.7, -2.5, -25.7, 34.5, 28, -15.6, -6.2, 31.8, -17.4, -27.4, 30.9, 30.9, -22.9, -3.3, 20.5, -3.2, -10, 16.8, 1.2, -0.9, -2.5, 2.9, 5.7, 2.4, 5.2, 12.4, -7.3, 6.9, 11.6, 1, -10.9, 2.4, 11.2, -6.7, -6.1, 19, -14, 1071.5, 982.5, 735.1, 441.9, 395.8, 110.1, -28.6, 5.8, 9.1, -7.4, 1.9, 4.8, 4.2, 7.6, 6.2, 10, 4.4, 7.9, 2.5, 11.4, 7.8, 11.4, 8.2, 8.9, 11.9, 10.4, 4.8, 8.6, 4.1, 6.9, 10.8, 9.3, 1.6, 8.2, 8.2, 5.6, 2.8, 9.6, 4.7, 9, 6.6, 13.2, 7.7, 9.8, 6.5, -9.1, 7.9, 11.8, 9.6, 11.3, 12.1, 13.5, 3.6, 10.7, 7.6, 5.5, 9.5, 8.8, 8.8, 14.5, 10.4, 2.1, 8.2, 9.8, 7, 7.7, 9.2, 15.5, 5.1, 5.1, 12, 10.3, 14.4, 10.9, 5.2, 4.6, 9.5, 11.5, 8, 10.1, 7.2, 5.6, 10.8, 13, 9.9, -9.6, 2.4, 11.4, 8.3, 4.3, 10.2, 5.4, 6, 11.4, 0.7, 2.9, 3.5, 2.6, 7.7, 5.2, 9, 5.6, 2.7, 6.6, 9.3, 7.7, 6.4, 5.5, 8.8, 10.8, 7, 4.3, 1.8, 13.2, 6.9, 7.9, 6.6, 8.4, 12.3, 6.2, 5.2, 9.8, 14, 5.1, 8.6, 14.7, 10.4, 13.7, 12.1, 12.4, 8.9, 9, 9.1, 7.2, -12.8, 13.7, 11.5, 8.2, 13.2, 12.8, 8.3, 9.3, 6.9, 11.9, 3.2, 8.7, 6.1, 12.8, 2.8, 4.2, -2.7, 2.3, 5.8, 3.6, 8.3, 4.8, 7.5, 10.3, 7.3, 5.5, 6.3, 7.7, 10.6, 6.2, 1.5, 4.9, 8.9, 6.3, 9.2, 9, 7.4, 10.6, 6.2, 4.2, -4, 2, 1.6, 5.2, 7.3, 10.3, 5.6, 3.2, 10.6, 12.3, 11.8, 6.2, 12.4, 8.4, 8.7, 8.9, 14.8, 10.6, 9.4, 3.1, 12.1, 6.1, 4.5, 7.6, 9.6, 10.7, 12.7, 9.8, 9, 6.3, 4.7, 1.7, -0.2, 0.1, 0.6, 11.4, 5.2, 11.6, 4.8, 5, 7, 9.1, 10.6, 10.9, 7.8, 4.9, 6.1, 9.6, 11.7, 6.9, 4.1, 9.2, 11, 1.6, 9.4, 10, 4.8, 7, 7, 6, 7.5, 9.1, 7.8, 7.1, 10.1, 8.6, -14.4, 3.9, 7.5, 3.3, 9.3, 4, 11.5, 11.5, 7.9, 10.4, 15, 9.1, 4, 13.5, 11.9, 7.5, 4.8, 10.1, 8.3, 8.1, 6.8, 5.7, 8, 8.8, 7.7, -5.8, -4.3, 13.2, 14.9, 13.7, 13.6, 12.4, 16.7, 9.8, 11.8, 11.4, 8, 12.8, 18.5, 13.8, 12.5, 14.1, -3.4, 7, 6.5, 2.1, 5.3, 7.8, 11.3, 3, 4.2, 6.8, 7, 10.7, 14.5, 9.6, 8.4, 10.5, 7, 8.8, -1090.3, -109, 490.8, 414.9, 350.8, 229.2, -133.5, -48.1, 231.1, 225.5, 137.2, 26.6, -76.5, 46.7, 78.5, -7, -31.8, 50, 8.6, -18.8, 13.7, 18.2, -24.8, 6.6, 13.3, -26, 13.6, 22.2, -24.2, -2.7, 46.3, 23.4, -24.3, 1.3, 21.6, -2.8, -4.2, 6.1, 7.9, -1.2, -4.5, 14.6, -3.5, -1.5, 10.3, -5.9, -13.7, 11.6, 9.6, -2.9, 2.7, -0.6, -0.9, 11.1, 0.3, -19.2, 11.5, 6.3]
    line [300, 226.9, 18.1, 8.7, 9.3, 0.2, 8.5, 6.8, 4.8, 2.9, -1.7, 5.7, -1.2, 2.9, 1.7, 0.8, 6.3, 3, 8.9, 0.5, 3.8, 4.3, 1.7, -0, -4.6, 2.3, -2.2, 4, 0.9, 7.2, -1.4, 2, -0.9, 3.5, 2.6, 0.9, 7.5, 1.1, 7.5, 4.9, 0.8, 4.4, 7.8, 3.4, 0.9, 3.3, -0.8, -2.5, 1.4, 4.6, 8.4, 3.3, -0.4, 2, -1.6, 3.2, 0.6, 0.8, -4.6, 2.7, 5.7, 2.6, 4.3, -5, -3.2, -2.3, 2.2, 6.8, 10.6, -1.3, 4.9, -4.1, 2.6, 0.6, -6, -0.7, 6.5, -2.4, 5.6, -1.4, -3.3, 1.4, 10, 5.4, 2.2, -3.4, 1, -7.4, 9.3, 0.1, 1.3, 4.1, -1, 0, 0.4, 3.9, -4.5, 5.4, 5.5, 3.2, 3.5, 3.8, 9.4, 1.9, 7.2, -3.4, 3.8, -2.9, 3.9, 6.9, 2.4, -1.1, -1.3, -2.6, 2.2, -0.6, 1.6, 6.2, 0.2, 7, -0.9, -0.1, 3.7, 14, -0.1, 3.8, 4.8, 4.8, -4.9, 8.9, 3.2, 0.8, 1.4, 4.2, 8.7, -0.6, 1.3, 6.4, -0, 4.2, 2, 3, 3.4, 4.7, 2.2, 0.8, 8.2, 4.8, 3, 2.7, 7.2, 4.4, -0.4, 1.1, -8.1, 2.6, 6.7, -2.2, 6.4, 6.7, 1.6, 1.3, 4.2, 3.1, 0.6, 1.2, 1.3, 3.8, -3.5, 3, 3, 0.2, 3.3, 0.7, 0.2, 3, -2.5, 0, 8.5, -0.7, 9.7, -0.1, -2.6, 7.2, 1.4, -4.7, 3.7, 3.8, 1.7, 2, 1.8, 2.6, -3, 4.5, 6.9, -0.1, 4.2, 5.3, 14.2, 5.1, 3.4, 4.8, -1, -4, 7.5, -6.2, 4.7, 0.4, 3.5, 7, 4.5, 1.5, 2.2, -3.2, 1.7, 1.3, -1.2, 1.4, 7.5, -1.8, 2.9, 1.3, 5.4, 4.1, 4.3, 7.1, 3.7, -1.3, -2.9, 8.8, 1.4, 0.7, 3.2, 0.4, -1.6, 9.1, 2.2, 2.6, -5.4, 0.4, 0.8, -1.9, -1.3, -2.1, 8.7, -1.5, -2.2, 7.5, 1.8, -0.9, 0.3, 9.3, 4, 3.4, 6.8, -0.1, 8, -3.9, -0.1, 3.7, 2.2, -4, 9.7, -1.3, 0.2, 2.4, 1.5, 5.8, 3, -0.5, 3.3, 1.7, -1.1, -0.5, -4, 2.8, 1.6, 5.8, -2.5, 2.2, 0.7, 1, 4.5, 8.5, 5.9, -1.8, 5.5, -0.5, 2.7, 5.4, 5.9, -3.8, 1.4, 4.2, 6.6, -4.4, 4.2, -2, 0.5, 3.8, 9.3, 9.1, -6.7, 0.5, 10.2, -5.4, 6.2, -1.1, 2.7, 2012.9, 1907, 1713.6, 1401.6, 700.6, 46.5, -131.8, 38.9, 32.8, -21.6, 7.8, 12.6, 10.4, 11.2, 17.6, -6.6, 1.9, 6.5, 9.8, 8.2, 7.3, 11.6, 4.5, 11.2, 10.2, 8.6, 8.5, 10.7, 9.7, 12.3, 7.6, 12.4, 10.4, 2.5, 10.8, 12.1, 15.1, -9, 4.5, 18.1, 6.7, -0.1, 0.2, 10.5, 8.4, 7.1, 11.4, -2, -1.3, 4, -3, 6, 8.5, 3.9, 6.7, 12.9, 13.7, 8.1, 8.4, 14.8, 9.4, 15, 10.7, 8.9, 9, 10.6, 7.8, -2.7, 1.5, 3.6, 6.4, 0.7, 2.9, 9.2, 7, 6.7, 6.7, 4.9, 9.1, 6.4, 8.9, 6.7, 11.8, 9.6, 14.1, 10.8, 12.6, 12.4, 8.5, 7.7, -1986.6, -1827.5, -1190.9, -393.4, 26.1, 16.2, 0.5, 13.7, -3, -0.5, -0.7, 6.4, 4.7, 3.6, 7.5, 1, 1.4, -1.3, 8.7, 7.7, -3.4, 10.6, -5.7, 0.3, 1.8, 5.5, -0.2, -5.8, 4, -1.1, -3.8, 1.1, 9.4, -2.1, -1.7, -0.3, 1.2, 4, -1.1, 2.5, 4.4, -2.1, -4.2, -0.1, 4.9, 4.2, 7.5, 8.8, 5.5, 4.1, 1, 1.6, -3.6, -1.8, -52.1, -39.2, -16, -11, 10.9, 16.7, -27.4, 8.5, 27.5, 12.7, -13.2, 0.6, 8.7, -18.5, 13, 20, -27.6, 7.4, 23.9, -22.1, 4, 34, -3.5, -23.8, 32.4, 26.1, -24.4, 20.8, 19.9, -19, 10.7, 20.5, -32.2, 14.6, 17.3, -16, -3.7, 14.8, -3.2, -10, 15.1, -12.7, -5, 13.4, 0.8, 6.2, 6.5, 2.8, -0.5, -0.9, 0.4, 0.8, 6.2, 6.8, 0, 6.3, -8.4, 10.9, 3.9, -11.1, 3.4, 10.1, 0.7, -3.1, -3.5, 7.6, -2.1, -9.9, 10.3, 11.7, 8.8, -6.7, 3, 9.8, 13, -1, -5.5, -0.1, -2.8, -12.5, 10.4, 8.4, -4.9, 8.4, 2.7, -0.4, -0.8, 2.9, 1.8, 1.4, 1.1, -1.6, 2.1, 757.7, 1487.6, 1385.2, 1258.4, 936.1, 548.9, 272.2, 170.8, 152.9, 129.1, 112.2, 92.7, 69.3, 46.9, 26.3, 9.8, -12.7, 26.6, 12.3, 14.3, 29.1, 12.5, 17.9, 25.2, 14.2, -17.9, 13.2, -7.4, -7.5, 0.8, 4.9, 7.7, 10.8, 7.4, 1.3, 4.5, 7.5, 5.2, 9, 5.2, 10.5, 9.1, 11.8, 6.8, 0.3, 6.7, 8.3, 7.4, 15.4, 6.7, 11, 11.2, 4, 11, 9.3, 7.7, 7.2, 8.3, 7.2, 11.8, 12.5, 9.7, 7, 13.8, 5.9, 7.2, 3.9, 4.4, 11, 10.2, 11.7, 10.7, 9.2, 2.5, 7.7, 12, 4.8, 7.8, 7.7, 6.2, 8.4, 4.5, 9.2, 4, 6.2, 6.5, 10.6, 7, 10.9, 0, 7.2, 3.9, 9.6, 8.3, 1.5, 9.6, 10.3, 6.6, 4.6, 10.8, 5.5, 5.8, 11.2, 4.9, 14.2, 11.3, 6.9, 11.9, 12.8, 7.4, 8, 10, 12.4, 10.2, 10.2, 10, 8.9, 3.6, -742.5, -1452.8, -1062.6, -291.1, 151.2, 164.4, 166.4, 142.7, 123.4, 101, 87.8, 68.7, 44, -5.5, -17.4, 26.4, -7.7, -23.5, 34.1, 19.5, -23.4, -10.8, 23.9, 0.9, -15.4, 20.1, -14.4, -10.6, 33.6, 3.8, -19.2, 13.4, 22, -14.8, -6.6, 9.2, 8, 13.1, -2.5, -9.2, 9.7, 12.8, -27.5, 17.9, 26.6, -10.8, -5.7, 19.9, -8, 3.6, 11.5, -12.4, 5.5, 21.9, -14.4, -4.8, 12.3, 12.3, -23.8, 14.6, 17.2, -37.5, 20.8, 23.8, -30, 7.9, 39.4, -23.4, -1.8, 21.4, -5.5, -22.8, 32.3, 3.9, -21.9, 38.4, -12.6, -18, 34, -1.9, -28.7, 31.7, 27.2, -16.4, -2.7, 27.4, -2.1, -25.4, 27, 749.8, 1409.8, 1219, 875.9, 315.9, 68.4, 8.2, 6.2, 8.2, 14.9, 15.4, -7.8, 8.5, 11.6, 5.2, 4.2, 5.6, 7.7, 6.7, 6.9, 13.2, 6.9, 9.1, 7.8, 2.2, 7, 5.7, 10.4, 5, 11.9, 12.2, 6.6, 7.5, 11.6, 9.4, 8.3, 7.1, 5.3, 1.9, 3.1, 5.2, 9.4, 8, 3.8, 12.4, 3.9, 11.1, 7.8, 6.9, 9.6, 6.7, 2.9, 8, 11.7, 12.6, 9.4, 7.4, 3.8, 8, 6.8, 13.2, 6.8, 7.5, 13.1, 7.3, 6.7, 5.5, 11.2, 8.9, 8.8, 7.6, 7.9, 7.1, 7.7, 8.8, 3.2, 7.2, 15.9, 7.4, 7.1, 11.7, 10, 7.4, 11.7, 13.4, 4.5, 6.4, 5.7, 8.4, 4.9, 5, 4.4, 11.7, 8.3, 13.2, 9.1, 7.2, 8.6, 6.5, 10.4, 7.4, 10, 12.5, 10.8, 8.6, 10.8, 6.8, 9.5, 10.4, 10.6, 2, 8.1, 8.7, -1490.4, -1332.1, -693.2, 23.2, 167.5, 170.4, 154.8, 134.1, 115, 101.2, 82.5, 55.4, 0.3, -41.1, -11, 45.8, 6.9, -19, 16.3, 9.7, -29, 4.6, 21.5, -7.9, -6.5, 9.8, 8, -0.5, 6.9, -18.6, 15.9, 19.2, -13.6, 2.3, 13.7, -12.1, 14.9, -3.1, 0.9, -18.6, -0.4, 42.5, 4.5, -4.7, 17.1, 7.3, 1.5, 3.4, 2.1, 3.5, -3.3, 6.8, 10.6, -1.4, 3.6, 1.6, 3.1, 6.2, 0.3, -4.7, -1.6, 2.2, 5.2, -1.1, 1.5, 8.2, -1.8, 7.4, 5.7, 1.5, -0.5, 5.1, 3.8, 0.4, -0.2, 4.6, 9.3, 6.5, 10.3, -2.7, 4.8, 3.5, -3.4, 6, 1.7, -5.2, 0.2, -0.9, 2.9, -3.2, 0.2, 0.4, 0.6, 8.6, 9.4, 5.3, -2, -0.4, 0.5, 3.4, 3.8, 4.1, 1.9, -2.2, 5, 9, 3.9, 7.7, -4.9, 5.7, 7.9, 7.6, -3.6, -9.8, 7.2, 1.7, 7.3, -0.1, -2.4, 7.9, 3.2, 9.6, -5, 2.3, 2.1, 5.9, 2.8, -2.8, 0.3, -1.2, 10.5, 12, -5.2, 3.8, -8, 3.9, -2.3, 2.3, 0, 0.1, 12, -5.5, -0.1, 0.1, 2.1, 1.2, -0.4, 5.3, -1.2, 1.6, 1.7, 2.9, -2.9, 9.3, 10.9, 1.8, -1, -4.9, -1, -1.2, -3.2, 1, 2.4, 2.2, -4.6, 4.2, -3.4, -0.7, -1.7, 3.2, 0.1, 1.7, 2.8, -1.8, -2.6, 6.5, -1.1, -0.1, 8.1, -2.1, 3.1, 5, -1.2, -1.6, 6.5, 2.6, -2.2, 3.9, -1.1, -1.9, 6.2, 7.1, -1.1, 3, 1.4, 6.2, 13.4, -1.4, 3.1, 5.3, -4.6, 2.3, 10.6, -2, 7, 4.1, 5.4, 3.9, 6.8, -1.3, -0.2, 1.7, 2.1, 2.6, -0.4, 7.8, 6.1, 1.7, 1.7, 2.1, 1.1, -3.9, -9.6, 1.3, 7.8, 9.2, 5.8, 2.6, 4.7, 12.9, -4.2, 5.8, 3.6, 6.5, 2.2, 11.7, -5.3, 7.2, -5.5, 1.5, 6, 5.3, -0.1, 9.8, -6.2, 1.2, -4.3, -2, -2.9, 3.9, 6.7, -5, 8.4, 4.9, -4.4, 1.1, 7.8, 10.3, -0.1, 7.4, -5.8, -4.3, 2.5, 8.5, -2.5, -0.3, 8.2, 0, 5.7, 1.1, -8.2, 0.7, 1.2, 6.6, -1.6, 0.3, 3.6, -2, 2.5, -3.6, 7.9, -2, 2.6, 4.6, -1.8, 1, -1.5, -2.1, 1.4, 3.8, -3.5, 0.5, 7.5, 3.1, 1.4, 1, -6.9, 11.5, -3.1, 6.7, 3.8, 7.7, -0.7, 3.9, 2.5, -0.8, 5.8, -7.8, 7.9, 3.6, 7.5, -3.3, 3.9, -1.3, 6.4, 3.5, -5.4, 0.9, 2.1, 6.2, 6.2, -1.4, 4.3, 0.6, -0.7, 2.7, 9.1, 3.1, -0.6, 2, -1.7, 4.7, -2.8, -2.7, -0.9, 2, 2.2, 1.1, -3.6, 5.9, -1, 1.3, 3.7, 2.8, 4.7, -3.2, 9.3, 1.1, 3.9, -3, 4, 6, 1.6, 1.4, 5, 0.3, 3.1, 3.9, 2.5, 4.4, 4.8, -0.1, 8.7, -0, 0.3, 2.2, -2.5, 1.5, -6.4, 5.5, 6.7, 4.2, -2.9, -0.9, 7.7, -4.8, 4.4, 1.8, -0.4, 5.4, 8.9, 3.6, -2.3, 6.6, -5.4, 1963.3, 1845.3, 1639.6, 1198.6, 553.7, 92.4, -112.5, 28.3, 20.9, -5.9, 5.8, 1.9, 4.6, 7.6, -0.1, 6.1, 4.9, 2.3, 7.8, 10.6, 5.1, 6.5, 1.3, 11.5, 7, 8.7, 4.8, 7.7, 4.1, 9.3, 13, 7.2, 11.7, -1.9, -6.6, 1.2, 3.1, 5.8, -10.4, 10, -6.1, -1.7, 12.4, 7.3, 5.4, 4.4, 10.4, 10.8, 4.6, 12.8, 7.6, 9.4, 8.7, 13, -9, 3.3, 12.7, 10.1, 11.4, 6.3, 7.5, 3.1, -0.1, -1.6, 5.5, 3.4, 8.4, 10.9, 8.2, 4.5, 2.6, 11.2, 6, 9, 7.4, 10, 6.5, 10.1, 7.9, 5.7, 9, 6.1, 10.2, 9.8, -12.9, 7.8, 12.9, 11.5, 8.3, 11.7, -989.6, -1950.2, -1565.3, -786.7, -105, 29.5, 0.9, 15.5, 14.7, 0.4, 8.1, 1.4, 4.8, 0.9, 10.7, 9.2, 0.1, -23.8, -57, -6.4, -34, 2.3, 34.3, -0.7, -27.2, 34.6, 28.4, -21.8, 9.9, 30.1, -13.9, -16.8, 30.4, -1.3, -38.9, 45.8, 16.7, -9.4, 0.6, 19.6, -0.8, -15.2, 9.9, -0.9, -14.8, 13.5, 14, -7.3, 0.5, 6.1, 1.6, -3.1, 7.6, -14.3, -1.2, 26.9, -8, -15.1, 30.4, 2.4, -17, 21.1, -4.7, 3, 16.8, -2.7, -17.8, 25.8, 17.9, -11.6, -2, 22.4, -16.9, -19.4, 22.1, 20.2, -22.6, -2, 17.4, -4.4, -9.3, 17.6, 1.7, -0.5, -2, 3.3, 6, 2.8, 4.8, 11.8, -7.2, 7.3, 12, 1.5, -11.3, 2.8, 12.7, -7.3, -8, 20.9, -13.6, 1081.7, 987.8, 788.1, 474.9, -27.5, 28.9, 20.8, -7.8, 2.8, 1.5, 5.8, 8, 7.3, 7.3, 5.4, 9.2, 3.6, 7.1, 1.8, 10.6, 7.1, 10.6, 7.4, 8.2, 11.2, 10.4, 6, 9.8, 5.3, 8.2, 12, 10.5, 2.8, 9.4, 9.4, 6.8, 4, 9.1, 3.9, 8.2, 5.8, 12.4, 6.9, 9.1, 13.2, 4.9, 10.1, 11, 8.8, 10.5, 11.3, 12.8, 2.8, 9.8, 6.8, 4.8, 8.8, 8.1, 8.1, 13.7, 9.7, 1.3, 7.4, 9, 6.2, 6.9, 8.5, 14.7, 4.3, 4.3, 11.2, 9.5, 13.7, 10.2, 4.5, 3.8, 8.7, 10.8, 7.2, 9.3, 6.4, 4.8, 10, 12.2, 9.1, 7.2, 7.7, 14.6, 11.5, 7.5, 13.4, 8.6, 9.2, 14.6, 3.9, 6.1, 6.7, 5.8, 10.9, 8.3, 10.5, 6.8, 3.9, 7.8, 10.5, 8.9, 7.6, 6.7, 10, 12.1, 8.2, 5.5, 2.9, 14.3, 8.1, 9.1, 7.9, 7.9, 11.5, 5.4, 4.4, 9, 13.2, 4.3, 7.8, 13.9, 9.6, 12.9, 11.3, 11.6, 8.1, 8.2, 8.3, 14, 4.9, 14.9, 10.8, 7.4, 12.3, 12.1, 7.6, 8.5, 6.1, 11.1, 2.4, 7.9, 5.3, 12, 1.9, 10.9, 12.3, 11, 7, 4.8, 9.6, 6, 8.7, 11.5, 8.5, 6.7, 7.6, 8.8, 11.8, 7.4, 2.8, 6.1, 10.2, 7.5, 8.7, 8.2, 6.7, 9.8, 5.5, 10.9, 6.7, 7.8, 4.9, 8.4, 10.6, 13.6, 8.8, 5.7, 10, 11.5, 10.9, 5.4, 11.6, 7.7, 7.9, 8.2, 14.1, 9.8, 8.6, 2.4, 11.3, 5.3, 3.7, 6.8, 8.8, 10, 11.9, 9.1, 8.2, 5.5, 11.4, 15.9, 11, 9.6, 5.8, 12.7, 6.4, 12.8, 6, 6.3, 8.2, 10.3, 11.8, 12.1, 9, 6.1, 7.3, 10.8, 12.9, 8.1, 5.3, 10.4, 12.2, 2.8, 10.6, 11.2, 6, 8.2, 8.2, 7.2, 8.7, 10.3, 9, 6.6, 9.3, 15.3, 4.8, 5.6, 6.8, 2.5, 8.6, 3.1, 10.7, 10.8, 7.1, 9.7, 14.2, 8.3, 3.1, 12.7, 11.2, 6.7, 4, 9.3, 7.5, 7.3, 6, 5, 7.2, 8, 6.9, 10.9, 8.4, 9.9, 10.1, 8.8, 8.8, 7.7, 11.9, 5, 7, 6.7, 3.2, 8, 13.7, 9, 7.7, 9.3, 9.3, 15.2, 13.7, 7.8, 8.5, 11, 14.5, 6.3, 7.3, 6.5, 6.2, 9.9, 13.7, 8.8, 7.6, 9.8, 6.2, 8, -1091.1, -927.8, -294.2, 151.3, 177.5, 175.9, 151.2, 134.6, 110.5, 89, 68.5, 56.6, 24.6, -31.6, 2.5, 35.3, -1, -14.6, 25.5, -5.5, -26.8, 39.2, 38.2, 2.9, -21.7, 15, 18.2, -10.1, 1.7, 2, 5.2, -6.9, 13.7, 1.5, -14.1, 25.9, 18.6, -22.5, 5.1, 13.8, -25.5, 18.1, 13.2, -22.6, 10.6, 13.6, -27.2, 3.2, 18.6, -0.7, 2.6, -0.7, -1, 11, 5.5, -24.5, 6.2, 11.5]
Loading
two_venus/fair — settle 17.9→36.6s, overshoot 2070.9→185.0W, RMS 16.4→15.1W
Metric Base Head Δ
settle_mean_s 17.9 36.6 +104%
settle_p95_s 24.4 100.4 +311%
unsettled_events 0 0 =
overshoot_mean_w 880.8 130.9 -85%
overshoot_max_w 2070.9 185.0 -91%
band_crossings_per_h 44.0 33.0 -25%
steady_rms_w 16.4 15.1 -8%
mean_abs_grid_w 42.9 97.1 +126%
avoidable_import_wh 34.5 84.8 +146%
avoidable_export_wh 8.0 11.4 +43%
battery_travel_w_per_h 41630.0 21274.0 -49%

Grid power over time (W) — line 1 = base, line 2 = head:

%%{init: {"xyChart": {"width": 1800, "height": 600}}}%%
xychart-beta
    title "grid power (W)"
    x-axis "minutes" 0 --> 60
    y-axis "W"
    line [300, 301.9, 112, -39.1, 5.8, 9.2, 1.7, 6, 4.2, 10.3, 3.2, 1, 1.2, 6.8, 2.9, 9.7, 9.7, 6.4, 10.8, 9.5, 11.2, 11.8, 8.1, 15.4, 10.8, 7.7, 7.7, 10.4, 4.3, 15.6, 8.5, 4.4, 4.9, 4.9, 9.1, 4.3, 7.8, 6.5, 7.9, 11.3, 10.2, 8.8, 10.2, 11.3, 6.3, 12.7, 12.2, 8.9, 6.8, 7, 9.8, 10.7, -6.5, 2, 1.1, 4.3, 14.1, 11.8, 6.4, -3.1, 16.6, 6.5, -1.5, 10.5, 6.2, 4.6, 0.2, 0.7, 15.5, -6.4, 5.3, -5.2, 7, 5.8, 6, -0.2, 12.4, 9.1, 11.1, 9.5, 2.1, 5.9, 11.4, 6.9, 13.7, 8, 10.5, 10, 15.7, 6.5, 7.7, 13.6, 9.4, 6, 4.8, 7.3, 5.5, 9.8, 10, 7.6, 13, 6.8, 9.8, 12.3, 14.7, 9, 7.2, 10.6, 8.8, 12.3, 12.8, 12.8, 12.2, 6.8, 9.7, 6.3, 2.5, 10.6, 7.7, 11.9, 13.5, 9.2, 8.2, 15.4, 6.8, 6.2, 7.2, 12.3, 3.5, 13.3, 5.2, -7.8, 2.3, 6.6, 11.1, 8.8, 7.7, 12.9, 6.4, 7.6, 5.4, 6.4, 6.9, 8.2, 4.1, 6, 8.6, 10.2, 7, 10.2, 10.6, 9.9, 8, 14.5, 6.9, 9.1, 9.1, 4.7, 7.9, 8.1, 13, 5.8, 5.6, 9.6, 11.9, 5.2, -4.5, 5.9, 3.9, 2.1, 7.4, 5.6, 6.7, 12.2, 11.7, 8.9, 8, 8.4, 11.9, 12.8, 13.1, 6.4, 8.8, 7.6, 6.8, 5.7, 9.1, 11.2, 6.6, 11.4, 13.3, -3.4, -3.8, 3.9, 6.9, 6.8, 8.7, 6.7, 14.7, 15.6, 9.3, 11.2, 10.5, 7.4, 9.9, 4.7, 4.1, 4.8, 10.9, 8.5, 12.4, 11.9, 15.6, 2.8, -3.9, 2.2, 0.2, 1.3, 13, 8.2, 11.3, 5.8, 8.9, 10.6, 11.8, 12.5, 9.1, 4.2, 2, 8.9, 4.3, -6.6, 1.5, -1.9, 6.5, 9.4, 12.7, 11.1, 8.1, 8.3, 11.3, 8.5, 9.1, 9.3, 12.2, -7.5, -4.8, 7.7, 1.8, 4.5, 0.7, 8.7, 3.4, 2.8, 6.2, 4.3, 13.2, 4.5, 3.4, 9.1, 8.6, 3.4, 9.1, 6.7, 6.7, 6.8, 2.9, 6.8, 8.4, 9.9, 13.7, 12.1, 9.3, 9.9, 5.9, 7.2, 6, 12.2, 8, 8.7, 13.2, 10.4, 6.9, 10.9, 11.8, 10.7, 12.9, 6.9, 3.2, 4.8, 13.3, 12.6, 5.8, 13.7, 13.1, -9, 8.2, 6.9, 4.5, 9.2, 10.3, 10.5, -6.2, -0.4, 9.2, -1, 6.2, 9.3, 9.2, 2013.3, 1955, 1649.5, 499.3, -246.2, 70.8, 97.7, -18, 1.4, 3.8, 13.2, -7.3, -0.7, 2.8, 9.8, 3, 2.9, 3.6, 6.9, 5.3, 4.5, 8.7, 1.6, 9.2, 8.3, 6.7, 6.6, 8.8, 8.3, 11.4, 6.7, 11.5, 9.5, 1.6, 9.9, 11.2, 14.2, 6.8, 4.7, 11.2, 7.3, 10.8, 5.8, 13.7, 10, 6.3, 10.6, 13.8, 10.8, 13.1, 6.1, 11.6, 13.6, 9, 6.8, 10, 10.8, 5.2, 5.6, 11.9, 6.5, 12.1, 7.8, 6, 6.1, 7.7, 12.4, 9.9, 6.6, 8.6, 11.5, 5.8, 4.5, 10.3, 8.1, 7.8, 7.1, 4, 8.2, 5.5, 8, 5.8, 10.9, 8.7, 13.2, 9.9, 11.8, 11.6, 7.6, 6.8, -1987.5, -990.8, 608.2, 1903.5, 1948.7, 1737.5, 1074.4, -145.6, -139.9, 122.3, 59.7, -27.8, -6.8, 12.4, 0.8, 4.8, 2.2, -1.1, 9, 15, -8.2, 8.4, 1.6, 4.5, 1.9, 5.7, 7.1, 8, 7.2, 6.2, 12.5, 3.3, 11.7, 5.1, 10.6, 4, 5.5, 14.3, 8.7, 11.8, 10.7, 14.1, 7.6, 3.6, 10.2, 6.5, 8.8, 10.1, 11.8, 11.4, 9.3, 14.9, 9.6, 8.6, 7.4, 8, 3.9, 7.3, 10.5, 13, 8.8, 6.6, 3.6, 7.7, 8.2, 11.3, 8.2, 4.3, 5.5, 14.5, 6.9, 7.2, 7.5, 9.2, 6.3, 10, 11.3, 7.2, 10.6, 13.1, 6.9, 14.1, 7.4, 9.5, 9.4, 8, 7.8, 15.9, 3.8, 9.7, 3.6, 1.3, 5, 5.2, 9.3, 2.6, 8.2, 8.9, 3.3, 7.9, 6.5, 9.5, 8.8, 8.3, 9.7, 7.8, 6.4, 9.5, 8, 10, 0.3, 3.2, 8.1, 7.3, 7.9, 11.4, 9.4, 7.9, 4.2, 10.8, 10.1, 8.3, 9, 7.9, 12.5, 7.8, 8.2, 7, 10.3, 7.6, 14.5, 5.7, 7.2, 8.1, 3.2, 8.9, 4.9, 6.9, 8, 7.4, 7, 10.7, 9.3, 8.2, 7.7, 4.1, 5.2, 758.5, 1500.9, 1358.7, 691.2, -201, -81.9, 51, 8.1, 10.7, 8.4, 11.5, 12.1, 8.6, 6.2, 5.7, 9.1, 6.7, 8.4, 11.6, 6.1, 8.4, 11.8, 9.7, 4.5, 13.6, 11.2, 13.6, 11.9, 10.8, 4.7, 11.2, 9, 12.2, 8.8, 2.6, 5.8, 8.8, 6.5, 10.3, 5.8, 9.8, 8.4, 11.2, 13.6, 7.7, 11, 11.2, 7.8, 15.7, 7, 11.3, 11.5, 4.3, 11.3, 9.6, 8, 7.5, 8.6, 7.6, 12.1, 12.8, 10, 7.4, 14.1, 6.2, 7.5, 4.2, 4.8, 11.3, 10.6, 12, 11.1, 9.5, 2.9, 8, 12.3, 5.1, 8.2, 8, 6.5, 8.7, 4.8, 9.4, 4.3, 6.6, 6.9, 10.8, 7.3, 11.3, 0.3, 7.5, 4.3, 9.9, 8.6, 1.8, 9.9, 10.7, 6.9, 4.9, 11.1, 5.8, 6.1, 11.5, 5.2, 14.5, 11.7, 7.3, 12.3, 13.1, 7.8, 8.3, 10.3, 12.8, 10.6, 10.5, 10.3, 9.2, 3.9, -742.2, -1190, 312.7, 1128.6, 989.4, 680.4, -97.5, -48, 64.2, -1.9, 0.9, 2.3, -2.5, 0.4, 9.9, 8.5, 4.4, -2.9, 4.7, -0.1, 8.2, 0, -1.2, 6.2, 4.9, 12.4, 11.1, 9.7, 7.9, 10.3, -1.9, 0.6, 10, 13.5, 9.4, 5.9, 10.5, 15.6, 11.9, 6, 7.2, 13.5, -10.2, 9.3, 12.3, 12.7, -2.5, 7.6, 5, 13.3, 6, -6.4, 9.5, 14.9, 16.7, -3, -2.4, 15.1, 11.6, 9.6, 7, 1.3, 10.6, 4.8, 6, 5, 14.7, 10.2, 9.3, 9.6, 11.2, 1.9, 5.5, 13.6, 7.8, 13.6, 6, 8.4, 5.5, 8.2, 7.3, 2.9, 5.5, 13, 7, 3.3, 12.8, 6, 6.5, 760.2, 1502.8, 1362.2, 1047.4, 47.7, -124.3, 89.2, 7.2, -20.9, 13.3, 15.8, -7.4, 8.9, 12.1, 5.6, 4.6, 6, 8.1, 7.1, 7.3, 13.7, 7.3, 9.5, 8.2, 2.6, 7.5, 6.1, 10.8, 5.4, 12.4, 12.6, 7, 8, 12, 9.9, 8.7, 7.6, 5.7, 2.4, 3.5, 5.7, 9.8, 8.4, 4.2, 12.8, 4.2, 11.5, 8.2, 7.3, 10.1, 7.1, 3.3, 8.4, 12.2, 13, 9.8, 7.8, 4.2, 8.4, 7.2, 13.6, 7.2, 7.9, 13.5, 7.7, 7.1, 5.9, 11.6, 9.3, 9.2, 8, 8.3, 7.5, 8.2, 9.2, 3.6, 7.6, 16.3, 7.8, 7.5, 12.1, 10.4, 7.8, 12.1, 13.8, 5, 6.8, 6.1, 8.8, 5.3, 5.3, 4.9, 12.1, 8.8, 13.6, 9.6, 7.6, 9, 6.9, 10.8, 7.8, 10.4, 12.9, 11.2, 9, 11.2, 7.2, 9.9, 10.8, 11, 2.5, 8.5, 9.1, -1490, -494.2, 920.5, 1133.3, 918.8, 288.7, -187.6, 60, 44.6, -25.4, 4.3, 12.7, 14.1, -1.7, -4.4, 7.7, 9.5, 7.8, 8.6, 11.2, 2.8, -2.3, 0, 3.9, 5.3, 7.8, 8.1, 5.3, 11, 3.8, 7.2, 8.4, 3.2, 7.3, 8.5, 6, 12, 4.5, 13.7, 9.1, 8.4, 6.2, 6.9, 4, 13.1, 2.6, 8.3, 3.7, 6.5, 10.3, 6.9, 8.1, 11.8, 9.8, 7.9, 5.9, 7.4, 15.5, 9.1, 6.6, 8.8, 7.5, 14, 6.2, 4.8, 8.6, 8.5, 8.7, 7, 13.9, 7.3, 13, 11.6, 8.3, 6.6, 3.5, 8.1, 5.3, 9.1, 9.2, 5.7, 9.4, 6, 13.8, 8.6, 10.6, 4, 10.4, 9.7, 3.6, 6.5, 8.3, 5, 7.4, 8.2, 11.7, 7.9, 9.5, 5.4, 8.3, 8.7, 8.9, 3.7, 6.6, 7.9, 10.9, 5.8, 9.5, 7, 7.5, 9.8, 9.4, 8.2, 2, 6, 9, 12.2, 8.2, 4.5, 6.8, 7.5, 9.4, 7.9, 7.1, 4, 12.8, 7.7, 8.1, 6.2, 4.7, 11.4, 12.8, 6.2, 8.7, 6.8, 8.7, 12.6, 9.7, 9.8, 4.5, 11.9, 7.3, 10.7, 14.4, 11.5, 10, 8.9, 15.2, 10.2, 12.4, 12.6, 10.8, 3, 11.2, 10.8, 11.6, 8.8, 10, 8.3, 10.2, 4.7, 2.9, 8.2, 6.1, 4.8, 14.5, 4.4, 10.2, 1.2, 7, 9, 10.5, 11.7, 7.2, 7.3, 14.8, 7.2, 5.8, 12.9, 5.8, 8.5, 7.9, 7.7, 5.3, 12.3, 9.5, 8.1, 9.2, 5.8, 3.9, 6.1, 6.9, 6.8, 7.3, 1.3, 6, 13.2, 8.5, 7.4, 6.1, 6.2, 4.1, 10, 2.9, 7.8, 10.9, 8.3, 5.2, 6.6, 6, 7.7, 9.5, 10, 7.4, 6.4, 9.7, 7, 10.5, 8.5, 9, 8, 8, 3.3, 6.2, 6.6, 8.1, 4.7, 1.5, 8.5, 11.7, 3.6, 12.1, 9.3, 12.4, 8.1, 12.6, 9, 8.1, 2.9, 1.4, 4.9, 9.2, 8.8, 11.6, 5.7, 6.1, 11.6, 12.3, 11, 6.2, 15.6, 1.8, 7.2, 9.7, 4.4, 1, 6.7, 14.2, 8.7, 11.2, 8.1, 1, 1.4, 12.4, 6.3, 7.5, 10.1, 1.9, 6.6, 8.3, 5.7, 2.5, 2, 11.4, 6.2, 6.1, 6, 9.4, 6.3, 4.2, 12.7, 2.4, 3.5, 5.5, 7.1, 7.9, 10.3, 8.8, 11.2, 12.7, 4.3, 4.4, 12.3, 12.9, 11.3, 9.4, 5.1, 13.3, 9.2, 11.6, 8.7, 7.5, 8.7, 9.8, 11.4, 5.1, 8.6, 5, 11.7, 5.4, 12.4, 6, 10.3, 6.6, 10.3, 13.9, 8.4, 9.8, 8.9, 7.1, 6.5, 6, 14.1, 9.4, 4.7, 9.1, 10, 12, 9.7, 10.9, 8.2, 9.6, 7, 6.2, 7, 6.8, 11.8, 15.4, 3.8, 6.4, 3.9, 10.7, 8.1, 10.2, 6.6, 4.2, 7.8, 9.5, 8.3, 3, 11.9, 13.5, 10, 8.3, 9.4, 9.2, 12.5, 8.4, 6, 6.8, 12.2, 4.3, 9.2, 12.4, 6.7, 12.7, 6.5, 10, 4, 4.9, 6.1, 11.7, 8.6, 6.5, 9.6, 4.6, 9.8, 7.2, 5.1, 10.8, 9.3, 14.1, 7.1, 14.5, 9, 2001.8, 1956.5, 1643.5, 491, -238.3, 71.1, 102.6, -10.2, -14.2, 18.7, -0.1, -14, 3.7, 9.6, 1.9, 8.2, 6.9, 4.4, 8.1, 10.6, 5.2, 6.5, 1.4, 11.5, 7.1, 8.8, 4.8, 7.8, 4.2, 9.3, 13.1, 7.2, 11.8, -1.9, -6.5, 1.3, 3.2, 5.8, -10.3, 8.3, 8, 5.8, 14.5, 9.3, 7.4, 6.5, 12.4, 12.8, 6.6, 11.3, 6.4, 9.4, 8.7, 13.1, -9, 3.3, 12.8, 10.2, 11.5, 6.4, 7.5, 3.1, -0, -1.6, 5.6, 3.4, 8.4, 11, 8.3, 4.5, 2.6, 11.2, 6, 9, 6.7, 8.1, 4.5, 8.1, 6, 3.8, 7.1, 4.9, 10.2, 9.8, -12.8, 7.8, 12.9, 11.6, 8.4, 11.7, -989.6, -1687.7, -190.3, 1410.2, 2008.8, 1850.5, 1528.6, 380.4, -284.8, 65.8, 109.5, 18.3, -15.8, -4.5, 14.7, 15.8, 1.9, 4.3, 5.6, 8.1, 9.7, 7.5, 6.4, 2.1, -3.6, 8.6, 11.1, 2.7, 7, 13, 9, 8.1, 4.8, 14.8, 4.9, 11.6, 4.4, 13.5, 9.7, 6.4, 14, 10.9, 10.8, 8.3, 9.4, 11.1, -8.3, 6.9, 9.2, 10, 8, 6.1, 10.6, 10.4, 6.8, 6.1, 7.8, 4.3, 9.6, 10.8, 5.6, 10.9, 9.8, 7.8, 7.1, 6.9, -0.6, 7.9, 8.6, 11.7, -8.2, 8.2, 5.8, 8.9, 5.3, 10.2, 8.6, 8.2, 6.7, 7.5, 6.3, 7.3, 9.6, 11.5, 8.6, 10.2, 11.6, 8.3, 6.2, 12.9, 9.6, 13.1, 8.6, 10, 10.1, 3.6, 7.8, 11.2, 10.3, 11, 9.4, 1111, 981.9, 667.5, -111.4, -44.4, 71.3, -7.3, -10.5, 12.1, 7.4, 11.2, 13.3, 12.7, 12.6, -6.7, 5.1, 0.9, 4.5, 0.9, 9.9, 6.4, 10, 6.7, 7.5, 10.5, 10.5, 7.3, 3.6, -4.6, 11, 15.3, 13.8, 6.2, 5.2, -7.2, -2.8, 2.3, 8.4, 3.2, 7.6, 5.1, 11.8, 6.2, 8.4, 12.6, 4.2, 9.4, 10.3, 8.1, 9.8, 10.7, 12.1, 2.1, 9.2, 6.2, 4.1, 8.1, 7.4, 7.4, 13.1, 9, 0.7, 6.8, 8.4, 5.5, 6.2, 7.8, 14, 3.6, 3.6, 12.3, 10.8, 15, 4, -6.2, 2.6, 10, 12.1, 8.5, 10.7, 7.7, 6.1, 11.3, 6, -8.1, -6.8, 2, 9.9, 6.8, 2.8, 10.4, 6, 6.5, 11.9, 1.2, 3.4, 4, 3.1, 8.3, 5.7, 9.5, 6.2, 3.2, 7.2, 9.8, 8.2, 6.9, 6, 9.3, 11.4, 7.5, 4.9, 2.3, 13.7, 7.5, 8.4, 7.2, 7.2, 10.9, 4.7, 3.7, 8.3, 12.5, 3.6, 7.1, 13.2, 9, 12.2, 10.6, 10.9, 7.5, 7.6, 7.7, 13.3, 4.2, 14.3, 10.1, 6.8, 11.7, 11.3, 6.9, 7.8, 5.4, 10.4, 1.7, 7.3, 4.6, 11.4, 1.3, 10.2, 11.6, 10.3, 6.3, 4.1, 8.9, 5.3, 8.1, 10.8, 7.8, 6, 6.9, 8.2, 11.1, 6.7, 2.1, 5.5, 9.5, 6.9, 8, 7.5, 6, 9.2, 4.8, 10.3, 6.1, 7.2, 4.2, 7.8, 9.9, 12.9, 8.2, 5, 9.3, 10.8, 10.3, 4.8, 11, 7, 7.2, 7.5, 13.4, 9.2, 8, 1.7, 10.6, 4.6, 3, 6.1, 8.1, 9.3, 11.2, 8.3, 7.5, 4.9, 10.8, 15.2, 10.3, 8.9, 5.2, 12, 5.7, 12.2, 5.3, 5.6, 7.6, 9.7, 11.2, 11.4, 8.3, 5.5, 6.6, 10.1, 12.2, 7.4, 4.7, 9.7, 11.5, 2.1, 9.9, 10.5, 5.4, 7.5, 7.5, 6.6, 8.1, 9.7, 8.3, 5.9, 8.7, 14.7, 4.2, 4.9, 6, 1.8, 7.9, 2.5, 10.1, 10.1, 6.5, 8.9, 13.6, 7.6, 2.5, 12, 10.5, 6.1, 3.4, 8.7, 6.9, 6.7, 5.4, 4.3, 6.6, 7.3, 6.2, 10.3, 7.8, 9.2, 9.5, 8.2, 8.2, 7, 11.2, 4.4, 6.4, 6, 2.5, 7.3, 13.1, 8.3, 7, 8.7, 8.7, 14.5, 13, 7.1, 7.9, 10.4, 13.8, 5.6, 6.7, 5.8, 5.6, 9.2, 13.1, 8.2, 6.9, 9.1, 5.6, 7.3, -1091.8, -90.8, 565.3, 423.4, 168.2, -87.9, 27.6, 23.5, -3.1, 3.2, 3.1, 11.2, 8.7, 8.8, 2.7, 7.4, 5.2, 3.3, 7.9, 14.4, 8.6, 7.8, 7.9, 14.1, 9.9, 3.4, 7, 8.7, 14.2, 7, 11.9, 4.7, 10.2, 13.8, 11.1, 10.7, -5.2, 0, 7.4, 15.5, 8.7, 12.8, 8, 5.2, 9.3, 10.3, 8.2, 7.2, 5, 9.1, 13.1, 8.3, 6.3, 7, 11, -1.5, -0.6, -0.5]
    line [300, 226.9, -3.4, -19.1, 12.1, -2.3, -3.8, 7.8, 6.5, 12.7, 5.6, 1, 0.5, 6.9, 2.7, 9, 9, 5.7, 10.2, 8.8, 10.6, 11.1, 7.5, 14.7, 10.1, 7, 7, 9.7, 3.6, 14.9, 7.8, 4, 5.2, 5.2, 9.3, 4.7, 8.2, 6.9, 8.2, 11.7, 10.5, 9.2, 10.6, 11.6, 6.7, 13, 12.4, 9.2, 7.1, 7.4, 10.1, 11.1, 2.3, 3.8, 1.7, 2.9, 13.4, 11, 10.7, -1.5, 14.7, 12.3, 11.6, -2.7, 0.1, 1.4, 8.5, 10.6, 13.3, 7.9, 7.2, -9.8, 6.6, 6, 6.3, 0.2, 10.9, 7.4, 9.3, 7.8, 0.4, 4.2, 10.5, 6.2, 12.9, 7.4, 9.8, 9.3, 15.1, 5.8, 7, 12.8, 8.8, 5.3, 4.2, 6.6, 4.8, 9.1, 9.3, 6.9, 12.3, 6.1, 9.2, 11.6, 14, 8.3, 6.5, 9.8, 8.1, 11.6, 12.1, 12.2, 11.5, 6.1, 9, 5.6, 2, 10.9, 8, 12.2, 11.4, -0.4, 2.7, 17.2, 9.2, 8.5, 9.5, 14.6, 5.8, 15.7, 7.5, -6.5, 1.6, 6, 10.3, 8.2, 7, 12.2, 5.7, 6.9, 4.7, 5.7, 6.2, 7.5, 3.4, 5.5, 8.9, 10.6, 7.3, 10.4, 10.9, 9.2, 7.4, 13.8, 6.2, 8.4, 8.4, 4, 7.2, 7.4, 12.3, 5, 4.9, 8.9, 11.2, 12, 9.5, 9.5, 7.2, 3.7, 7.8, 4.9, 6.1, 11.5, 11, 8.2, 7.3, 7.8, 11.2, 12.1, 12.4, 5.7, 8.2, 6.9, 6.1, 5, 8.4, 10.5, 5.9, 10.7, 12.6, 13.4, 6.8, 6.2, 7.7, 7.2, 9, 7, 15, 15.9, 9.7, 11.5, 10.8, 7.7, 10.2, 5, 4.5, 5.1, 11.2, 8.5, 12.7, 12.2, 15.9, 8.1, 0.4, 1.1, -1.5, 0.4, 13.1, 8.5, 11.6, 6.1, 9.2, 10.9, 12.1, 12.8, 9.4, 4.5, 2.3, 9.2, 9.6, 1.5, 4, -0.4, 6.4, 8.8, 12, 10.4, 7.3, 7.6, 10.6, 7.8, 8.5, 8.6, 11.5, 9.2, 6.5, 16.2, 8.6, 8.8, 5, 12, 6.2, 5.2, 8.6, 6.6, 13.7, 4.8, 3.7, 9.4, 8.9, 3.5, 9.4, 7, 7, 7.2, 3.2, 7, 8.7, 10.2, 14, 12.4, 9.7, 10.2, 6.2, 7.5, 6.3, 12.4, 8.2, 9, 13.5, 10.7, 7.2, 11.2, 12.2, 10.9, 13.2, 7.2, 3.5, 5.1, 13.6, 12.9, 6.1, 14, 13.4, -2.1, 4.2, 2.2, 1.5, 9.6, 9.6, 9.8, 10.6, 10.2, 14, 2.9, 8, 10.6, 10.5, 2006.2, 1965.5, 1925.3, 1888.8, 1846.1, 1809.8, 1765.6, 1723.1, 1686.2, 1642.3, 1608.1, 1563.5, 1521.4, 1482.2, 1448.6, 1401.9, 1360.8, 1321.4, 1284.7, 1243.2, 1202.3, 1166.6, 1119.5, 1086.2, 1045.2, 1003.5, 963.4, 925.6, 884.6, 847.2, 802.5, 767.3, 725.3, 677.5, 645.7, 607, 570, 522.7, 480.4, 447, 403.1, 366.6, 321.6, 289.5, 245.8, 202.2, 166.4, 129.7, 86.7, -15.8, -19.1, 18.4, 14.9, -2.2, 7.4, 16.8, 17.7, 4.5, -3.9, 14, 9.3, 15, 10.6, 8.8, 9, 10.5, 7.8, -2.8, 1.4, 3.5, 6.3, 0.6, 2.9, 9.1, 7, 6.6, 6.7, 4.8, 9.1, 6.3, 8.8, 6.6, 11.7, 9.5, 14, 10.7, 12.6, 12.4, 8.4, 7.7, -1986.6, -1827.5, -1191, -393.4, 135.8, 47.4, -15.8, 2.7, 9.4, 6.8, 8.7, 8.8, 7.1, 10, 5.9, 9.9, 7.3, 4.1, 8.1, 12.1, 4.4, 11, 2.7, 5.7, 1.2, 4.8, 6.2, 7.1, 6.3, 5.3, 11.6, 2.5, 10.8, 4.3, 9.7, 3.1, 4.6, 13.4, 7.8, 10.8, 9.8, 13.2, 6.8, 2.8, 9.3, 5.6, 7.9, 9.2, 10.9, 10.5, 8.5, 14, 8.7, 7.8, 6.5, 7.1, 3, 6.5, 9.6, 12.1, 7.9, 5.7, 2.7, 6.8, 7.3, 10.4, 7.3, 3.4, 4.6, 13.6, 6, 6.3, 6.6, 8.3, 5.4, 9.1, 10.4, 6.3, 9.8, 12.2, 6, 13.2, 6.5, 8.6, 8.6, 7, 7, 14.9, 2.9, 8.8, 10.2, 10.4, 7.9, 7.3, 11.4, 4.7, 10.2, 11, 4.7, 8, 6.6, 9.6, 8.9, 8.4, 9.8, 7.9, 6.5, 9.6, 8.1, 10.2, 0.4, 3.3, 8.2, 7.5, 8, 11.5, 9.5, 8, 4.3, 10.9, 10.2, 8.4, 9.1, 8, 12.6, 7.9, 8.3, 7, 10.4, 7.7, 14.6, 5.8, 7.3, 8.2, 3.3, 9.1, 5, 7, 8.1, 7.5, 7.1, 10.8, 9.4, 8.3, 7.8, 4.3, 5.2, 758.6, 1483.5, 1446.5, 1404.9, 1364.6, 1323.7, 1277, 1237.6, 1206.7, 1162.9, 1126, 1086.6, 1043.2, 1000.7, 960.2, 923.7, 881.2, 843, 806.1, 760.6, 723, 686.3, 644.2, 599.1, 568.1, 525.7, 488.1, 446.4, 405.4, 359.2, 325.8, 283.5, 246.7, 203.2, 157.2, 120.3, 83.3, -4.5, -0.6, 11.1, 15.3, 14, -0.8, 6.1, 4.7, 8.6, 8.7, 6.8, 9.8, -7, 4.8, 5.1, -0.7, 8.8, 7.2, 5.5, 5.1, 6.1, 5.1, 9.6, 10.3, 7.6, 4.9, 11.7, 3.7, 5.8, 3.7, 4.3, 10.8, 10.1, 11.5, 10.6, 9.1, 2.4, 7.5, 11.8, 4.6, 7.7, 7.5, 6, 8.2, 4.3, 9, 3.9, 6.1, 6.4, 10.4, 6.8, 10.8, -0.1, 7, 3.8, 9.4, 8.1, 1.4, 9.4, 10.2, 6.4, 4.4, 10.6, 5.4, 5.7, 11.1, 4.7, 14, 11.2, 6.8, 11.8, 12.6, 7.3, 7.8, 9.9, 12.2, 10.1, 10, 9.8, 8.8, 3.4, -742.7, -1453, -1062.8, -291.2, 130.4, 45.9, 0.2, 7.5, 1.3, -4.4, 15.1, -1.5, -7.2, 3.4, 10.2, 8.2, 4.1, -3.1, 5.3, 1.6, 9.9, 1.8, -0.2, 6, 4.6, 12.2, 10.9, 9.4, 7.7, 10, -2.2, 0.4, 9.8, 13.2, 9.2, 5.7, 10.3, 15.4, 11.7, 5.8, 6.9, 13.3, -10.5, 9.1, 12.1, 12.5, -2.7, 7.4, 4.8, 13.1, 5.8, -6.7, 9.2, 14.7, 16.4, -3.2, -1.9, 15.1, 11.3, 9.4, 6.8, 1.1, 12.1, 6.6, 7.8, 6.8, 16.5, -5.5, -1.9, 0, 3, -3.3, 8.8, 9.9, -2.5, 16.9, -7.7, 6.2, 5.2, 8, 7, 2.6, 5.2, 12.7, 6.8, 3.1, 12.5, 5.8, 6.2, 760, 1384.8, 1181.5, 866.7, 171.9, -128.4, 19.9, 32.2, -5.9, 5.3, 9.1, 3.6, 10.2, 11.6, 5.2, 4.1, 5.5, 7.6, 6.6, 6.8, 13.2, 6.8, 9, 7.7, 2.2, 7, 5.6, 10.4, 4.9, 11.9, 12.1, 6.5, 7.5, 11.6, 9.4, 8.2, 7.1, 5.2, 1.9, 3, 5.2, 9.3, 7.9, 3.8, 12.4, 3.8, 11.1, 7.8, 6.8, 9.6, 6.7, 2.8, 8, 11.7, 12.6, 9.3, 7.3, 3.7, 7.9, 6.7, 13.1, 6.7, 7.5, 13.1, 7.2, 6.6, 5.4, 11.1, 8.8, 8.8, 7.6, 7.8, 7, 7.7, 8.8, 3.2, 7.1, 15.8, 7.3, 7, 11.6, 10, 7.3, 11.7, 13.3, 4.5, 6.3, 5.6, 8.3, 4.9, 4.9, 4.4, 11.6, 8.3, 13.1, 9.1, 7.1, 8.5, 6.5, 10.3, 7.3, 9.9, 12.4, 10.8, 8.5, 10.8, 6.8, 9.5, 10.3, 10.5, 2, 8, 8.7, -1490.4, -1332.2, -693.3, 23.4, 135.1, 60.2, -1.8, -8, 4.2, 12.9, 14.1, 7, 8.3, 8.6, 1.4, 5.9, 7.8, 6.1, 6.8, 9.5, 8.5, 14.4, 7.8, 6.2, 7.6, 10.1, 10.4, 7.6, 13.3, 5.3, 7.5, 8.7, 3.5, 7.7, 8.8, 6.3, 12.3, 4.8, 14, 9.4, 8.8, 6.5, 7.2, 4.3, 13.4, 2.9, 8.6, 4, 6.8, 10.6, 7.2, 8.4, 12.1, 10.2, 8.2, 6.2, 7.7, 15.8, 9.4, 6.9, 9.1, 7.8, 14.3, 6.5, 5, 8.8, 8.8, 9, 7.3, 14.2, 7.7, 13.3, 11.8, 8.6, 6.9, 3.8, 8.4, 5.7, 9.4, 9.5, 6, 9.7, 6.3, 14.1, 8.9, 10.9, 4.4, 10.7, 10, 4, 6.8, 8.6, 5.3, 7.7, 8.5, 12, 8.2, 9.8, 5.7, 8.6, 8.9, 9.2, 4, 6.9, 8.2, 11.2, 6, 9.8, 7.2, 7.8, 10.1, 9.7, 8.4, 2.3, 6.3, 9.3, 12.5, 8.5, 4.8, 7.1, 7.8, 9.8, 8.2, 7.4, 4.3, 13.1, 8, 8.4, 6.5, 4.9, 11.7, 13.1, 6.4, 8.9, 7.1, 8.9, 12.9, 10, 10.1, 4.8, 12.2, 7.6, 11, 14.7, 11.8, 10.2, 9.2, 15.5, 10.4, 12.8, 12.8, 11.1, 3.2, 11.5, 11.1, 11.9, 9.1, 10.3, 8.6, 10.5, 5, 3.2, 8.5, 6.4, 5, 14.8, 4.7, 10.5, 1.5, 7.3, 9.3, 10.8, 11.9, 7.4, 7.5, 15.1, 7.5, 6.1, 13.2, 6, 8.8, 8.2, 8, 5.5, 12.7, 9.7, 8.4, 9.6, 6, 4.2, 6.4, 7.2, 7.1, 7.6, 1.6, 6.3, 13.5, 8.8, 7.7, 6.4, 6.5, 4.4, 10.3, 3.1, 8.1, 11.2, 8.6, 5.5, 6.9, 6.3, 7.9, 9.8, 10.3, 7.7, 6.7, 9.9, 7.3, 10.8, 8.8, 9.3, 8.3, 8.3, 3.6, 6.5, 6.9, 8.4, 5, 1.8, 8.8, 12, 3.9, 12.4, 9.7, 12.7, 8.3, 12.9, 9.3, 8.3, 3.1, 1.7, 5.2, 9.5, 9.1, 11.9, 6, 6.4, 11.8, 12.6, 11.3, 6.5, 15.9, 2.1, 7.5, 10, 4.7, 1.3, 7, 14.4, 9, 11.5, 8.4, 1.3, 1.7, 12.7, 6.6, 7.8, 10.4, 2.1, 6.8, 8.7, 6, 2.8, 2.3, 11.7, 6.5, 6.4, 6.3, 9.7, 6.6, 4.5, 13, 2.7, 3.9, 5.7, 7.4, 8.2, 10.6, 9.1, 11.6, 12.9, 4.6, 4.7, 12.6, 13.2, 11.6, 9.7, 5.3, 13.7, 9.6, 11.9, 9, 7.8, 9, 10.1, 11.7, 5.4, 8.9, 5.3, 12, 5.7, 12.7, 6.3, 10.6, 6.9, 10.6, 14.2, 8.7, 10, 9.2, 7.4, 6.8, 6.2, 14.4, 9.8, 5, 9.3, 10.3, 12.3, 10, 11.2, 8.5, 9.9, 7.3, 6.5, 7.3, 7.1, 12.1, 15.8, 4.1, 6.6, 4.2, 11, 8.4, 10.5, 6.9, 4.5, 8.1, 9.8, 8.6, 3.2, 12.2, 13.8, 10.3, 8.6, 9.7, 9.5, 12.8, 8.7, 6.2, 7.1, 12.5, 4.6, 9.5, 12.7, 7, 12.9, 6.7, 10.2, 4.3, 5.2, 6.4, 11.9, 8.8, 6.8, 9.9, 4.9, 10.1, 7.5, 5.3, 11.1, 9.6, 14.4, 7.4, 14.8, 9.3, 1994.5, 1966.8, 1919.2, 1880.4, 1839.8, 1807.3, 1758.8, 1719, 1681.5, 1641.8, 1606.6, 1561.7, 1524.3, 1487.3, 1439.6, 1405.9, 1364.6, 1322, 1284, 1246.3, 1200.9, 1162.2, 1117, 1087.2, 1042.8, 1004.5, 960.5, 923.5, 878.1, 843, 806.8, 760.9, 725.4, 689.3, 642.7, 603, 561.9, 527, 478.8, 444.8, 403.6, 361.5, 330.2, 285, 243.1, 202.2, 168.1, 128.5, 63.8, 5.2, -5.9, 16.6, -1.1, 9.5, 6.2, 7.5, 10.4, 7.8, 9.2, 4.1, 5.2, 0.8, 5.2, 6.1, 7.3, 5.1, 10.1, 12.7, 10, 6.2, 4.3, 12.9, 7.7, 10.7, 8.4, 9.8, 6.2, 9.8, 7.6, 5.4, 8.8, 5.8, 9.9, 9.6, -13.2, 7.5, 12.6, 11.3, 8.1, 11.4, -989.9, -1950.5, -1565.6, -787, -39.5, 123.8, -20, 0.3, 17.7, -9.9, 9.6, -2.5, -3.2, -5.1, 17.6, 14.7, -1.9, 4.3, 5.5, 8, 9.6, 7.4, 6.3, 2, -4.8, 8.4, 10.9, 2.6, 6.9, 12.9, 8.9, 7.9, 4.8, 14.7, 4.8, 11.4, 4.3, 13.4, 9.6, 6.3, 13.9, 10.8, 10.8, 8.2, 9.3, 11.1, -8.3, 6.8, 9.2, 9.9, 8, 6, 10.5, 10.3, 6.7, 6, 7.7, 4.2, 11.2, 12.7, 7.5, 12.9, 11.8, 9.7, 9, 8.8, 0.6, 7.8, 8.6, 11.6, -8.3, 8.2, 5.8, 8.8, 5.2, 10.1, 8.4, 8.1, 6.6, 7.4, 6.2, 7.2, 9.5, 11.4, 8.4, 10.1, 11.5, 8.2, 6.1, 12.8, 9.6, 13, 8.5, 10, 10, 3.5, 7.6, 11.2, 10.2, 10.8, 9.4, 1073.5, 881.7, 674.7, 149.6, -137, 18, 30.6, -16.8, 3, 3.3, 7.6, 9.7, 9.1, 9.1, 7.2, 11, 5.3, 8.9, 3.6, 12.3, 8.8, 12.3, 9.2, 9.9, 12.9, 11.4, 5.8, 9.5, 5.1, 7.9, 11.7, 10.2, 2.6, 9.1, 9.2, 6.6, 3.8, 8.8, 3.6, 8, 5.5, 12.2, 6.6, 8.8, 13, 4.7, 9.9, 10.8, 8.6, 10.3, 11.1, 12.5, 2.6, 9.5, 6.6, 4.5, 8.5, 7.8, 7.8, 13.5, 9.4, 1.1, 7.2, 8.8, 6, 6.7, 8.2, 14.4, 4.1, 4, 11, 9.2, 13.4, 9.9, 4.2, 3.5, 8.4, 10.5, 7, 9.1, 6.2, 4.5, 9.7, 11.9, 8.9, 6.9, 7.4, 14.3, 11.3, 7.3, 13.1, 8.4, 8.9, 14.3, 3.6, 5.9, 6.5, 5.5, 10.7, 8.1, 10.2, 6.5, 3.6, 7.6, 10.2, 8.7, 7.3, 6.5, 9.8, 11.8, 7.9, 5.3, 2.8, 14.1, 7.9, 8.9, 7.6, 7.6, 11.3, 5.1, 4.2, 8.8, 12.9, 4, 7.5, 13.7, 9.4, 12.6, 11, 11.4, 7.8, 8, 8.1, 13.7, 4.7, 14.7, 10.5, 7.2, 12.1, 11.8, 7.3, 8.3, 5.9, 10.8, 2.1, 7.7, 5, 11.8, 1.7, 10.6, 12, 10.8, 6.8, 4.5, 9.3, 5.8, 8.5, 11.2, 8.2, 6.4, 7.3, 8.6, 11.5, 7.1, 2.5, 5.9, 9.9, 7.3, 8.4, 8, 6.4, 9.6, 5.2, 10.7, 6.5, 7.5, 4.6, 8.2, 10.3, 13.3, 8.6, 5.5, 9.8, 11.2, 10.7, 5.2, 11.4, 7.4, 7.7, 7.9, 13.8, 9.6, 8.3, 2.1, 11, 5.1, 3.4, 6.5, 8.6, 9.7, 11.7, 8.8, 8, 5.3, 11.2, 15.7, 10.7, 9.3, 5.5, 12.4, 6.1, 12.6, 5.8, 6, 8, 10.1, 11.6, 11.9, 8.8, 5.9, 7, 10.5, 12.6, 7.8, 5.1, 10.2, 11.9, 2.5, 10.3, 10.9, 5.8, 8, 7.9, 7, 8.5, 10.1, 8.8, 6.3, 9.1, 15.1, 4.6, 5.3, 6.5, 2.3, 8.3, 3, 10.5, 10.5, 6.9, 9.3, 14, 8, 2.9, 12.5, 10.9, 6.5, 3.8, 9.1, 7.3, 7.1, 5.8, 4.7, 7, 7.7, 6.7, 10.7, 8.2, 9.7, 9.9, 8.7, 8.6, 7.4, 11.7, 4.8, 6.8, 6.4, 3, 7.8, 13.5, 8.8, 7.5, 9.1, 9.1, 14.9, 13.4, 7.6, 8.2, 10.8, 14.2, 6, 7.1, 6.2, 6, 9.7, 13.4, 8.5, 7.3, 9.5, 6, 7.8, -1091.3, -928, -294.5, 146.1, 57.9, -23, 7, 16.7, 12.6, 11.1, 10.6, 18.7, -1.4, 3.2, -1.9, 2.8, 5.5, 6.8, 7.8, 13.8, 8, 7.3, 7.3, 13.4, 9.3, 2.8, 6.4, 8.1, 13.6, 6.4, 11.3, 4, 9.6, 13.2, 10.5, 10.1, -5, 0.7, 6.8, 14.9, 8.1, 12.2, 7.4, 4.6, 8.8, 9.7, 7.7, 6.7, 4.5, 8.5, 12.5, 7.7, 5.7, 6.4, 10.4, -2.1, -1.1, -1.1]
Loading

claude added 3 commits June 12, 2026 22:17
The balancer assumed a deadbeat battery, but Venus firmware runs its own
gain-scheduled accelerating ramp (50->400 W/poll) on the reading we send,
bounded only by |reading| — so large deltas plus a poll of meter latency
let it overshoot by hundreds of watts and oscillate.

Auto-path readings are now ramp-paced per consumer: the per-poll cap
starts at the firmware's ~50 W first step, doubles toward 200 W only
while the battery's reported output demonstrably tracks the command,
follows the error back down, and resets on direction reversal. Probe,
MIN_DC_OUTPUT-floor, manual and steer-to-zero paths bypass pacing.
BALANCE_DEADBAND default raised 15 -> 25 W, above the battery's own
+-20 W input deadband.

Defaults were chosen with the steering evaluation suite under a 1 s
meter latency: vs the unpaced baseline across the scenario matrix the
combination cuts opposite-direction overshoot ~80% (13.7 kW -> 2.0 kW
summed max), battery power travel ~33%, and steady-state RMS ~25%, for
~8% slower settling and a few Wh/h more avoidable grid exchange.

Because the per-poll delta is capped, the instructed net power can keep
the sign of a battery's involuntary output (PV passthrough at full SoC)
for many polls; the balancer now records the unpaced control intent
(last_intent) and the cross-talk chrg/dchrg attribution filters by it,
preserving the issue #376 behavior.

New knobs are plumbed through config.ini (PACE_BASE_STEP/PACE_MAX_STEP),
the web config editor, and the ESPHome balancer schema; the C++ port
mirrors the pacing and intent logic, the parity harness fuzzes the new
knobs and the intent observable, and host gtests + a paced-vs-unpaced
overshoot regression pin the behavior.

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8
The battery firmware divides the grid value it reads by *_chrg_nb (the
relay share-split). Active control sends each battery an individual
target, so it must report a count of 1 — a real count N would make every
battery under-respond by a factor of N. Recorded at the chrg_nb branch
(Python + C++) and in the protocol doc so the issue #455 relay-count fix
isn't accidentally generalized. No behavior change.

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8
Two esphome-backend-only e2e failures surfaced by the pacing change:

- test_issue376_pv_passthrough[esphome]: the esphome phase_dchrg helper
  re-summed last_instructed from the dump WITHOUT the intent filter that
  collect_reports_by_phase_ applies, so it counted a full battery's PV
  passthrough as discharge (475 W) while the Python helper, which calls
  the real aggregation, saw 0. Mirror the filter in the helper using the
  dump's last_intent field.

- test_probe_handles_mixed_poll_intervals[esphome]: with pacing the probe
  candidate ramps up cleanly instead of being whipsawed into a charge
  transient, so the probe now COMMITS within the window (candidate covers
  the full load, grid settles to ~0) rather than being rejected and
  leaving the old battery active. The bounded/settled grid assertions
  still pass; relax the 'previous battery still covers' proxy to
  pool-level coverage, the behavior the test actually guards.

Test-only; no production behavior change.

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8
@tomquist tomquist force-pushed the claude/serene-ptolemy-kpd6ig branch from 738e549 to 717eff7 Compare June 12, 2026 22:20
@tomquist tomquist marked this pull request as ready for review June 12, 2026 22:29

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
CHANGELOG.md (1)

3-10: 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Keep exactly one ## Next bullet.

Under ## Next (Lines 5-10), this update is being added alongside other bullets. Per repo rules, this section should remain a single evolving bullet that summarizes the overall outcome for the branch.

As per coding guidelines, "For user-facing work on a branch, keep one bullet under ## Next in CHANGELOG.md … do not append extra bullets."

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@CHANGELOG.md` around lines 3 - 10, The CHANGELOG.md contains multiple bullets
under the "## Next" header; consolidate them into a single evolving bullet under
the "## Next" section by merging the separate list items into one summary bullet
that captures the overall branch outcome (refer to the "## Next" header and the
existing bullets about ramp-paced active control, CT002/CT003 emulator changes,
simulator/battery/emulator behavior, added FRITZ meter, Home Assistant Min DC
Output, and the HomeWizard fix); remove the extra list items and format the
merged content as one clear single bullet so the file keeps exactly one "##
Next" entry.

Source: Coding guidelines

🧹 Nitpick comments (1)
config.ini.example (1)

85-91: 📐 Maintainability & Code Quality | 💤 Low value

Pacing configuration is clear and well-documented.

The defaults (base 50 W, max 200 W) align with the battery firmware's ~50 W first-step gain and provide a conservative cap relative to the firmware's ~400 W maximum. The explanation of cap growth and reset behavior is helpful.

Minor suggestion: Consider "±20 W" or "+/- 20 W" instead of "+-20 W" in line 68 for clarity, though the meaning is clear from context.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@config.ini.example` around lines 85 - 91, Update the documentation text that
currently uses "+-20 W" to use a clearer symbol/format such as "±20 W" or "+/-
20 W" wherever the pacing description references the small tolerance; check the
comments around the PACE_BASE_STEP and PACE_MAX_STEP entries (the block
mentioning ramp pacing and caps) and replace the "+-20 W" instance with the
chosen clearer form to improve readability.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@CHANGELOG.md`:
- Around line 3-10: The CHANGELOG.md contains multiple bullets under the "##
Next" header; consolidate them into a single evolving bullet under the "## Next"
section by merging the separate list items into one summary bullet that captures
the overall branch outcome (refer to the "## Next" header and the existing
bullets about ramp-paced active control, CT002/CT003 emulator changes,
simulator/battery/emulator behavior, added FRITZ meter, Home Assistant Min DC
Output, and the HomeWizard fix); remove the extra list items and format the
merged content as one clear single bullet so the file keeps exactly one "##
Next" entry.

---

Nitpick comments:
In `@config.ini.example`:
- Around line 85-91: Update the documentation text that currently uses "+-20 W"
to use a clearer symbol/format such as "±20 W" or "+/- 20 W" wherever the pacing
description references the small tolerance; check the comments around the
PACE_BASE_STEP and PACE_MAX_STEP entries (the block mentioning ramp pacing and
caps) and replace the "+-20 W" instance with the chosen clearer form to improve
readability.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 760b028f-5c38-44ba-a6b1-6493875bbe16

📥 Commits

Reviewing files that changed from the base of the PR and between 122a4c4 and 717eff7.

📒 Files selected for processing (26)
  • CHANGELOG.md
  • README.md
  • config.ini.example
  • docs/ct002-ct003-protocol.md
  • esphome.example.yaml
  • esphome/components/ct002/__init__.py
  • esphome/components/ct002/balancer.cpp
  • esphome/components/ct002/balancer.h
  • esphome/components/ct002/ct002.cpp
  • esphome/components/ct002/test_hooks.cpp
  • src/astrameter/ct002/balancer.py
  • src/astrameter/ct002/ct002.py
  • src/astrameter/main.py
  • src/astrameter/web_config.py
  • tests/_ct002_e2e_backend.py
  • tests/components/ct002/fixtures/balancer_parity_harness.cpp
  • tests/components/ct002/host_balancer_test.cpp
  • tests/components/ct002/test.esp32-idf.yaml
  • tests/components/ct002/test_balancer_parity.py
  • tests/test_balancer.py
  • tests/test_balancer_distribution_weight.py
  • tests/test_balancer_mixed_battery_charging.py
  • tests/test_ct002_active_control.py
  • tests/test_efficiency_e2e.py
  • tests/test_issue376_pv_passthrough.py
  • tests/test_steering_eval.py

@tomquist tomquist merged commit bd29c29 into develop Jun 12, 2026
26 checks passed
tomquist pushed a commit that referenced this pull request Jun 12, 2026
Follow-up to #458/#467: audit of the efficiency-e2e thresholds against
measured actuals on both backends.

Most bounds turn out to be appropriately snug already — the probe-join
transient (120 W vs <150), the mixed-poll error (440 W vs <500) and the
demand-transition peak (475 W vs <500) sit close to their limits because
this harness polls at 0.3 s with a zero-latency meter, the regime where
ramp pacing changes little (its gains show under the eval suite's 1 s
meter latency). Those stay as-is.

Two bounds had real slack that predates pacing: the rejected-probe and
slow-rotation coverage tests bound the grid gap at 55/50 W while the
measured maxima are <1 W and <10 W (deterministic, both backends, paced
and unpaced). Tighten both to 30 W — the settle convention used
elsewhere in this suite — so a future coverage regression trips ~2x
sooner.

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8
tomquist added a commit that referenced this pull request Jun 12, 2026
Follow-up to #458/#467: audit of the efficiency-e2e thresholds against
measured actuals on both backends.

Most bounds turn out to be appropriately snug already — the probe-join
transient (120 W vs <150), the mixed-poll error (440 W vs <500) and the
demand-transition peak (475 W vs <500) sit close to their limits because
this harness polls at 0.3 s with a zero-latency meter, the regime where
ramp pacing changes little (its gains show under the eval suite's 1 s
meter latency). Those stay as-is.

Two bounds had real slack that predates pacing: the rejected-probe and
slow-rotation coverage tests bound the grid gap at 55/50 W while the
measured maxima are <1 W and <10 W (deterministic, both backends, paced
and unpaced). Tighten both to 30 W — the settle convention used
elsewhere in this suite — so a future coverage regression trips ~2x
sooner.

https://claude.ai/code/session_01SeKwnaH74tzQoZEPhmhBu8

Co-authored-by: Claude <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants