Pith. sign in

REVIEW 3 major objections 4 minor 32 references

The Economic Dispatch of Power-to-Gas Systems with Deep Reinforcement Learning:Tackling the Challenge of Delayed Rewards with Long-Term Energy Storage

T0 review · 3 major / 4 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Reward shaping lets deep reinforcement learning dispatch power-to-gas plants over a full year, nearly matching the ideal optimizer.

desk verdict A useful, incremental DRL-for-P2G dispatch study with a solid MIQP benchmark; the headline gains are real on the data shown, but the lack of any held-out evaluation means the 'significantly improve' claim is not yet proven. read the letter →

arxiv 2506.06484 v1 pith:MHXPOFUB submitted 2025-06-06 eess.SY cs.AIcs.LGcs.SY

classification eess.SYcs.AIcs.LGcs.SY
keywords power-to-gasdeepreinforcementlearningeconomicdispatchrewardshapinglong-termenergystoragedelayedrewardsDQNPPO
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper tries to establish that deep reinforcement learning can handle the economic dispatch of a power-to-gas plant over a full year, despite the long delay between spending money to make synthetic natural gas and earning money by burning it later. Off-the-shelf DQN and PPO agents barely use the gas system; with reward modifications—penalties for low gas-storage state, penalties for leaving the plant idle in cheap-wind hours, delayed attribution of P2G operating costs, and perfect price forecasts—their year-2022 profits rise from roughly 19.9 and 18.7 million Canadian dollars to 22.3 and 22.4 million, against a mixed-integer quadratic programming optimum of 26.1 million. The point of showing this is that long-term gas storage, the main economic advantage of P2G over batteries, is exactly what prior DRL studies ignored by limiting themselves to 24-hour horizons.

What carries the argument

The central mechanism is reward shaping. Three additive modifications reshape the immediate reward so that the future value of stored gas is partially moved forward in time: a low-state-of-charge penalty $p_t=\omega \max((SOC_{P2G}^{p,\max}-SOC_{P2G,t})/SOC_{P2G}^{p,\max},0)$ that pushes the agent to keep about 0.01 of the gas tank (enough for roughly 22 MWh) available for price spikes; an inactivity penalty that subtracts $\omega$ when the wholesale price falls below $\tau=0.7$ times its running mean and the plant stays off despite enough wind; and a cost-attribution algorithm that zeroes the P2G operating cost and the lost-sales compensation at the charging step, banks them in two running sums, and charges them to the later fuel-burning steps through a deduction ratio $\rho$. Perfect price forecasts for 1 to 24 hours are added to the state but contribute little. The shaping works because the discounted-return objective makes delayed rewards nearly invisible; these terms make part of the gas-storage value visible immediately.

What would settle it

Run the identical comparison on a different year of the same market (for instance 2023 prices and wind) without retuning or re-selecting variants; if the combined reward designs do not beat the base agents by a comparable margin on that out-of-sample year, the reported improvement is at least partly an artifact of tuning on the evaluation data.

Watch

Extended reading notes

Core claim

On its own terms, the paper's claim is that P2G dispatch fails for DRL not because of uncertainty or model complexity but because the reward signal arrives too slowly: buying electricity, paying for CO2, and running an inefficient conversion chain produces no revenue until the gas is burned, possibly many hours later. The paper demonstrates this by building a wind-plus-battery, electrolyzer-methanation, gas-turbine plant and testing DQN and PPO on three horizons. In the hardest setting, a full year of real market data, the base agents barely operate the P2G system and score below the battery-only benchmark, while the combined reward design produces policies that run the P2G system for over 2,500 hours and the gas turbine for about 400 hours, recovering most of the gap to the MIQP optimum. The paper interprets this as unlocking long-term storage: a 12% gain for DQN and 20% for PPO come specifically from getting the agents to fill and later empty the gas storage.

Load-bearing premise

The evaluation assumes that training and tuning on the same full year that is also used for the reported scores gives a fair performance measure; there is no held-out year to test on.

Editorial extensions

If this is right

  • Reward shaping that punishes empty gas tanks and idle conversion lets DRL agents use long-term gas storage, whereas off-the-shelf agents leave the P2G plant almost unused.
  • The low-SOC penalty is the most influential single modification; its best setting keeps about 22 MWh of fuel in reserve, which the agent can burn during one price spike.
  • With all modifications combined, DRL reaches roughly 85% of the ideal mixed-integer quadratic programming profit on a full year of real market data.
  • Perfect short-term price forecasts are not the answer: they improve results only slightly, suggesting the core difficulty is credit assignment over long storage cycles, not near-term price uncertainty.
  • The same modifications transfer from 24-hour and weekly episodes to a 8760-step year-long episode, indicating the reward-shaping effect is not specific to one horizon.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Editorial extension: because the 'Combined' variant was chosen as the best of many after experiments on the same year, the reported 12% and 20% gains are likely optimistic; a holdout-year evaluation is the natural check.
  • Editorial extension: the inactivity penalty is essentially a hand-coded 'buy cheap, store' heuristic, so a reasonable next step is replacing it with a learned opportunity-cost baseline that adapts to seasonal price patterns.
  • Editorial extension: the cost-attribution scheme leaves total episode reward unchanged and barely helps, which suggests the bottleneck is not accounting timing but the agent's inability to propagate value through hundreds of steps; methods like hindsight relabeling or option-based temporal abstraction may be more effective.
  • Editorial extension: the SOC-penalty result implies a practical design rule—if a DRL controller cannot see the value of stored gas, add a minimum-reserve constraint as a safety layer; the penalty is essentially a soft version of that constraint.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper studies economic dispatch of a hybrid power-to-gas (P2G) system with battery storage, wind generation, and a gas turbine, using deep reinforcement learning (DQN and PPO). The main contribution is a set of reward-function modifications—future price forecasts, low-SOC penalties, inactivity penalties, and delayed cost attribution—designed to help DRL agents exploit long-term gas storage. The authors evaluate these modifications on three case studies of increasing horizon (24 hours, 168 hours, and one full year, 2022, for a plant in Southern Alberta) and compare against a mixed-integer quadratic programming (MIQP) optimum. The headline result is that the combined modifications raise CS3 episodic rewards from roughly 19,900 to 22,300 kC$ for DQN and from 18,700 to 22,400 kC$ for PPO, narrowing the gap to the MIQP value of 26,087 kC$.

Significance. If the reported improvements generalize to unseen conditions, the paper is a useful step toward making DRL practical for long-horizon energy storage dispatch, where delayed rewards are a recognized difficulty. The evaluation has notable strengths: the MIQP benchmark is a genuine external optimum, all DRL results are averaged over five seeds with standard deviations, and the reward-shaping modifications are disabled during evaluation so that reported rewards are computed on the original objective. The three case studies with increasing episode length also make the delayed-reward challenge concrete. The main weakness is that the evaluation is entirely in-sample: training, hyperparameter tuning, and final scoring all happen on the same data, and the 'Combined' configuration is selected as the best of many variants on that same data. A held-out evaluation is therefore needed before the central claim of 'significantly improved' long-horizon dispatch can be considered established.

major comments (3)
  1. [Section 4 and Section 5, Table 2] The evaluation protocol does not separate training from test data. For CS3, the full year 2022 is used for training, for the approximately 1,000 Optuna trials per case study, and for the final scoring reported in Table 2; CS1 and CS2 similarly reuse the same generated synthetic episodes for both training and evaluation. Because the penalty parameters (omega=1000, SOC_p,max=0.01, tau=0.7, alpha=0.02) and the DRL hyperparameters are tuned on the exact trajectories used to compute the reported rewards, the 12% and 20% improvements for the 'Combined' rows in CS3 are in-sample upper bounds. A temporal holdout (for example, training on earlier years and scoring on 2022, or a cross-year validation scheme) is needed to support the claim that the proposed modifications 'significantly improve' long-horizon P2G dispatch.
  2. [Section 5, Table 2 and accompanying text] The 'Combined' variant is selected as 'the best combination found out of all modifications' after inspecting the results of all variants on the same data. This selection-of-best-on-the-evaluation-set introduces a multiple-comparison bias that is material here: for PPO on CS3, the individual variant rewards range from 18,554 to 22,411 kC$, so choosing the maximum as the headline result inflates the expected performance. The authors should either pre-specify the combined configuration before seeing the test results, use a validation split for model selection, or report all combinations with an appropriate correction for multiple comparisons.
  3. [Section 3.2.4, Algorithm 2] The cost-attribution scheme preserves total episode reward only if all produced fuel is burned by the end of the episode. The paper does not state whether the CS3 episodes end with nonzero remaining SOC in the P2G storage; if fuel remains, the training-time reward signal differs from the evaluation-time objective, which could bias the learned policy. The authors should either verify that fuel is fully consumed at episode end or qualify the conservation claim in Algorithm 2.
minor comments (4)
  1. [References [16] and [18]] There are small typographical errors in the reference list: 'visisted' should be 'visited' in both entries, and the arXiv entry for PPO would benefit from a proper DOI or URL formatting.
  2. [Figure 3] The time-series plots in Figure 3 are dense and hard to read at the printed size; enlarging them or splitting the wind and price panels would improve readability.
  3. [Section 5] The text notes that 'one of the five independent runs failed' for PPO on CS1, but the seed-level breakdown is not shown anywhere; reporting all five runs in a supplementary table would make the variability more transparent.
  4. [Algorithm 2, line 11] The computation of rho divides by SOC_{P2G,t-1}; this is safe under feasible states because the GT can only operate when fuel is available, but adding an explicit guard or note would avoid any ambiguity for readers implementing the algorithm.

Circularity Check

1 steps flagged · score 3.0 of 10

Headline gains are partly in-sample: the 'Combined' variant is selected by Optuna on the same full-year 2022 trajectory that is then scored, so the reported 12% and 20% improvements are in-sample maxima rather than independent predictions.

  1. fitted input called prediction [Section 4 (Case Study, hyperparameter tuning paragraph) and Section 5, Table 2 caption.]
    "We first tune both DRL models without the introduced methods for improved P2G control and then conduct another round of tuning including these methods and their respective parameters for around 1,000 trials on each case study. Then, based on the best parameters found, we conduct a sensitivity analysis for the proposed methods. For a fair comparison, all methods that manipulate the reward function are only applied during training and deactivated for evaluation. Table 2: 'Combined' for the best combination found out of all modifications."

    The penalty hyperparameters (omega=1000, SOC_p,max=0.01, tau=0.7, alpha=0.02) and the choice of the 'Combined' modification set were selected on the same CS3 2022 trajectory that is later reported as the evaluation result. The 'Combined' row is, by definition, the best-scoring variant on that exact data. Therefore the headline improvements over Base (12% for DQN, 20% for PPO) are maxima of an in-sample selection process, not out-of-sample predictions; the result is statistically forced by the tuning/evaluation protocol even though the shaped penalties are deactivated when the rewards are measured.

full rationale

The paper's central comparison against MIQP is external and non-circular: Gurobi solves the same environment with full lookahead and provides a genuine upper bound, and the reported DRL rewards use the original reward function because the reward modifications are deactivated at evaluation. Thus the reward-shaping terms do not directly enter the scored numbers. The main circularity concern is limited to the selection of hyperparameters and the 'Combined' variant. Section 4 states that roughly 1,000 Optuna trials per case study were used to tune the models, and Section 5/Table 2 reports the best combination found on the same full-year 2022 data used for training and scoring. Consequently, the 12% and 20% headline gains are in-sample maxima over the tuned variants rather than held-out performance estimates; this is a selection-based circularity in the quantitative claim. The self-citations (Refs [1,2,11,12]) introduce modeling choices such as the GT cost allocation scheme, time encodings, and forecasts, but they are not the proof of the reward-modification result, so they do not materially add circularity. Overall, the derivation is not definitionally circular, but the headline improvement is partly forced by in-sample tuning.

Assumptions & free parameters 7 free parameters · 5 assumptions · 0 invented entities

The central claim depends on five tuned penalty and discretization parameters, plus a full set of DRL hyperparameters that are not reported. The system model itself uses literature values for efficiencies and costs, which are plausible but unverified. No new physical entities are introduced.

free parameters (7)
  • SOC penalty weight omega = 1000
    Tuned via Optuna on each case study; best value 1000 used for both penalties in all experiments.
  • SOC penalty upper limit SOC_P2G^{p,max} = 0.01
    Tuned; best value 0.01, which corresponds to roughly 22 MWh of fuel for the GT.
  • Inactivity penalty weight omega = 1000
    Tuned; same best weight as SOC penalty.
  • Inactivity threshold tau = 0.7
    Tuned; price threshold as fraction of running mean.
  • Running mean learning rate alpha = 0.02
    Tuned; controls how fast the mean price is updated.
  • Action discretization levels = 2 for GT/P2G, 3 for BES
    Authors report both DRL models worked best with the coarsest discretization, which was tuned per dimension.
  • DQN and PPO hyperparameters = not fully reported
    Tuned with ~1,000 Optuna trials per case study, but final hyperparameter values are not listed in the paper.
assumptions (5)
  • domain assumption The plant is a price-taker that can only sell power to the grid (Eq. 4) and can run BES/P2G only on available renewable power (Eq. 5).
    Stated in Sec. 2.1; simplifies the market interaction and removes load-following, which affects optimal dispatch but is a modeling choice.
  • domain assumption The DRL implementations in stable-baselines3 behave as described and the tuning procedure via Optuna is sufficient to find near-optimal hyperparameters.
    Implicit in Sec. 4; the paper relies on standard library implementations without verifying their correctness beyond the reported results.
  • standard math The GT fuel consumption model, start-up correction, and the cost allocation scheme from Ref. [11] are accurate enough for dispatch decisions.
    Taken from prior work; these approximations (piecewise linear fuel curve, 20-minute startup) are applied to all methods equally.
  • domain assumption The synthetic data for CS1 and CS2 matches the magnitudes of CS3 so that the same plant configuration is valid.
    Stated in Sec. 4; the generation process is not specified in detail, so reproducibility and realism are limited.
  • domain assumption Reward shaping applied during training and deactivated during evaluation leaves the optimal policy unchanged in principle.
    The paper notes this deactivation, but does not prove that the shaped objective preserves the optimal policy under the true reward (potential-based shaping is not invoked).

how reviews work

0 comments
Cite this review

Pith. "Pith review of The Economic Dispatch of Power-to-Gas Systems with Deep Reinforcement Learning:Tackling the Challenge of Delayed Rewards with Long-Term Energy Storage." pith.science (2026). https://pith.science/paper/MHXPOFUB

@misc{pith2026250606484,
  author       = {Pith},
  title        = {Pith review of: The Economic Dispatch of Power-to-Gas Systems with Deep Reinforcement Learning:Tackling the Challenge of Delayed Rewards with Long-Term Energy Storage},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MHXPOFUB}},
  note         = {Machine review of arXiv:2506.06484}
}
read the original abstract

Power-to-Gas (P2G) technologies gain recognition for enabling the integration of intermittent renewables, such as wind and solar, into electricity grids. However, determining the most cost-effective operation of these systems is complex due to the volatile nature of renewable energy, electricity prices, and loads. Additionally, P2G systems are less efficient in converting and storing energy compared to battery energy storage systems (BESs), and the benefits of converting electricity into gas are not immediately apparent. Deep Reinforcement Learning (DRL) has shown promise in managing the operation of energy systems amidst these uncertainties. Yet, DRL techniques face difficulties with the delayed reward characteristic of P2G system operation. Previous research has mostly focused on short-term studies that look at the energy conversion process, neglecting the long-term storage capabilities of P2G. This study presents a new method by thoroughly examining how DRL can be applied to the economic operation of P2G systems, in combination with BESs and gas turbines, over extended periods. Through three progressively more complex case studies, we assess the performance of DRL algorithms, specifically Deep Q-Networks and Proximal Policy Optimization, and introduce modifications to enhance their effectiveness. These modifications include integrating forecasts, implementing penalties on the reward function, and applying strategic cost calculations, all aimed at addressing the issue of delayed rewards. Our findings indicate that while DRL initially struggles with the complex decision-making required for P2G system operation, the adjustments we propose significantly improve its capability to devise cost-effective operation strategies, thereby unlocking the potential for long-term energy storage in P2G technologies.

Figures

Figures reproduced from arXiv: 2506.06484 by the authors.

Figure 1
Figure 1. FIGURE 1: Simplified plant layout [PITH_FULL_IMAGE:figures/full_fig_p003_1.png] view at source ↗
Figure 3
Figure 3. FIGURE 3: Time-series data for wind power generation and whole [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figure 2
Figure 2. FIGURE 2: A simplified visualization of the proposed reward attri [PITH_FULL_IMAGE:figures/full_fig_p006_2.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: FIGURE 4: Training progress of tested models measured in accu [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: FIGURE 5: Best policy learned by PPO on CS2, using the combination of proposed modifications. (TOP) The dispatch decisions with P2G [PITH_FULL_IMAGE:figures/full_fig_p008_5.png]

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

32 extracted references · 23 canonical work pages

  1. [1]

    Enhancing Battery Storage Energy Arbitrage With Deep Reinforcement Learning and Time-Series Forecasting

    Sage, Manuel, Campbell, Joshua and Zhao, Yaoyao Fiona. “Enhancing Battery Storage Energy Arbitrage With Deep Reinforcement Learning and Time-Series Forecasting.” ASME 2024 18th International Conference on Energy Sus- tainability. 2024. DOI 10.1115/ES2024-130538

  2. [2]

    Deep reinforce- ment learning for economic battery dispatch: A compre- hensive comparison of algorithms and experiment design choices

    Sage, Manuel and Zhao, Yaoyao Fiona. “Deep reinforce- ment learning for economic battery dispatch: A compre- hensive comparison of algorithms and experiment design choices.”Journal of Energy StorageVol. 115 (2025): p. 115428. DOI https://doi.org/10.1016/j.est.2025.115428

  3. [3]

    Deep-Reinforcement- Learning-Based Capacity Scheduling for PV-Battery Stor- age System

    Huang, Bin and Wang, Jianhui. “Deep-Reinforcement- Learning-Based Capacity Scheduling for PV-Battery Stor- age System.”IEEE Transactions on Smart Grid Vol. 12 No. 3 (2021): pp. 2272–2283. DOI 10.1109/TSG.2020.3047890

  4. [4]

    Deep Reinforcement Learning-Based Energy Storage Arbitrage With Accurate Lithium-Ion Battery Degradation Model

    Cao, Jun, Harrold, Dan, Fan, Zhong, Morstyn, Thomas, Healey, David and Li, Kang. “Deep Reinforcement Learning-Based Energy Storage Arbitrage With Accurate Lithium-Ion Battery Degradation Model.”IEEE Transac- tions on Smart GridVol. 11 No. 5 (2020): pp. 4513–4521. DOI 10.1109/TSG.2020.2986333

  5. [5]

    Data- driven battery operation for energy arbitrage using rainbow deep reinforcement learning

    Harrold, Daniel J.B., Cao, Jun and Fan, Zhong. “Data- driven battery operation for energy arbitrage using rainbow deep reinforcement learning.”EnergyVol. 238 (2022): p. 121958. DOI 10.1016/j.energy.2021.121958

  6. [6]

    Dynamicen- ergy conversion and management strategy for an integrated electricity and natural gas system with renewable energy: Deep reinforcement learning approach

    Zhang,Bin,Hu,Weihao,Li,Jinghua,Cao,Di,Huang,Rui, Huang, Qi, Chen, ZheandBlaabjerg, Frede. “Dynamicen- ergy conversion and management strategy for an integrated electricity and natural gas system with renewable energy: Deep reinforcement learning approach.”Energy Conver- sion and ManagementVol. 220 (2020): p. 113063. DOI https://doi.org/10.1016/j.enconman....

  7. [7]

    Inte- grated Electricity-Gas System Optimal Dispatch Based on Deep Reinforcement Learning

    Teng, Xinyuan, Long, Huan and Yang, Luoxiao. “Inte- grated Electricity-Gas System Optimal Dispatch Based on Deep Reinforcement Learning.”2021 IEEE Sustainable Power and Energy Conference (iSPEC): pp. 1082–1086

  8. [8]

    Dynamicoptimizationofanintegrateden- ergysystemwithcarboncaptureandpower-to-gasintercon- nection: A deep reinforcement learning-based scheduling strategy

    Liang, Tao, Chai, Lulu, Tan, Jianxin, Jing, Yanwei and Lv,Liangnian. “Dynamicoptimizationofanintegrateden- ergysystemwithcarboncaptureandpower-to-gasintercon- nection: A deep reinforcement learning-based scheduling strategy.”AppliedEnergyVol.367(2024): p.123390. DOI https://doi.org/10.1016/j.apenergy.2024.123390. 9 Preprint accepted for publication at the...

Show all 32 references
  1. [9]

    Stochastic coordinated operation of wind and battery energy storage system considering bat- tery degradation

    Wang, Ying, Zhou, Zhi, Botterud, Audun, Zhang, Kaifeng and Ding, Qia. “Stochastic coordinated operation of wind and battery energy storage system considering bat- tery degradation.”Journal of Modern Power Systems and Clean EnergyVol. 4 No. 4 (2016): pp. 581–592. DOI 10.1007/s4...

  2. [10]

    OptimalBiddingStrategyofBattery Storage in Power Markets Considering Performance-Based Regulation and Battery Cycle Life

    He, Guannan, Chen, Qixin, Kang, Chongqing, Pinson, PierreandXia,Qing. “OptimalBiddingStrategyofBattery Storage in Power Markets Considering Performance-Based Regulation and Battery Cycle Life.”IEEE Transactions on Smart GridVol. 7 No. 5 (2016): pp. 2359–2367. DOI 10.1109/TSG.2...

  3. [11]

    Optimal Economic Gas Turbine Dis- patch with Deep Reinforcement Learning

    Sage, Manuel, Staniszewski, Martin and Zhao, Yaoyao Fiona. “Optimal Economic Gas Turbine Dis- patch with Deep Reinforcement Learning.”IFAC- PapersOnLineVol.56No.2(2023): pp.10039–10044.DOI https://doi.org/10.1016/j.ifacol.2023.10.871. 22nd IFAC World Congress

  4. [12]

    DeepReinforcementLearningforJointDispatchofBattery Energy Storage Systems and Gas Turbines in Microgrids withRenewableEnergy

    Sage,Manuel,AlHandawi,KhalilandZhao,YaoyaoFiona. “DeepReinforcementLearningforJointDispatchofBattery Energy Storage Systems and Gas Turbines in Microgrids withRenewableEnergy.”(2025). Manuscriptunderreview

  5. [13]

    MIT press (2018)

    Sutton, Richard S and Barto, Andrew G.Reinforcement learning: An introduction. MIT press (2018)

  6. [14]

    Human-level control through deep reinforce- ment learning

    Mnih, Volodymyr, Kavukcuoglu, Koray, Silver, David, Rusu, Andrei A, Veness, Joel, Bellemare, Marc G, Graves, Alex, Riedmiller, Martin, Fidjeland, Andreas K, Ostrovski, Georg et al. “Human-level control through deep reinforce- ment learning.”natureVol. 518 No. 7540 (2015): pp. ...

  7. [15]

    Proximal policy optimization al- gorithms

    Schulman,John,Wolski,Filip,Dhariwal,Prafulla,Radford, Alec and Klimov, Oleg. “Proximal policy optimization al- gorithms.”arXiv preprint arXiv:1707.06347(2017)

  8. [16]

    Market and sys- tem reporting

    Alberta Electric System Operator. “Market and sys- tem reporting.” (2023). https://www.aeso.ca/market/ market-and-system-reporting/, visisted on 2023-05-27

  9. [17]

    Using bias-corrected reanalysis to simulate current and future wind power out- put

    Staffell, Iain and Pfenninger, Stefan. “Using bias-corrected reanalysis to simulate current and future wind power out- put.”EnergyVol. 114 (2016): pp. 1224–1239. DOI 10.1016/j.energy.2016.08.068

  10. [18]

    Hydrogen and Power-to-X solutions - Elyzer P-300 - Technical Data

    Siemens Energy. “Hydrogen and Power-to-X solutions - Elyzer P-300 - Technical Data.” (2024). https://www. siemens-energy.com/global/en/home/products-services/ product-offerings/hydrogen-solutions.html, visisted on 2024-12-12

  11. [19]

    Power-to- Methane: A state-of-the-art review

    Ghaib, Karim and Ben-Fares, Fatima-Zahrae. “Power-to- Methane: A state-of-the-art review.”Renewable and Sus- tainableEnergyReviewsVol.81(2018): pp.433–446. DOI https://doi.org/10.1016/j.rser.2017.08.004

  12. [20]

    Techno- economic evaluation of a power-to-methane plant : Lev- elized cost of methane, financial performance met- rics, and sensitivity analysis

    Al-Breiki, Mohammed and Bicer, Yusuf. “Techno- economic evaluation of a power-to-methane plant : Lev- elized cost of methane, financial performance met- rics, and sensitivity analysis.”Chemical Engineer- ing JournalVol. 471 (2023): p. 144725. DOI https://doi.org/10.1016/j.cej....

  13. [21]

    Putting CO2 to Use

    IEA. “Putting CO2 to Use.”International En- ergy Agency(2019)URL https://www.iea.org/reports/ putting-co2-to-use

  14. [22]

    Gymnasium: A Standard Interface for Reinforcement Learning Environments

    Towers, Mark, Kwiatkowski, Ariel, Terry, Jordan, Balis, John U., Cola, Gianluca De, Deleu, Tristan, Goulão, Manuel, Kallinteris, Andreas, Krimmel, Markus, KG, Ar- jun, Perez-Vicente, Rodrigo, Pierré, Andrea, Schulhoff, Sander, Tai, Jun Jet, Tan, Hannah and Younis, Omar G. “Gym...

  15. [23]

    Stable- Baselines3: Reliable Reinforcement Learning Implemen- tations

    Raffin, Antonin, Hill, Ashley, Gleave, Adam, Kanervisto, Anssi, Ernestus, MaximilianandDormann, Noah. “Stable- Baselines3: Reliable Reinforcement Learning Implemen- tations.”Journal of Machine Learning ResearchVol. 22 No. 268 (2021): pp. 1–8. URL http://jmlr.org/papers/v22/ 20...

  16. [24]

    Optuna: Anext-generation hyperparameter optimization framework

    Akiba, Takuya, Sano, Shotaro, Yanase, Toshihiko, Ohta, TakeruandKoyama,Masanori.“Optuna: Anext-generation hyperparameter optimization framework.”Proceedings of the25thACMSIGKDDinternationalconferenceonknowl- edge discovery & data mining: pp. 2623–2631. 2019. DOI 10.1145/329250...

  17. [25]

    Learning Tetris Us- ing the Noisy Cross-Entropy Method

    Szita, István and Lörincz, András. “Learning Tetris Us- ing the Noisy Cross-Entropy Method.”Neural Compu- tationVol. 18 No. 12 (2006): pp. 2936–2941. DOI 10.1162/neco.2006.18.12.2936

  18. [26]

    Gurobi Optimizer Reference Manual

    Gurobi Optimization, LLC. “Gurobi Optimizer Reference Manual.” (2024). URL https://www.gurobi.com

  19. [27]

    EnergyMan- agement for Lifetime Extension of Energy Storage Sys- tem in Micro-Grid Applications

    Tran,DuongandKhambadkone,AshwinM. “EnergyMan- agement for Lifetime Extension of Energy Storage Sys- tem in Micro-Grid Applications.”IEEE Transactions on Smart GridVol. 4 No. 3 (2013): pp. 1289–1296. DOI 10.1109/TSG.2013.2272835

  20. [28]

    A PSO- Optimized Fuzzy Logic Control-Based Charging Method for Individual Household Battery Storage Systems within a Community

    Cheng,Yu-Shan,Liu,Yi-Hua,Hesse,HolgerC.,Naumann, Maik, Truong, Cong Nam and Jossen, Andreas. “A PSO- Optimized Fuzzy Logic Control-Based Charging Method for Individual Household Battery Storage Systems within a Community.”EnergiesVol. 11 No. 2 (2018). DOI 10.3390/en11020469

  21. [29]

    Cost Projections for Utility-Scale Battery Storage: 2023 Update

    Cole, Wesley and Karmakar, Akash. “Cost Projections for Utility-Scale Battery Storage: 2023 Update.”National Re- newable Energy Lab (NREL), Golden, CO (United States) (2023)DOI 10.2172/1984976

  22. [30]

    Aeroderivative gas turbines

    Robb, Drew. “Aeroderivative gas turbines.” (2017)https://www.turbomachinerymag.com/view/ aeroderivative-gas-turbines, visited on 2022-11-25

  23. [31]

    Capital Cost and Performance Characteristic Estimates for Utility Scale Electric Power Generating Technolo- gies

    U.S. Energy Information Administration. “Capital Cost and Performance Characteristic Estimates for Utility Scale Electric Power Generating Technolo- gies.” (2020)URL https://www.eia.gov/analysis/studies/ powerplants/capitalcost/pdf/capital_cost_AEO2020.pdf. 10

  24. [2021]

    DOI 10.1109/iSPEC53008.2021.9735756

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.