Technical Documentation ยท API Reference ยท Field Protocols

CARBON-ICA

Documentation

Complete guide for the eight-parameter Earth system science framework quantifying global carbon cycle dynamics, natural sink capacity, and the critical threshold at which Earth's self-regulating biogeochemical systems approach saturation.

DOI: 10.5281/zenodo.18995446 Python 3.9+ MIT License PCSI 0.78 8 Parameters
v1.0.0 ยท Stable Released: March 13, 2026 65-Year Baseline 1,847 Events 10,000 Ensemble

First unified framework for planetary carbon accounting

"Weighing the Breath of the Earth."

CARBONICA is a physically rigorous eight-parameter framework for real-time quantification of global carbon cycle dynamics, natural sink capacity, and the critical threshold at which Earth's self-regulating biogeochemical systems approach saturation. The framework integrates eight governing parameters into the Planetary Carbon Saturation Index (PCSI).

0.78
PCSI 2025
Up from 0.31 in 1960
0.947
rยฒ vs Keeling
65-year validation
1.71
F_perma
PgC/yr ยท 4.3% emissions
12.4
Revelle Factor
36% buffer loss
65
Years
1960-2025 baseline
8
Parameters
Integrated framework

Nature Climate Change (Springer Nature)

CARBONICA Research Paper
Submitted to Nature Climate Change ยท March 13, 2026
Title: CARBONICA: Advanced Planetary Carbon Accounting & Feedback Dynamics โ€” A Multi-Parameter Earth System Science Framework for Real-Time Quantification of Global Carbon Cycle Dynamics, Sink Saturation, and Planetary Self-Regulation Thresholds
Author: Samir Baladi
Affiliation: Ronin Institute / Rite of Renaissance
DOI: 10.5281/zenodo.18995446
License: MIT License
Status: Under review
Keywords: global carbon cycle, carbon budget, net primary productivity, oceanic carbon sink, permafrost thaw flux, Revelle factor, air-sea gas exchange, photosynthetic quantum yield, carbon residence time, Earth system science

Validation performance metrics

0.947
rยฒ vs Keeling
65-year validation
36%
Buffer Loss
Revelle Factor 9.1โ†’12.4
35x
F_perma Increase
1990โ†’2025
โˆ’0.9%
ฮฆ_q Decline
Per decade (global)
2047-53
Critical Year
SSP3-7.0 projection
15-25
PgC Budget
Smaller vs AR6

Physical framework

ParameterSymbolWeightDescription
Net Primary ProductivityNPP0.16Terrestrial photosynthetic carbon uptake
Oceanic Carbon SinkS_ocean0.18Air-sea COโ‚‚ exchange
Atmospheric COโ‚‚ GrowthG_atm0.20Highest weight โ€” source-sink imbalance
Permafrost Thaw FluxF_perma0.19Frozen carbon reserve release
Buffer Capacityฮฒ0.12Revelle Factor inverse
Soil Residence Timeฯ„_soil0.07Terrestrial reservoir stability
Anthropogenic EmissionE_anth0.05Human perturbation term
Quantum Yieldฮฆ_q0.03Photosynthetic efficiency

Composite index

// Planetary Carbon Saturation Index // CARBONICA Composite Formula PCSI = 0.20 ยท G_atm* // Atmospheric COโ‚‚ Growth Rate + 0.19 ยท F_perma* // Permafrost Thaw Flux + 0.18 ยท S_ocean* // Oceanic Carbon Sink + 0.16 ยท NPP* // Net Primary Productivity + 0.12 ยท ฮฒ* // Buffer Capacity + 0.07 ยท ฯ„_soil* // Soil Residence Time + 0.05 ยท E_anth* // Anthropogenic Emission + 0.03 ยท ฮฆ_q* // Quantum Yield // All parameters normalized to [0, 1] using 65-year reference dataset // G_atm and F_perma carry highest weights โ€” strongest positive feedback character // Weights sum to 1.0 (PCA-derived from 1960-2000 training period)
โ‰ฅ0.80
CRITICAL
Self-reinforcing feedbacks emerging
0.55-0.79
TRANSITIONAL
Sink weakening detectable
<0.55
STABLE
Sinks dominating

Three-level alert framework

LevelPCSI RangeDescriptionAction
๐ŸŸข STABLE<0.55Sinks dominating, stable carbon cycleRoutine monitoring
๐ŸŸก TRANSITIONAL0.55-0.79Sink weakening detectableEnhanced monitoring
๐Ÿ”ด CRITICALโ‰ฅ0.80Self-reinforcing feedbacks emergingImmediate attention

Quick setup

# Install from PyPI pip install carbonica # Clone repository git clone https://github.com/gitdeeper9/carbonica.git cd carbonica # Install with pip pip install -r requirements.txt pip install -e . # Or using Docker docker-compose up -d # Verify installation python -c "import carbonica; print(carbonica.__version__)"

Python interface

CarbonBudget
Master dC_atm/dt integrator
from carbonica import CarbonBudget budget = CarbonBudget( baseline_year=1960, end_year=2025, data_dir="./data" ) budget.load_observations() params = budget.get_current_state(2025) print(params['G_atm']) # โ†’ 2.38 ppm/yr
OceanSinkModel
Air-sea COโ‚‚ exchange & Revelle Factor
from carbonica.modules import OceanSinkModel ocean = OceanSinkModel(data_dir="./data") R = ocean.get_revelle_factor(2025) beta = ocean.get_buffer_capacity(2025) print(f"R = {R:.1f}, ฮฒ = {beta:.3f}")
PermafrostEngine
Permafrost thaw flux calculations
from carbonica.modules import PermafrostEngine perma = PermafrostEngine(data_dir="./data") flux = perma.get_flux(2025) components = perma.separate_thaw_types(flux, 2025) print(f"Abrupt thaw: {components['abrupt']:.2f} PgC/yr")
QuantumYieldTracker
Photosynthetic quantum yield from SIF
from carbonica.modules import QuantumYieldTracker qyt = QuantumYieldTracker(data_dir="./data") phi_global = qyt.get_quantum_yield(2025) phi_amazon = qyt.get_quantum_yield(2025, 'amazon_tropical') print(f"Global: {phi_global:.4f}, Amazon: {phi_amazon:.4f}")
PCSI.compute()
Compute Planetary Carbon Saturation Index from eight parameters
from carbonica import PCSI pcsi = PCSI() params = { 'NPP': 58.3, 'S_ocean': -3.08, 'G_atm': 2.38, 'F_perma': 1.71, 'beta': 0.081, 'tau_soil': 27, 'E_anth': 11.2, 'Phi_q': 0.071 } result = pcsi.compute(params) print(f"PCSI = {result:.3f} ({pcsi.get_status(result)})")

Field validation

๐ŸŒณ Amazon
2018-2023
Sink โ†’ source, 20% ฮฆ_q decline
โ„๏ธ Arctic
Permafrost
1.71 PgC/yr, 31% abrupt thaw
๐ŸŒ‹ Mauna Loa
1960-2025
65-year baseline, rยฒ=0.997
๐ŸŒŠ Revelle
Buffer Loss
2.5ร— acceleration, 36% loss
๐Ÿ”„ Permafrost
Feedback
4.3% global emissions
๐ŸŒฟ ฮฆ_q
Decline
-0.9%/decade global

Principal investigator

๐ŸŒ

Samir Baladi

Interdisciplinary AI Researcher โ€” Earth System Science, Carbon Cycle Dynamics & Planetary Flux Modeling
Ronin Institute / Rite of Renaissance
Samir Baladi is an independent researcher affiliated with the Ronin Institute, developing the Rite of Renaissance interdisciplinary research program. CARBONICA is the third framework in a series of openโ€‘source geophysical frameworks, following CORAL-CORE (coral reef systems), LITHO-SONIC (crustal stress), and INFRAS-CLOUD (atmospheric infrasound). The framework was validated against a 65-year observational baseline (1960โ€“2025) spanning seven global datasets.
No conflicts of interest declared.
๐Ÿ“ง gitdeeper@gmail.com ๐Ÿ”— ORCID: 0009-0003-8903-0029 ๐Ÿ™ GitHub ๐ŸฆŠ GitLab

How to cite

@software{baladi2026carbonica, author = {Baladi, Samir}, title = {CARBONICA: Advanced Planetary Carbon Accounting \& Feedback Dynamics}, year = {2026}, version = {1.0.0}, doi = {10.5281/zenodo.18995446}, url = {https://github.com/gitdeeper9/carbonica}, license = {MIT} }
"Carbon is the chemical backbone of life and the primary radiative forcing agent of Earth's climate. At PCSI = 0.78, the planet's self-regulating carbon systems are approaching a threshold from which return becomes uncertain. CARBONICA makes it measurable."

Start Monitoring

Access the complete framework, validation dataset, and Python package.