YK Energy Device & Consulting
Organic Cathode Screening

Collaborative AI & Engineering: Autonomous Screening of Dual-Redox Organic Cathode Materials on Legacy Hardware

Developing next-generation organic batteries requires materials that exhibit both high capacity and high operating voltage. Symmetric cells utilizing a single dual-redox organic active material (acting as both the positive and negative electrode) are highly attractive due to simplified manufacturing, lower cost, and mitigation of cross-contamination. However, finding organic molecules that can undergo highly reversible oxidation (positive) and reduction (negative) within stable electrochemical windows is a massive combinatorial challenge.

This article details how YK Energy Device & Consulting established an autonomous high-throughput quantum chemical screening environment. Remarkably, this project was designed and executed by a battery engineer without prior expertise in computational chemistry, working in close collaboration with an agentic AI assistant (Google Antigravity) to screen over 1,500 candidates on an old dual-core laptop.

Key Takeaways (TL;DR)
  • Democratizing Quantum Chemistry with Agentic AI: Demonstrates how non-specialist battery engineers can execute rigorous Density Functional Theory (DFT) quantum chemistry screening workflows via collaborative AI assistants on standard PC hardware.
  • Precise Redox Potential & Solvation Modeling: Evaluates ionization potentials, electron affinities, and implicit solvation free energies (SMD model) to accurately predict redox operating potentials for organic radical and carbonyl compounds.
  • Accelerated In-Silico Molecular Design: Provides a practical, high-throughput combinatorial screening pipeline for discovering sustainable, critical-metal-free cathode active materials.

The Perspective of This Project: Showing that even a non-specialist battery engineer can easily run spontaneous, sketch-like quantum chemical screening on legacy hardware (e.g., an old dual-core laptop) with AI assistance. Rather than a standalone solution, this screening is designed to be paired with real experiments, where it can serve as a quick guide for synthetic chemists.

1. The Four-Step Autonomous Calculation Loop

To screen candidate molecules, we built an automated, closed-loop pipeline consisting of four major steps:

1. Candidate Design SMILES (LLM + Human) Active Feedback 2. 3D Coordinates RDKit (MMFF94) Steric Clash Removal 3. Fast QM (xTB) GFN2-xTB (PC Solvent) Reorganization Energy (λ) 4. High-Precision DFT Psi4 (ωB97X-D/6-31G*) Calibration & results.csv LOOP

Candidate Generation Workflow

The candidate molecules screened in this campaign were designed and generated in a three-stage evolutionary process:

  1. Literature Extraction (Baseline): First, we surveyed existing literature to extract known active organic electrode materials (such as quinones and nitroxide radicals) and calculated their redox potentials to establish a reliable baseline.
  2. Similarity Search (Expansion): Second, using the calculation results of the high-performance baseline compounds, we calculated Morgan fingerprints (ECFP4) and Tanimoto similarity coefficients using RDKit to extract structurally similar candidate molecules from chemical databases such as PubChem.
  3. LLM-Driven Generation (Discovery): Finally, we fed hundreds of cumulative calculation results (incorporating redox potentials and reorganization energies) back into Large Language Models (Gemini 3.5 Flash, Gemini 3.1 Pro, and Claude 3 Opus) as design rules, allowing the LLMs to autonomously design and suggest novel candidate SMILES structures that break traditional trade-offs.

STEP 1: Conformer Generation & Pre-Optimization (RDKit)

SMILES representations of candidate molecules are parsed and expanded into 3D geometries. An initial fast geometry optimization is performed using the MMFF94 force field within RDKit to prevent steric clash and atomic overlaps prior to quantum calculations.

STEP 2: Semi-Empirical Quantum Mechanics Optimization (GFN2-xTB)

Runs fast semi-empirical GFN2-xTB calculations using the COSMO implicit solvation model, which treats the surrounding electrolyte as a uniform dielectric continuum rather than modeling individual solvent molecules. The effective dielectric constant is set to $\epsilon = 60.0$, representing a practical carbonate electrolyte (propylene carbonate + 1M LiPF6). This step optimizes molecular structures for all three charge states (neutral, radical cation, radical anion) and calculates vibrational frequencies to obtain reorganization energies ($\lambda$) — the energy cost associated with structural deformation during electron transfer — for both oxidation and reduction, serving as a proxy for charge-transfer kinetics and reversibility.

STEP 3: High-Precision Density Functional Theory Refinement (Psi4)

Using the xTB-optimized structures from STEP 2 (geometry is held fixed), performs single-point DFT energy calculations with the ωB97X-D range-separated hybrid functional and the 6-31G(d) basis set. ωB97X-D incorporates long-range exact exchange and empirical dispersion corrections, making it particularly reliable for predicting accurate redox energies of organic radical ions. For each molecule, three separate single-point calculations are run — neutral, radical cation (+1), and radical anion (−1) — and the resulting total energy differences are converted to raw oxidation and reduction potentials. To avoid Psi4 internal state contamination (DIIS timer accumulation), each calculation is launched in an isolated subprocess.

STEP 4: Experimental Calibration & Ranking

Calculated raw potentials are calibrated against a set of reliable experimental references. The calibrated values are used to evaluate the cell voltage ($V_{\text{cell}} = V_{\text{ox}} - V_{\text{red}}$), theoretical capacity, and theoretical symmetric cell energy density ($E_{\text{density}}$). Top performers are flagged to guide the next iteration.

2. Rationale: Why This Quantum Chemical Methodology?

To accurately predict redox potentials and molecular structures, we evaluated several computational methods before settling on our hybrid DFT workflow. Below is the rationale behind our methodology choice:

  • Candidate Method 1: Classical Molecular Dynamics (MD) with Fixed Charges
    Why not chosen: Classical MD is highly effective for transport properties (e.g. diffusion, viscosity), but it completely lacks the quantum mechanical description of electronic charge transfer. It cannot simulate the breaking/forming of bonds or chemical oxidation and reduction, making it useless for predicting redox potentials.
  • Candidate Method 2: High-Level Ab Initio Wavefunction Theory (e.g. CCSD(T)/cc-pVTZ)
    Why not chosen: CCSD(T) is considered the "gold standard" for small molecular systems, but its computational cost scales as $O(N^7)$. On a dual-core laptop, a single molecule would take weeks to run. For a database of 1,500+ candidates, this would require years of computing time, which is highly impractical.
  • Candidate Method 3: Semi-Empirical Quantum Mechanics (GFN2-xTB) Only
    Why not chosen: GFN2-xTB is incredibly fast (~seconds per calculation) and provides reasonable geometries, but its absolute orbital energy levels suffer from systematic shifts. The redox potentials computed from GFN2-xTB alone exhibit errors exceeding 0.6 V, which is too inaccurate to rank high-performance candidates.
  • Selected Method: Hybrid xTB Pre-optimization + DFT (wB97X-D / 6-31G(d)) Refinement
    Why chosen: This hybrid method strikes the perfect balance. We utilize RDKit and GFN2-xTB to quickly relax molecular geometries and compute vibrational frequencies (for reorganizational energies). Then, we perform single-point energy refinement using Psi4 DFT at the ωB97X-D/6-31G(d) level. The ωB97X-D functional includes range-separated hybrid exchange and dispersion corrections, accurately modeling radical ion states. By combining this with experimental calibration, we achieve high-precision predictions at a minimal computational cost.

3. Key Execution Issues & AI-Driven Solutions

Running a massive computational screening campaign on a standard consumer laptop presented numerous technical bottlenecks. These challenges were solved through interactive brainstorming and debugging with Google Antigravity:

  • 1. System Hangs due to CPU and Memory Saturation:
    The Problem: Running Psi4 DFT calculations on a dual-core Intel Core i7-7500U CPU initially caused 100% CPU lockups, rendering the operating system completely unresponsive and causing thermal throttling.
    The AI Solution: Antigravity configured the calculations to strictly run in a tmux queue with capped thread allocations (OMP_NUM_THREADS=2) and restricted memory allocations (DFT_MEMORY = "4GB"). This allowed the calculations to run continuously in the background without affecting everyday usage.
  • 2. Spin Multiplicity and Charge Mismatches:
    The Problem: Oxidation and reduction involve radical ions. A neutral molecule has a closed-shell singlet state (multiplicity = 1), but the radical cation (+1) and radical anion (-1) states are open-shell doublets (multiplicity = 2, requiring UHF). Hand-coding these rules for 1,500 molecules is highly prone to human error.
    The AI Solution: The AI assistant automated the charge and spin state assignment logic in the Python driver script, ensuring that RHF was used for neutral species and UHF for charged species, eliminating spin contamination errors.
  • 3. SCF Convergence Failures in Psi4:
    The Problem: For highly substituted or conjugated structures, the self-consistent field (SCF) calculation sometimes failed to converge within standard iteration limits, causing the screening loop to crash.
    The AI Solution: Antigravity implemented an error_recovery.py module. If an SCF convergence failure is detected, the script automatically retries the calculation with modified DIIS optimization settings, alters coordinate inputs, or gracefully falls back to semi-empirical descriptors to prevent loop disruption.
  • 4. Output Pipe Saturation (Redirection Freeze):
    The Problem: When executing the final database analysis script, the stdout buffer of the process runner became saturated due to the large volume of generated text (~400KB), causing the script to hang indefinitely.
    The AI Solution: The AI identified that the process runner lacked a shell environment to handle standard redirection. By wrapping the command in a native shell call (bash -c "python analyze_candidates.py > report.txt"), the output was written directly to the disk, resolving the pipe block instantly.

4. Experimental Calibration and Validation

Computational chemistry calculations in the gas phase or simplified implicit solvents often exhibit systematic shifts due to neglected explicit ion-solvent coordination. To ensure physical accuracy, we established a calibration protocol using established experimental literature values (vs. $ ext{Li/Li}^+$) in carbonate electrolytes:

  • n-Type Reduction Benchmarks:
    • p-Benzoquinone: $2.40 ext{ V}$
    • 1,2-Naphthoquinone: $2.50 ext{ V}$
    • 9,10-Phenanthrenequinone: $2.15 ext{ V}$
    • Indigo Carmine: $2.20 ext{ V}$
  • p-Type Oxidation Benchmark:
    • TEMPO Radical: $3.50 ext{ V}$

The raw potentials are first converted from absolute electrochemical scale to the Li/Li⁺ reference by subtracting a standard offset of 1.4 V (approximate absolute potential of the Li/Li⁺ couple). Then, the converted values are compared against the experimental benchmarks above, and the average residual shift is computed as a calibration offset. This offset is dynamically applied to every candidate to yield calibrated values ($V_{\text{calib}} = V_{\text{raw\text{-}vs\text{-}Li}} + \text{offset}$).

5. High-Throughput Screening Results & Trend Analysis

The cumulative database containing all completed calculations reveals a clear chemical design landscape. To prevent proprietary leaks, specific chemical names and SMILES structures of the top performers are grouped into general chemical classes.

Redox Potential vs. Capacity Landscape

Real screening data of 1,500+ candidates showing n-type (blue circles) and p-type (orange triangles) redox couples. The horizontal axis shows the theoretical capacity for a single electron transfer per molecule (1e⁻). Many quinone-based candidates can undergo two-electron processes in practice, which would double the shown capacity values.

Typical Electrolyte Stable Window (2.0 - 4.0 V) Theoretical Specific Capacity (1e⁻ transfer, mAh/g) Calibrated Potential vs Li/Li+ (V) 0 100 200 300 0 1 2 3 4 5 6 7 n-type Reduction (Circle) p-type Oxidation (Triangle)

Observed Materials Trends:

  • Capacity-Potential Trade-off: Smaller molecular weight candidates yield higher theoretical capacity (up to 400 mAh/g), but they often exhibit slightly reduced stability or higher reorganization energies due to localized charge concentrations.
  • Redox Voltage Gap: n-type reduction potentials cluster predominantly between $1.5\text{ V}$ and $3.0\text{ V}$ (median ~$2.2\text{ V}$), while p-type oxidation potentials span a broader range of $4.0\text{ V}$ to $6.5\text{ V}$ (median ~$5.4\text{ V}$). When paired in a symmetric cell, the voltage gap between the median oxidation and reduction potentials yields a theoretical cell voltage of approximately $3.0\text{ V}$ to $3.5\text{ V}$.
  • AI-Driven Structural Discovery: Our final iterations, generated by LLM analysis of computed data trends, yielded several highly stable heterocyclic nitrogen candidates. These structures bypass the capacity trade-off, achieving an elevated voltage gap ($>3.0 ext{ V}$) and low reorganization energies ($<0.4 ext{ eV}$), indicating high charge rate capability.

Top Performance Categories

Category / Class ID General Structure / Class Typical Output Voltage Capacity Class Est. Energy Density Class (mWh/g = Wh/kg) Reorganization Energy (Red / Ox)
Class A-1 Lightweight Substituted Benzoquinone Derivative ~2.6 V High (~195 mAh/g) Excellent (>500 mWh/g) Moderate / Low
Class A-2 Fused Multi-Nitrogen Heteroaromatic System ~3.3 V Moderate (~130 mAh/g) Very High (~420 mWh/g) Very Low / Moderate
Class A-3 Alkylated Amino-Benzoquinone Derivative ~2.6 V Moderate-High (~175 mAh/g) Very High (~460 mWh/g) Moderate / Low

6. Project Summary & Conclusion

This project demonstrated that a battery engineer who is not a computational specialist can quickly test spontaneous ideas and run initial screening campaigns of 1,500+ candidates on a personal workstation with AI guidance.

However, a purely computational screening is just a preliminary filter. The real value of this approach lies in its tight integration with experimental synthesis and electrochemical validation. By lowering the barrier to entry, we hope to empower experimentalists and synthesis chemists to easily run these screening loops themselves, allowing them to quickly pre-screen candidates before heading to the wet lab. Bridging computation and actual synthesis is where this methodology will truly shine.

Organic Cathode Screening

AIとエンジニアの協働:旧型ノートPCで実現した対称型有機二次電池活物質の自律的ハイスループットスクリーニング

次世代の有機二次電池開発において、高容量かつ高電圧を示す活物質材料の創製は極めて重要な課題です。中でも、正極と負極の双方の役割を1分子で果たす「デュアルレドックス型(対称型セル用)活物質」は、セル構造を劇的に簡素化し、製造コストの削減や異種材料間の相互汚染を防ぐことができるため、非常に強い関心を集めています。しかし、電解液の安定電位窓内で、可逆的な酸化反応(正極動作)と還元反応(負極動作)を高い可逆性で両立できる有機分子を探索することは、気の遠くなるような組合せ爆発との戦いでした。

本記事では、YK Energy Device & Consultingが実施した自律的ハイスループット量子化学スクリーニングキャンペーンの詳細を報告します。特筆すべきは、**計算科学の専門知識を持たない電池開発エンジニア**が、エージェンティックAI(Google Antigravity)とのチャットを通じた「壁打ち」を繰り返しながら、古いノートPC上で**1,500件を超える候補化合物**のスクリーニング環境を構築し、完遂した点にあります。

要点まとめ(Key Takeaways)
  • Agentic AIによる量子化学計算の民主化: 計算化学の非専門エンジニアでも、Agentic AIの支援によりDFT(密度汎関数法)を用いた酸化還元電位計算を自律的に実行・評価できるアプローチを実証。
  • 電位・溶媒和自由エネルギーの精密推定: 有機活物質(ラジカル・キノン誘導体)の酸化・還元状態における電子エネルギーとSMD溶媒和効果を計算し、実測に近い酸化還元電位を予測。
  • サステナブル電極材料の高速探索: コバルト・ニッケル等の希少金属フリーな有機二次電池正極のハイスループット探索・分子設計指針を提供。

本取り組みの視点: 計算科学の専門家ではない電池開発エンジニアでも、AIのサポートを得ることで、手元の古いPCを使って「思いつきのスクリーニング計算」をここまで手軽に実行できることを示しました。この計算単体で完結させるのではなく、実際の合成や評価実験と組み合わせることで真価を発揮するアプローチであり、実験に携わる技術者自身が気軽に活用できるツールとなることを目指しています。

1. 自律スクリーニングの4ステップワークフロー

提案された分子候補に対し、システムは以下の4つのステップを完全に自動化されたクローズドループで実行しました。

1. 候補分子の設計 SMILES (AI + 人間) アクティブ・フィードバック 2. 3D初期構造生成 RDKit (MMFF94力場) 不自然な原子重なりの排除 3. 高速構造最適化 GFN2-xTB (PC溶媒) 再編成エネルギー (λ) 算出 4. 精密DFTエネルギー計算 Psi4 (ωB97X-D/6-31G*) 校正処理 & results.csv 保存 ループ

候補材料の生成ワークフロー

本スクリーニングにおける候補分子の設計・生成は、以下の3段階のプロセスを経て行われました。

  1. 文献調査からの抽出(ベースライン): まず、文献調査から既知の活性有機電極材料(キノン類やニトロキシドラジカル等)を抽出し、それらの酸化還元電位を計算して基準となるベースラインを構築しました。
  2. 構造類似度検索(拡張): 次に、ベースラインで良好な結果を示した化合物の計算結果をもとに、RDKitを用いてMorganフィンガープリント(ECFP4)およびTanimoto係数を計算し、PubChemなどの化合物データベースから構造的に類似した候補化合物を抽出・拡張しました。
  3. LLMによる新規分子生成(探索): 最終段階として、蓄積された数百件以上の計算結果データ(電位および再編成エネルギー)をデザインルールとしてLarge Language Models(Gemini 3.5 Flash, Gemini 3.1 Pro, Claude 3 Opus)に投入し、従来のトレードオフを打破しうる新しい候補分子構造(SMILES)をLLM自身に自律的に設計・提案してもらいました。

STEP 1: 初期3D座標生成と構造プレ最適化 (RDKit)

SMILES形式で提案された分子を3D座標に変換します。量子化学計算に移る前の段階で、RDKitのMMFF94力場を用いた迅速な構造最適化を行い、原子同士の不自然な衝突や重なりをあらかじめ排除します。

STEP 2: 半経験的量子化学計算による構造最適化と可逆性評価 (GFN2-xTB)

COSMO暗黙的溶媒モデルを用いた高速な半経験的量子化学計算「GFN2-xTB」を実行します。COSMOモデルとは、個々の溶媒分子を陽に計算せず、分子の周囲を均一な誘電体(連続体)として近似する手法で、計算コストを大幅に削減できます。実効誘電率は $\epsilon = 60.0$(プロピレンカーボネート + 1M LiPF6 電解液を模した値)に設定しています。このステップでは3つの電荷状態(中性・ラジカルカチオン・ラジカルアニオン)の構造最適化を行い、さらに振動解析を通じて「再編成エネルギー(reorganization energy, $\lambda$)」を算出します。$\lambda$ は電子の授受に伴う分子骨格の変形に必要なエネルギーコストであり、この値が小さいほど充放電時の構造変化が小さく、可逆性が高い(サイクル寿命が長い)ことを示します。

STEP 3: 高精度密度汎関数理論(DFT)によるエネルギー精製 (Psi4)

STEP 2で最適化された分子構造を固定したまま(構造の再最適化は行わず)、ωB97X-D 長距離補正ハイブリッド汎関数と 6-31G(d) 基底系を用いた単点エネルギー計算(single-point calculation)を実行します。ωB97X-Dは長距離精密交換(exact exchange)と分散力補正(Grimme D2)を含んでおり、有機ラジカルイオンのエネルギー評価に対して極めて高い信頼性を持ちます。中性・ラジカルカチオン(+1)・ラジカルアニオン(−1)の3状態それぞれに対して単点計算を実施し、全エネルギーの差分から酸化還元電位を導出します。なお、Psi4の内部状態の汚染(DIISタイマーの蓄積)を防ぐため、各分子の計算は完全に独立したサブプロセスで実行する設計になっています。

STEP 4: 実験データを用いた校正およびランキング

算出された酸化還元電位に対し、実験データを用いた校正(キャリブレーション)処理を施し、対称セル時の電圧($V_{ ext{cell}} = V_{ ext{ox}} - V_{ ext{red}}$)、理論容量、理論エネルギー密度($E_{ ext{density}}$)を算出・記録します。上位化合物は自動的にフラグ付けされ、次の世代の設計インスピレーションへと繋げます。

2. 評価:なぜこの量子化学計算手法を選択したのか?

酸化還元電位や分子構造を正確に予測するため、今回のハイブリッドDFTワークフローに決定するまでにいくつかの計算手法を比較検討しました。以下にその選定理由を解説します。

  • 検討候補 1:固定電荷を用いた古典分子動力学(MD)法
    不採用の理由: 古典MDは拡散係数や粘度などの輸送特性評価には非常に有効ですが、電子の授受(化学反応)を扱うことができません。分子の酸化・還元に伴う結合の組み換えやエネルギー準位の変化をシミュレートできないため、レドックス電位の予測には適用不可能でした。
  • 検討候補 2:高精度第一原理計算(CCSD(T)/cc-pVTZ など)
    不採用の理由: CCSD(T)は小分子のエネルギー計算における最高峰の精度(ゴールドスタンダード)を誇りますが、計算コストが分子サイズの7乗($O(N^7)$)比例で跳ね上がります。物理2コアのノートPC環境では1分子の計算に数週間を要し、1,500件を超えるライブラリの走査には数年以上かかるため、極めて非現実的でした。
  • 検討候補 3:半経験的量子化学計算(GFN2-xTB)単体
    不採用の理由: GFN2-xTBは計算が非常に高速(1分子あたり数秒〜数十秒)であり、大まかな構造最適化には適していますが、絶対的な軌道エネルギーの算出には系統的な誤差があります。電位の算出において0.6 V以上のズレが生じることがあり、高電圧分子を精度よく順位付けする用途には不十分でした。
  • 採用した手法:xTBによる構造予備最適化 + DFT(wB97X-D / 6-31G(d))精製
    採用の理由: 速度と精度のバランスが最も優れたハイブリッドアプローチです。RDKitとGFN2-xTBを用いて迅速に初期構造を緩和し、再編成エネルギーに必要な振動数解析を低コストで行った後、エネルギーの絶対値のみをPsi4によるDFT計算(ωB97X-D/6-31G(d))で高精度に精製します。ωB97X-D汎関数はラジカルイオン状態のエネルギーを正しく評価できるため、実験値での校正と組み合わせることで、ノートPCの限られたリソースでも高精度な電位評価を両立させることができました。

3. 計算中に発生した主な課題とエージェンティックAIによる解決策

限られたハードウェア資源で大規模な量子化学スクリーニングを走らせるにあたり、多くの技術的トラブルに遭遇しました。これらはAIとの協働(対話・デバッグ)を通じてすべて解決されました。

  • 1. CPUおよびメモリの飽和によるOSのフリーズ:
    課題: ThinkPadのIntel Core i7-7500U(物理2コア)でPsi4を全力で実行すると、CPU使用率が100%に達し、ブラウザの閲覧や普段のPC作業が完全に停止(OSハング)する問題が発生しました。
    AIの支援: AIは実行環境のスレッド数を制御する環境変数(OMP_NUM_THREADS=2)を自動適用し、Psi4内のメモリ設定を 4GB に制限した上で、バックグラウンド管理システム(tmux)上で計算をキュー制御する仕組みを構築しました。これにより、日常業務の裏でPCを安定稼働させたままスクリーニングを実行し続けることが可能になりました。
  • 2. 開殻ラジカルイオン状態における電荷・スピン多重度の設定ミス:
    課題: 酸化・還元反応の過程ではラジカル(不対電子)が発生します。中性状態(Singlet, 多重度=1)に対し、酸化状態(+1)や還元状態(-1)では多重度が2(Doublet)かつ開殻系(UHF法)で計算しなければなりませんが、1,500分子に対してこれらを手動で設定すると設定ミスが多発します。
    AIの支援: AIはSMILES文字列から総価電子数を自動計算し、状態に応じた適切な電荷(Charge)およびスピン多重度(Multiplicity)を判定・自動適用するPythonスクリプトを構築し、人為的ミスを完全に排除しました。
  • 3. Psi4における自己無撞着場(SCF)の未収束エラー:
    課題: 共役系が広かったり置換基の多い特定の分子において、DFTの電子密度反復計算(SCF)が規定回数以内に収束せず、エラーを吐いて計算スクリーニング全体がストップしてしまう事象が発生しました。
    AIの支援: AIは自動リカバリー機構(error_recovery.py)を設計しました。SCF未収束を検知すると、自動的にDIIS最適化のパラメータを変更したり、プレ最適化構造に微小なノイズを加えて再計算をトリガーするルーチンを組み込み、無人での自律稼働を維持しました。
  • 4. プロセス実行時の標準出力バッファ飽和(ハングアップ):
    課題: 計算完了後のデータベース解析スクリプトを実行した際、リダイレクト(`>`)を用いたにもかかわらずプロセスが途中で完全にフリーズする現象が起きました。
    AIの支援: AIは非インタラクティブ実行時にシェル(shell)が介在しないため、リダイレクト記号が無視され、約400KBに及ぶ解析レポートが標準出力のパイプバッファに詰まってブロッキングが発生していることを見抜きました。コマンドを bash -c でラッピングして直接ファイルに書き出させるように修正し、瞬時に処理を完了させました。

4. 実験データに基づくキャリブレーション(校正)と検証

暗黙的溶媒近似を用いたシミュレーション値は、実際の電解液(支持塩・溶媒和)の物理効果を完全に表現しきれないため、一定の系統誤差が生じます。これらを解消するため、文献で広く認められている以下の炭酸塩電解液中の実験実測値(vs. $ ext{Li/Li}^+$)をベンチマークとして校正を行いました。

  • n型還元ベンチマーク(負極動作):
    • p-Benzoquinone: $2.40 ext{ V}$
    • 1,2-Naphthoquinone: $2.50 ext{ V}$
    • 9,10-Phenanthrenequinone: $2.15 ext{ V}$
    • Indigo Carmine: $2.20 ext{ V}$
  • p型酸化ベンチマーク(正極動作):
    • TEMPO Radical: $3.50 ext{ V}$

まず、DFT計算から得られた絶対電気化学ポテンシャル(ΔG)を Li/Li⁺ 参照電極基準に変換するため、Li/Li⁺ 対の絶対電位として広く使われている 1.4 V のオフセット定数を適用しました。次に、変換後の計算値とこれらの実測値との残差(誤差)の平均値を「校正オフセット」として算出し、スクリーニング中のすべての化合物の計算結果に加算($V_{\text{calib}} = V_{\text{raw-vs-Li}} + \text{offset}$)することで、実測値と極めて整合性の高い「校正後酸化還元電位」を導き出しました。

5. ハイスループットスクリーニングの全体傾向と分析結果

1,500件を超える化合物データベースから得られた物性マップです。特定の化合物構造や固有データの漏洩を防ぐため、上位のチャンピオングループは一般化された化学分類で示しています。

理論容量と電位のマッピング(全スクリーニングデータ)

n型還元電位(青色・丸)とp型酸化電位(オレンジ色・三角)の分布を示すクラウドプロット。横軸は1分子あたり1電子移動(1e⁻)を仮定した理論比容量です。キノン系などの多くの候補は実用上2電子反応が可能であり、その場合の容量は表示値の約2倍になります。

一般的な電解液電位窓 (2.0 - 4.0 V vs Li) 理論容量 (2e-反応セル時, mAh/g) 校正後酸化還元電位 vs Li/Li+ (V) 0 100 200 300 0 1 2 3 4 5 6 7 n型還元電位(丸) p型酸化電位(三角)

データから得られた主要なスクリーニング傾向:

  • 容量と電位のトレードオフ: 分子量が小さい(高容量な)化合物(300 mAh/g超)ほど、置換基の密度が高くなり、ラジカル化した際の局所的な電荷集中によって再編成エネルギーが大きくなる(キネティクスが低下する)傾向が見られます。
  • 電位窓内の二極化分布: 計算値は綺麗に2つの帯に分かれています。n型還元電位は主に $1.5\text{ V}$ 〜 $3.0\text{ V}$(中央値 ~$2.2\text{ V}$)、p型酸化電位は $4.0\text{ V}$ 〜 $6.5\text{ V}$(中央値 ~$5.4\text{ V}$)に分布しています。これらを同じ分子で動作させた場合の理論セル電圧は、還元と酸化の中央値の差から約 $3.0\text{ V}$ 〜 $3.5\text{ V}$ に達することが分かります。
  • AI提案によるトレードオフ突破: スクリーニング後半に、蓄積データをLLM(AI)に分析させ設計させた「縮合窒素複素環化合物」のグループは、軽量でありながら対称動作のセル電圧を **3.0 V以上** に拡大し、かつ再編成エネルギーを **0.4 eV以下** に抑え込むことに成功しており、優れた急速充放電性能を示唆しています。

代表的な優秀候補カテゴリ

カテゴリ / クラスID 一般構造・分類 代表的な予測セル電圧 容量範囲 推定エネルギー密度 (mWh/g = Wh/kg) 再編成エネルギー(還元 / 酸化)
クラス A-1 軽量置換型ベンゾキノン誘導体 ~2.6 V 高い (~195 mAh/g) 極めて高い (>500 mWh/g) 中程度 / 低い
クラス A-2 多窒素縮合複素環アミン誘導体 ~3.3 V 中程度 (~130 mAh/g) 高い (~420 mWh/g) 極めて低い / 中程度
クラス A-3 アルキルアミノ置換キノン誘導体 ~2.6 V 高め (~175 mAh/g) 高い (~460 mWh/g) 中程度 / 低い

6. プロジェクトの総括と結論

本プロジェクトでは、計算の専門家ではない一人の技術者が、AIのサポートを得ることで、思い浮かんだアイデアをその日のうちに計算に投げ、手元のPC環境で1,500件以上の自律的なスクリーニング計算を回せることを示しました。

しかし、計算機上のスクリーニングはあくまで初期的なフィルタリングに過ぎません。この取り組みが真に価値を持つのは、実際の材料合成や電気化学的な評価実験と密接に連携したときです。計算科学の専門家だけでなく、実験を手がける研究者自身がこのようなスクリーニングを手軽に実行できるようになれば、実験室での試行錯誤を大幅に効率化できます。バーチャルな探索とリアルな実験の組み合わせこそが、今後の材料開発において最大の力を発揮するはずです。

Cite This Article (BibTeX)

@article{kusachi2025organiccathode,
  author = {Yuki Kusachi},
  title = {Autonomous High-Throughput Screening of Organic Active Materials},
  journal = {YK Energy Device \& Consulting Technical Insights},
  year = {2025},
  url = {https://www.edandc.com/articles/Organic_cathode_sim.html}
}