Skip to main content

MCGT utilities

Project description

Docs CI Pre-commit Release

MCGT : Le Modèle de la Courbure Gravitationnelle du Temps

Corpus scientifique structuré (10 chapitres LaTeX) + scripts, données, figures et manifestes assurant la reproductibilité de bout en bout.

  • Langue du dépôt : Français
  • Python : 3.9 → 3.13 (CI principale sur 3.12)
  • Licence : MIT (cf. LICENSE)
  • Sous-projet Python : zz-tools (utilitaires MCGT)

Sommaire

  1. Objectifs & périmètre
  2. Arborescence minimale
  3. Installation (venv ou conda)
  4. Variables transverses
  5. Reproduire les résultats (quickstart)
  6. Données, figures & manifestes
  7. Qualité & CI
  8. Tests
  9. Publication & empaquetage
  10. Licence, remerciements, citation

1) Objectifs & périmètre

MCGT regroupe :

  • Chapitres LaTeX (conceptuel + détails) : bases théoriques et résultats.
  • Scripts (zz-scripts/) : génération de données et tracés.
  • Données (zz-data/) et figures (zz-figures/) nommées canoniquement.
  • Manifeste (zz-manifests/) : inventaire des artefacts + rapports de cohérence.
  • Schémas (zz-schemas/) : validation JSON/CSV.
  • Utilitaires Python (zz-tools/) : IO, conventions, métriques simples.

Ce README donne un chemin rapide vers l’installation, la reproduction, la validation et la publication. Le détail exhaustif des pipelines est dans README-REPRO.md.


2) Arborescence minimale

MCGT/
├─ main.tex
├─ README.md
├─ README-REPRO.md
├─ RUNBOOK.md
├─ conventions.md
├─ LICENSE
├─ zz-configuration/
│  └─ mcgt-global-config.ini (et .template)
├─ zz-scripts/
│  └─ chapter{01..10}/...
├─ zz-data/
│  └─ chapter{01..10}/...
├─ zz-figures/
│  └─ chapter{01..10}/...
├─ zz-manifests/
│  ├─ manifest_master.json
│  ├─ manifest_publication.json
│  ├─ manifest_report.md
│  └─ diag_consistency.py
├─ zz-schemas/
│  └─ *.schema.json, validate_*.py, consistency_rules.json
└─ zz-tools/
   ├─ pyproject.toml  (version ≥ 0.2.99)
   └─ zz_tools/
      ├─ __init__.py
      └─ common_io.py

3) Installation

Option A — venv + pip

python3 -m venv .venv
. .venv/bin/activate
pip install -U pip
pip install -r requirements.txt

Option B — conda/mamba

mamba env create -f environment.yml   # ou: conda env create -f environment.yml
conda activate mcgt

Utilitaires zz-tools (facultatif si non inclus dans requirements.txt)

pip install zz-tools

4) Variables transverses

export MCGT_CONFIG=zz-configuration/mcgt-global-config.ini
# optionnel (recommandé)
export MCGT_RULES=zz-schemas/consistency_rules.json

Conventions d’unités (rappel) : fréquence f_Hz (Hz), angles en radians (_rad), multipôles ell, distances dist (Mpc). Voir conventions.md.


5) Reproduire les résultats (quickstart)

Le guide complet est dans README-REPRO.md. Ci-dessous, deux pipelines courants.

5.1 Chapitre 09 — Phase d’ondes gravitationnelles

# (0) Générer la référence si besoin
python zz-scripts/chapter09/extract_phenom_phase.py \
  --out zz-data/chapter09/09_phases_imrphenom.csv

# (1) Prétraitement + résidus
python zz-scripts/chapter09/generate_data_chapter09.py \
  --ref zz-data/chapter09/09_phases_imrphenom.csv \
  --out-prepoly zz-data/chapter09/09_phases_mcgt_prepoly.csv \
  --out-diff    zz-data/chapter09/09_phase_diff.csv \
  --log-level INFO

# (2) Optimisation base/degré + rebranch k
python zz-scripts/chapter09/opt_poly_rebranch.py \
  --csv zz-data/chapter09/09_phases_mcgt_prepoly.csv \
  --meta zz-data/chapter09/09_metrics_phase.json \
  --fit-window 30 250 --metrics-window 20 300 \
  --degrees 3 4 5 --bases log10 hz --k-range -10 10 \
  --out-csv  zz-data/chapter09/09_phases_mcgt.csv \
  --out-best zz-data/chapter09/09_best_params.json \
  --backup --log-level INFO

# (3) Figures
python zz-scripts/chapter09/plot_fig01_phase_overlay.py \
  --csv  zz-data/chapter09/09_phases_mcgt.csv \
  --meta zz-data/chapter09/09_metrics_phase.json \
  --out  zz-figures/chapter09/fig_01_phase_overlay.png \
  --shade 20 300 --show-residual --dpi 300
python zz-scripts/chapter09/plot_fig02_residual_phase.py \
  --csv  zz-data/chapter09/09_phases_mcgt.csv \
  --meta zz-data/chapter09/09_metrics_phase.json \
  --out  zz-figures/chapter09/fig_02_residual_phase.png \
  --bands 20 300 300 1000 1000 2000 --dpi 300
python zz-scripts/chapter09/plot_fig03_hist_absdphi_20_300.py \
  --csv  zz-data/chapter09/09_phases_mcgt.csv \
  --meta zz-data/chapter09/09_metrics_phase.json \
  --out  zz-figures/chapter09/fig_03_hist_absdphi_20_300.png \
  --mode principal --bins 50 --window 20 300 --xscale log --dpi 300

5.2 Chapitre 10 — Monte Carlo global 8D

# (1) Config
cat zz-data/chapter10/10_mc_config.json

# (2) Échantillonnage et évaluation
python zz-scripts/chapter10/generate_data_chapter10.py \
  --config zz-data/chapter10/10_mc_config.json \
  --out-results zz-data/chapter10/10_mc_results.csv \
  --out-results-circ zz-data/chapter10/10_mc_results.circ.csv \
  --out-samples zz-data/chapter10/10_mc_samples.csv \
  --log-level INFO

# (3) Diagnostics
python zz-scripts/chapter10/add_phi_at_fpeak.py \
  --results zz-data/chapter10/10_mc_results.circ.csv \
  --out     zz-data/chapter10/10_mc_results.circ.with_fpeak.csv
python zz-scripts/chapter10/inspect_topk_residuals.py \
  --results zz-data/chapter10/10_mc_results.csv \
  --jalons  zz-data/chapter10/10_mc_milestones_eval.csv \
  --out-dir zz-data/chapter10/topk_residuals
python zz-scripts/chapter10/bootstrap_topk_p95.py \
  --results zz-data/chapter10/10_mc_results.csv \
  --topk-json zz-data/chapter10/10_mc_best.json \
  --out-json  zz-data/chapter10/10_mc_best_bootstrap.json \
  --B 1000 --seed 12345

# (4) Figures
python zz-scripts/chapter10/plot_fig01_iso_p95_maps.py        --out zz-figures/chapter10/fig_01_iso_p95_maps.png
python zz-scripts/chapter10/plot_fig02_scatter_phi_at_fpeak.py --out zz-figures/chapter10/fig_02_scatter_phi_at_fpeak.png
python zz-scripts/chapter10/plot_fig03_convergence_p95_vs_n.py --out zz-figures/chapter10/fig_03_convergence_p95_vs_n.png
python zz-scripts/chapter10/plot_fig03b_bootstrap_coverage_vs_n.py --out zz-figures/chapter10/fig_03b_coverage_bootstrap_vs_n_hires.png
python zz-scripts/chapter10/plot_fig04_scatter_p95_recalc_vs_orig.py --out zz-figures/chapter10/fig_04_scatter_p95_recalc_vs_orig.png
python zz-scripts/chapter10/plot_fig05_hist_cdf_metrics.py     --out zz-figures/chapter10/fig_05_hist_cdf_metrics.png
python zz-scripts/chapter10/plot_fig06_residual_map.py         --out zz-figures/chapter10/fig_06_heatmap_absdp95_m1m2.png
python zz-scripts/chapter10/plot_fig07_synthesis.py            --out zz-figures/chapter10/fig_07_summary_comparison.png

6) Données, figures & manifestes

  • Données : zz-data/chapterXX/ — CSV/DAT/JSON ; colonnes et unités documentées dans conventions.md.
  • Figures : zz-figures/chapterXX/ — PNG (300 dpi mini), noms fig_XX_*.
  • Manifestes : inventaire, rapports et corrections :
    • zz-manifests/manifest_master.json (source maître)
    • zz-manifests/manifest_publication.json (sous-ensemble public)
    • zz-manifests/diag_consistency.py (audit; options --report md, --fix)

7) Qualité & CI

Workflows principaux (GitHub Actions) :

  • sanity-main.yml : diagnostics quotidiens et sur push
  • ci-pre-commit.yml : format/linters
  • ci-yaml-check.yml : validation YAML
  • release-publish.yml : build + publication (artefacts/wheel)

Référence : docs/CI.md.


8) Tests

pytest -q

Tests rapides disponibles pour zz-tools (imports, CLI, API publique, IO et figures de base).


9) Publication & empaquetage

Paquet zz-tools

sed -i 's/^version\s*=\s*".*"/version = "0.2.99"/' pyproject.toml
python -m build
twine check dist/*

Contrôle du contenu des artefacts :

WHEEL=$(ls -1 dist/*.whl | tail -n1)
python - <<PY
import sys, zipfile
w=sys.argv[1]
with zipfile.ZipFile(w) as z:
    meta=[n for n in z.namelist() if n.endswith("METADATA")][0]
    t=z.read(meta).decode("utf-8","ignore")
    print("\n".join([l for l in t.splitlines() if l.startswith(("Metadata-Version","Name","Version","Requires-Python","Requires-Dist"))]))
PY "$WHEEL"

unzip -Z1 "$WHEEL" | grep -E '\.bak$|\.env$|\.pem$|\.key$|(^|/)zz-figures/|(^|/)zz-data/' || echo "OK wheel clean"
SDIST=$(ls -1 dist/*.tar.gz | tail -n1)
tar -tzf "$SDIST" | grep -E '\.venv|\.env$|\.pem$|\.key$|(^|/)zz-out/|(^|/)\.ci-|(^|/)\.ruff_cache' || echo "OK sdist clean"

Tag & push :

git add -A
git commit -m "release: zz-tools 0.2.99"
git tag v0.2.99
git push origin HEAD --tags

10) Licence, remerciements, citation

  • Licence : MIT (cf. LICENSE).
  • Contact scientifique : responsable MCGT.
  • Contact technique : mainteneur CI/scripts.

Pour citer : MCGT — Modèle de Courbure Gravitationnelle Temporelle, v0.2.99, 2025.


DOI

Citation

Si vous utilisez MCGT, merci de citer la version DOI : 10.5281/zenodo.15186836. Voir aussi CITATION.cff.


▶ Guide de reproduction rapide : docs/README-REPRO.md

ci-nudge

ci-nudge-2

ci-nudge-3

ci-nudge-pypi

ci-nudge-pypi

ci-nudge-pypi

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

zz_tools-0.3.12.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

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

zz_tools-0.3.12-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file zz_tools-0.3.12.tar.gz.

File metadata

  • Download URL: zz_tools-0.3.12.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zz_tools-0.3.12.tar.gz
Algorithm Hash digest
SHA256 64185092b8320b9bd3aab8ddce31feb6cf40793c1d7e75d8b29144e640a79739
MD5 db6ce196808e0fd6a82038989ff0f798
BLAKE2b-256 a9aca636c0ff04b75e011128878e2af8f25c32e1664a3bff9cc2e87f46dd1281

See more details on using hashes here.

Provenance

The following attestation bundles were made for zz_tools-0.3.12.tar.gz:

Publisher: pypi-publish.yml on JeanPhilipLalumiere/MCGT

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

File details

Details for the file zz_tools-0.3.12-py3-none-any.whl.

File metadata

  • Download URL: zz_tools-0.3.12-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for zz_tools-0.3.12-py3-none-any.whl
Algorithm Hash digest
SHA256 a4f1590c7f8c857694054dd3f41fe8c74a4734325181140bbf4ee9f4889f0b42
MD5 5905aac0e4be9bd2a146501dba61903b
BLAKE2b-256 a645763f888abe9751d6fd8f12208adf0dd3b4206eef4fd61f68a805092abf29

See more details on using hashes here.

Provenance

The following attestation bundles were made for zz_tools-0.3.12-py3-none-any.whl:

Publisher: pypi-publish.yml on JeanPhilipLalumiere/MCGT

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