Papers
Topics
Authors
Recent
Search
2000 character limit reached

SolarChain-Eval: A Physics-Constrained Benchmark for Trustworthy Economic Agents in Decentralized Energy Markets

Published 9 Jul 2026 in cs.AI | (2607.08681v1)

Abstract: As agentic AI systems are increasingly applied to cyber-physical environments, their evaluation requires assessment of both task performance and trustworthiness. In decentralized energy markets, autonomous agents may improve market utility, but may also exploit invalid physical data, create artificial liquidity, and produce unstable governance decisions. Therefore, we propose SolarChain-Eval, a physics-constrained benchmark for evaluating trustworthy economic agents. It formulates market governance as a Gymnasium-compatible Markov Decision Process, where agents make hourly decisions. SolarChain-Eval evaluates each policy across multiple dimensions, including market utility, physical safety, slippage, action smoothness, spatial fairness, and auditability. To support agentic evaluation, SolarChain-Eval incorporates an LLM-based Planner/Auditor layer. The Planner defines episode-level action bounds and audit rules, while the Auditor reviews and revises high-risk actions. All interventions are recorded through structured logs, including trigger signals, proposed actions, revised actions, and audit rationales. Experiments with static, random, myopic, RL, and RL+LLM policies reveal a clear utility-safety trade-off. RL agents improve market utility but can still produce unsafe behavior. When the physics penalty is removed, reward-maximizing agents exploit invalid generation and increase artificial liquidity. The LLM Planner/Auditor improves auditability and mitigates selected risks, but it cannot fully compensate for a misspecified reward function. These results indicate that trustworthy agentic AI evaluation requires both physical constraints and transparent intervention traces. We release data and code as open access on GitHub for replicability.

Authors (3)

Summary

  • The paper introduces an open-source benchmark that models decentralized energy governance as a physics-constrained Markov Decision Process across 50 nodes, five Chinese cities, and 720 hourly timestamps.
  • Learned reinforcement learning policies outperform heuristic baselines on cumulative reward, but results reveal a utility–safety frontier: SAC achieves the best reward and lowest violation rate, while PPO reduces slippage and increases artificial liquidity.
  • The paper finds that removing physics penalties raises artificial liquidity from 0.1146 to 0.2012 MWh on average, showing that LLM auditing can improve traceability and selectively reduce risk but cannot replace physics-aware reward design.

SolarChain-Eval is a physics-constrained benchmark for evaluating the trustworthiness of autonomous economic agents operating in decentralized peer-to-peer (P2P) energy markets. The benchmark, developed at Duke Kunshan University, formulates tokenomic market governance as a Gymnasium-compatible Markov Decision Process (MDP) grounded in photovoltaic (PV) physics, and augments trained reinforcement learning (RL) policies with an evaluation-time LLM-based Planner/Auditor governance layer. Its central thesis is that scalar reward is insufficient for judging agents in cyber-physical systems: evaluation must jointly cover market utility, physical safety, stability, action smoothness, spatial fairness, and auditability, with transparent intervention traces.

Benchmark design and RL formulation

The environment covers 50 energy nodes across Beijing, Shanghai, Chengdu, Shenzhen, and Hangzhou over 720 hourly timestamps (April 2026), yielding 36,000 generation records and 1,185 P2P trade records. Each episode spans a 24-hour market cycle. The state encodes time-of-day, verified versus reported generation, the physical PV upper bound, supply-demand gap, liquidity, token price, raw risk signal, and static slippage; the action is a three-dimensional governance vector consisting of reward allocation ratio αt\alpha_t, liquidity injection ratio t\ell_t, and token burn rate btb_t, subject to the global budget αt+t0.98\alpha_t + \ell_t \leq 0.98.

A physics module computes an action-dependent violation term that quantifies how much economically backed supply is physically infeasible or flagged as false data injection (FDIA):

Vt=βtXtmax(Gtv+βtXt,ϵ)V_t = \frac{\beta_t X_t}{\max(G_t^v + \beta_t X_t, \epsilon)}

where βt\beta_t scales with the agent's allocation aggressiveness. This design makes the benchmark sensitive to a specific failure mode: an agent can boost apparent market activity by backing invalid generation with liquidity. The step reward rewards matched volume MtM_t while penalizing liquidity drawdown, action jitter, unmet demand, composite physics risk, and city-level reward imbalance. Policies are trained with Stable-Baselines3: PPO (on-policy, clipped surrogate), SAC (maximum-entropy off-policy), and DQN on a discretized 53=1255^3=125 action grid, alongside Static, Random, and Myopic baselines.

LLM Planner/Auditor layer

The governance layer is inserted between the frozen RL policy and the environment, used only at evaluation time and never during training, so any observed safety improvement is attributable to deployment-time guardrails rather than reward shaping. The Planner operates once per episode, setting action bounds and an audit policy (risk thresholds, audit budget, target audit rate, cooldown). The Auditor provides sparse step-level oversight triggered by hard signals (physics violation rate, supply shortfall, slippage) or soft signals (action instability measured as 1\ell_1 distance from the previous action), with soft triggers rate-limited by budget and cooldown. All LLM outputs must conform to strict JSON schemas; invalid outputs fail the run rather than being silently executed, and a rule-based Planner/Auditor baseline shares the same scheduler and sanitizer. The paper reports zero LLM failures across all 12,960 governance log steps and a Planner validity of 1.0, which is a strong reliability result, though it depends on the fixed model (ChatGPT 5.5 mini) and hosted-LLM calls that are not bitwise deterministic across runs.

Main benchmark results

Across 90 rollouts per policy over three seeds, learned RL control outperforms the non-learned baselines on cumulative reward (22.61-22.61 vs. t\ell_t0; Welch's t\ell_t1-test, t\ell_t2), with PPO and SAC each beating all baselines at t\ell_t3. However, the trustworthiness metrics expose a clear utility–safety frontier:

Policy Cumulative Reward Physics Violation Rate Mean Slippage Artificial Liquidity
SAC −22.26 0.4461 0.0178 0.0686
PPO −22.35 0.4520 0.0134 0.1453
DQN −23.23 0.4688 0.0148 0.1298
Myopic −23.08 0.4779 0.0144 0.1009
Static −23.38 0.4874 0.0140 0.1803

SAC attains the highest reward and lowest violation rate but the highest slippage among RL policies, while PPO offers the lowest slippage but the highest artificial liquidity. DQN fails to consistently beat the myopic baseline, indicating that architecture choice materially affects fine-grained governance control. The paper's claim that "maximizing reward does not guarantee a safe policy" is thus substantiated by its own frontier analysis: risk is redistributed rather than eliminated across violation, slippage, and artificial-liquidity dimensions.

Physics-penalty ablation

The reward ablation directly tests reward misspecification. Removing the physics penalty inflates scalar rewards by roughly 22–24 points per policy, but at a severe safety cost: under raw RL, artificial liquidity rises by 0.0785, 0.1238, and 0.0576 MWh for PPO, SAC, and DQN respectively. Aggregated over learned policies, mean artificial liquidity climbs from 0.1146 MWh (RL, constrained) to 0.2012 MWh (RL, unconstrained), and remains elevated at 0.1901 MWh even with the LLM layer active. This is the paper's strongest and most consequential finding: an LLM governance layer mitigates but cannot compensate for a misspecified reward function. The implication is that post-hoc agentic oversight and physics-constrained training are complementary rather than substitutable—constraints must be embedded in the optimization objective to prevent reward-driven exploitation of invalid supply.

Agentic layer evaluation

The governance layer's effects are policy-dependent and modest. Audit rates under constraints range from 34.2% to 37.2% of steps (27.3%–29.7% unconstrained), with revision rates above 95% under constraints and above 83% without. The layer reduces action jitter for SAC (−0.0290) and DQN (−0.0179) but increases it for PPO (+0.0223) due to frequent clipping and revision; it reduces artificial liquidity for PPO (−0.0074 MWh) but slightly increases it for SAC (+0.0073) and DQN (+0.0109). Paired reward deltas are small and slightly negative. A representative audit trace illustrates the mechanism: when PPO under a no-physics reward proposed an aggressive liquidity injection (t\ell_t4) amid a violation rate of 0.14 and a supply gap of 1.97, the Auditor revised it to t\ell_t5 with an action delta of 0.932 and a logged natural-language rationale. The paper is candid that the layer "cannot fully compensate for a misspecified RL reward" and functions as an auditable risk-control interface rather than a universal performance optimizer.

Limitations and open questions

The paper concedes several boundaries. The evaluation rests on a single simulated month (April 2026) for five Chinese cities with synthetically generated node parameters and P2P trade traces, so the transferability of the physics oracle and market-clearing assumptions to other geographies and seasons is untested. Sensitivity analyses over reward weights, FDIA frequency and severity, node scale, and market-clearing assumptions are deferred to future work. The audit-selectivity claims are not yet validated against safe-action holdouts, approval-only controls, or false-positive/false-negative rate measurements, leaving open whether the Auditor's 95%+ revision rate reflects meaningful risk detection or overly conservative defaults. Finally, the benchmark has not been compared against constrained-RL or existing agentic-benchmark baselines, so the relative benefit of post-hoc LLM governance versus training-time safe-RL methods remains an open empirical question.

Conclusion

SolarChain-Eval contributes a reproducible, open-source evaluation framework that couples PV physics constraints with tokenomic market dynamics and structured LLM governance logging. Its empirical results establish three points with quantitative support: learned RL outperforms heuristic governance on utility; unconstrained reward maximization reliably induces exploitation of invalid generation and artificial liquidity; and LLM-based oversight improves auditability and selectively mitigates risk but is bounded by the underlying reward specification. The benchmark's logging of trigger signals, action revisions, and rationales provides a template for deployment-oriented stress testing of agentic AI in cyber-physical economic systems.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Tweets

Sign up for free to view the 1 tweet with 0 likes about this paper.