Skip to main content

DecoDaiTengu - dive decompression library (fork of DecoTengu)

Project description

DecoDaiTengu

A modern Python dive decompression library implementing the Bühlmann ZH-L16B/C decompression model with Erik Baker's gradient factors.

This is a modernised fork of the original DecoTengu library (v0.14.1, 2018) by Artur Wroblewski.

Features

  • ZH-L16B-GF and ZH-L16C-GF models with full helium compartment support (trimix)
  • Gradient factor configuration (GF low/high)
  • CNS and OTU oxygen toxicity tracking
  • High-level plan_dive() API for common dive planning
  • Type-annotated, Python 3.10+ codebase
  • Gas mix support: air, nitrox, trimix

Quick Start

pip install decodaitengu
from decodaitengu import plan_dive, Gas

# Simple air dive
result = plan_dive(depth=35, bottom_time=40, gf=(30, 85))
print(f"Runtime: {result.runtime} min")
print(f"Deco stops: {[(s.depth, s.time) for s in result.stops]}")
print(f"CNS: {result.cns_percent}%")

# Trimix dive with deco gas
result = plan_dive(
    depth=60,
    bottom_time=20,
    back_gas=Gas(21, 35),
    deco_gases=[Gas(50, 0, switch_depth=21), Gas(100, 0, switch_depth=6)],
    gf=(30, 85),
)
print(f"Runtime: {result.runtime} min")

# Segmented ascent profile: 10 m/min to 6m, then 0.5 m/min to surface
result = plan_dive(
    depth=45,
    bottom_time=20,
    ascent_rate=[(6, 10), (0, 0.5)],
)

# Dict form is also supported
result = plan_dive(
    depth=45,
    bottom_time=20,
    ascent_rate={6: 10, 0: 0.5},
)

Ascent Rates

plan_dive() accepts ascent_rate in three forms:

  • Single float (uniform ascent), e.g. 10.0
  • List of (max_depth_m, rate_m_per_min), e.g. [(6, 10), (0, 0.5)]
  • Dict mapping depth to rate, e.g. {6: 10, 0: 0.5}

Rules:

  • All rates must be positive finite numbers.
  • Segment depths must be non-negative.
  • Profile input must include a segment at depth 0 (surface).

Models

from decodaitengu import plan_dive
from decodaitengu.models import ZHL16C, ZHL16B

# ZHL-16C is the default (recommended for dive computers)
result = plan_dive(depth=40, bottom_time=25, model=ZHL16C)

# ZHL-16B available for backward compatibility
result = plan_dive(depth=40, bottom_time=25, model=ZHL16B)

Legacy API

The original DecoTengu Engine-based API has been removed. Calling decodaitengu.create() raises RuntimeError with migration instructions.

Migration from old decotengu:

# OLD (decotengu v0.x):
#   import decotengu
#   engine = decotengu.create()
#   engine.add_gas(0, 21)
#   profile = engine.calculate(35, 40)
#   list(profile)
#   print(engine.deco_table.total)

# NEW (decodaitengu v1.x):
from decodaitengu import plan_dive, Gas

result = plan_dive(depth=35, bottom_time=40, back_gas=Gas(21, 0), gf=(30, 85))
print(result.total_deco_time)

Known Differences from Other Planners

This library uses the analytically-exact Schreiner equation for tissue loading, whereas Subsurface (and many dive computers) use the Haldane equation with discrete 1-second steps. The two approaches are equivalent at constant depth but produce slightly different results during ascent/descent phases.

Key divergences from Subsurface 6.0 (ZHL-16C, GF 50/70):

Factor Effect Typical magnitude
Schreiner vs Haldane 1s steps Less conservative during ascent ±1–4 min at shallow stops
Gas switch timing (free ascent) May be more conservative +2–4 min at 3m for multi-gas
Helium off-gassing Extra shallow stops for trimix +1 stop at 18m

Per-stop divergence is bounded at ≤5 minutes in integration tests. See tests/integration/reference_data.json for exact Subsurface reference values.

This library is not a certified dive planning tool. Always validate plans against established software and never dive beyond your training.

Documentation

The legacy Sphinx docs (referencing the old decotengu namespace) have been removed. API documentation will be rebuilt from the current decodaitengu package in a future release.

Development

pip install -e ".[dev]"
pre-commit install
pre-commit run --all-files
pytest
ruff check .

The pre-commit hooks intentionally run check-only commands matching CI:

ruff check decodaitengu/
ruff format --check decodaitengu/

Release Process

  • Add or update release notes in RELEASE_NOTES.md with a heading that matches the tag, for example ## v1.2.1.
  • The publish workflow enforces this and will fail if the section is missing.

License

GPL-3.0-or-later. See COPYING for details.

WARNING: This software is provided as-is with no warranty. Any diving using data provided by this library is at the diver's own risk.

Ukiyoe print by Utagawa Kuniyoshi. The poem (substituting hentaigana and adding punctuation) reads, 競れば、長し短し、むつかしや。我慢の鼻の、を(置)き所なし Kurabureba, nagashi mijikashi, mutsukashiya. Gamanno hanano, okidokoro nashi and means something like, "If you compete, long or short, it's a problem. With a boast-worthy? nose, there's no place to put it."

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

decodaitengu-1.4.2.tar.gz (64.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

decodaitengu-1.4.2-py3-none-any.whl (68.1 kB view details)

Uploaded Python 3

File details

Details for the file decodaitengu-1.4.2.tar.gz.

File metadata

  • Download URL: decodaitengu-1.4.2.tar.gz
  • Upload date:
  • Size: 64.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for decodaitengu-1.4.2.tar.gz
Algorithm Hash digest
SHA256 e5c8feaa212fd99ca5069436c84acaeaa4e59cb6dcf38d5a0242eb6ab3ef1283
MD5 908bf203d3ce338a521bf24f44800ed4
BLAKE2b-256 941104831abd8aa2e7d81c4af15054e9f08bc38e0fe94c134ba4e69ff17e5923

See more details on using hashes here.

Provenance

The following attestation bundles were made for decodaitengu-1.4.2.tar.gz:

Publisher: publish.yml on notionparallax/decodaitengu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file decodaitengu-1.4.2-py3-none-any.whl.

File metadata

  • Download URL: decodaitengu-1.4.2-py3-none-any.whl
  • Upload date:
  • Size: 68.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for decodaitengu-1.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 28092027a4c1c049ef18c79b0d6a428f7f87545416d572f54445e40d6a0de554
MD5 b4695f7858792fa314dc6aba2532d175
BLAKE2b-256 91f040aa41131f03fd669288f18d22a4ab9a463f5a56379e737226f485af0ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for decodaitengu-1.4.2-py3-none-any.whl:

Publisher: publish.yml on notionparallax/decodaitengu

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page