Skip to content

Commit 23300bb

Browse files
committed
fix help
1 parent 22e9dc1 commit 23300bb

3 files changed

Lines changed: 35 additions & 17 deletions

File tree

docs/api.html

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -740,14 +740,23 @@
740740
</dd>
741741
</dl>
742742
<p>### 🧩 Overview of Core Classes
743-
| Class | Purpose | Key Features |
744-
| —————– | ———————————————————————– | ———————————————————————————————– |
745-
| <cite>species</cite> | Represents a chemical species, radical or non-radical | Tracks identity, concentration, radical status, reactive functions, origin and products |
746-
| <cite>reaction</cite> | Encodes a single chemical reaction with stoichiometry and type | Handles bimolecular/monomolecular logic, canonical fingerprinting, and directionality |
747-
| <cite>reactionRateDB</cite> | Stores and queries rate constants (<cite>k₀</cite>, <cite>Eₐ</cite>) for known reaction types | Supports fingerprint lookups, priority ranks, redox heuristics, and confidence tagging |
748-
| <cite>mixture</cite> | Container for species and reactions in a chemical system | Builds product and reaction networks automatically from a few initial species |
749-
| <cite>mixtureKinetics</cite> | Numerical kinetic solver based on a <cite>mixture</cite> instance | Integrates ODEs, applies temperature &amp; diffusion corrections, and returns time-resolved results |
750-
| <cite>lumped</cite> | Groups multiple species under a shared name or tag (e.g., LOOH) | Supports species aliases, output simplification, and aggregate quantification |</p>
743+
+———————+—————————————————————+
744+
| Class | Purpose |
745+
+=====================+===============================================================+
746+
| <cite>species</cite> | Represents chemical species (radicals, peroxides, stable) |
747+
+———————+—————————————————————+
748+
| <cite>reaction</cite> | Canonical reaction with fingerprint and type inference |
749+
+———————+—————————————————————+
750+
| <cite>reactionRateDB</cite> | Registry of rate constants (k₀, Eₐ) searchable by fingerprint |
751+
+———————+—————————————————————+
752+
| <cite>mixture</cite> | Encodes physical/chemical system: species, V, A, T, kO₂, pO₂ |
753+
+———————+—————————————————————+
754+
| <cite>mixtureKinetics</cite> | Numerical integrator for the chemical system (<cite>solve_ivp</cite>) |
755+
+———————+—————————————————————+
756+
| <cite>lumped</cite> | Group of species for aggregate observables |
757+
+———————+—————————————————————+
758+
| <cite>TKO2cycle</cite> | Dynamic temperature and kO₂ definition for advanced scenarios |
759+
+———————+—————————————————————+</p>
751760
<p>Author: Olivier Vitrac — <a class="reference external" href="mailto:olivier&#46;vitrac&#37;&#52;&#48;gmail&#46;com">olivier<span>&#46;</span>vitrac<span>&#64;</span>gmail<span>&#46;</span>com</a>
752761
Revision: 2025-05-13</p>
753762
<dl class="py class">

docs/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

radigen3/oxidation.py

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,23 @@
3535
3636
3737
### 🧩 Overview of Core Classes
38-
| Class | Purpose | Key Features |
39-
| ----------------- | ----------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------- |
40-
| `species` | Represents a chemical species, radical or non-radical | Tracks identity, concentration, radical status, reactive functions, origin and products |
41-
| `reaction` | Encodes a single chemical reaction with stoichiometry and type | Handles bimolecular/monomolecular logic, canonical fingerprinting, and directionality |
42-
| `reactionRateDB` | Stores and queries rate constants (`k₀`, `Eₐ`) for known reaction types | Supports fingerprint lookups, priority ranks, redox heuristics, and confidence tagging |
43-
| `mixture` | Container for species and reactions in a chemical system | Builds product and reaction networks automatically from a few initial species |
44-
| `mixtureKinetics` | Numerical kinetic solver based on a `mixture` instance | Integrates ODEs, applies temperature & diffusion corrections, and returns time-resolved results |
45-
| `lumped` | Groups multiple species under a shared name or tag (e.g., LOOH) | Supports species aliases, output simplification, and aggregate quantification |
38+
+---------------------+---------------------------------------------------------------+
39+
| Class | Purpose |
40+
+=====================+===============================================================+
41+
| `species` | Represents chemical species (radicals, peroxides, stable) |
42+
+---------------------+---------------------------------------------------------------+
43+
| `reaction` | Canonical reaction with fingerprint and type inference |
44+
+---------------------+---------------------------------------------------------------+
45+
| `reactionRateDB` | Registry of rate constants (k₀, Eₐ) searchable by fingerprint |
46+
+---------------------+---------------------------------------------------------------+
47+
| `mixture` | Encodes physical/chemical system: species, V, A, T, kO₂, pO₂ |
48+
+---------------------+---------------------------------------------------------------+
49+
| `mixtureKinetics` | Numerical integrator for the chemical system (`solve_ivp`) |
50+
+---------------------+---------------------------------------------------------------+
51+
| `lumped` | Group of species for aggregate observables |
52+
+---------------------+---------------------------------------------------------------+
53+
| `TKO2cycle` | Dynamic temperature and kO₂ definition for advanced scenarios |
54+
+---------------------+---------------------------------------------------------------+
4655
4756
4857
Author: Olivier Vitrac — olivier.vitrac@gmail.com

0 commit comments

Comments
 (0)