Complete documentation overview for v0.2.0
© 2025 Carmen Wrede, Lino Casu
New users start here:
- 📖 README.md - Project overview and installation
- 💡 EXAMPLES.md - Code examples and usage
- 🏗️ ARCHITECTURE.md - How the code is structured
| File | Purpose | Audience |
|---|---|---|
| README.md | Main project documentation | All users |
| EXAMPLES.md | Code examples and tutorials | Users |
| ARCHITECTURE.md | Technical architecture | Developers |
| File | Purpose | Audience |
|---|---|---|
| SSZ_APPROACHES_COMPARISON.md | Xi(r) vs phi_G(r) detailed comparison | Technical readers |
| CHATGPT_CORRECTION.md | Response to ChatGPT's phi_G suggestion | ChatGPT users |
| DOCUMENTATION_INDEX.md | This file - documentation overview | All |
| File | Purpose | Type |
|---|---|---|
test_ssz_vs_minkowski.py |
Quantitative validation of Xi(r) | Script |
| Self-tests in modules | Unit testing | Code |
- README.md - Xi(r) approach clearly stated
- EXAMPLES.md - Uses Xi(r) formulas
- ARCHITECTURE.md - Xi(r) documented as core
- SSZ_APPROACHES_COMPARISON.md - Both approaches compared
- CHATGPT_CORRECTION.md - Clarifies Xi(r) vs phi_G(r)
- Xi(r) = 1 - exp(-PHI * r/r_s)
- PHI = (1 + sqrt(5)) / 2 = 1.618034 (Golden Ratio)
- D_SSZ(r) = 1 / (1 + Xi(r))
- R_ssz = r * (1 + Xi(r))
- README → EXAMPLES, ARCHITECTURE, SSZ_APPROACHES_COMPARISON
- EXAMPLES → README, ARCHITECTURE
- ARCHITECTURE → All other docs
- SSZ_APPROACHES_COMPARISON → CHATGPT_CORRECTION, EXAMPLES
- CHATGPT_CORRECTION → SSZ_APPROACHES_COMPARISON
- No
DiagonalFormclass - No fake
gammaintegration - No phi_G(r) in main code
- Legacy functions clearly marked as deprecated
- All docs reference v0.2.0
- init.py version = "0.2.0"
- ARCHITECTURE mentions v0.2.0 changes
Segmented-Spacetime-StarMaps/
│
├── README.md # Main documentation
├── EXAMPLES.md # Code examples
├── ARCHITECTURE.md # Technical architecture
├── SSZ_APPROACHES_COMPARISON.md # Xi(r) vs phi_G(r) comparison
├── CHATGPT_CORRECTION.md # Response to ChatGPT
├── DOCUMENTATION_INDEX.md # This file
│
├── src/ssz_starmaps/
│ ├── __init__.py # API exports (v0.2.0)
│ ├── ssz_metric.py # Xi(r) implementation
│ ├── projection.py # SSZ deformations
│ ├── catalog.py # SIMBAD + GAIA
│ ├── geometry.py # Ramanujan formulas
│ └── demo_starmap.py # Main demo
│
└── test_ssz_vs_minkowski.py # Validation script
- README.md (overview)
- EXAMPLES.md (learn by doing)
- Run demo:
python -m ssz_starmaps.demo_starmap
- ARCHITECTURE.md (structure)
- Read source:
ssz_metric.py(core physics) - Read source:
projection.py(deformations)
- CHATGPT_CORRECTION.md (avoid common mistakes!)
- SSZ_APPROACHES_COMPARISON.md (understand differences)
- ARCHITECTURE.md (see what we actually use)
- SSZ_APPROACHES_COMPARISON.md (physics comparison)
- test_ssz_vs_minkowski.py (validation)
- Source:
ssz-metric-purerepo (original theory)
- Approach: Xi(r) - Segment Saturation
- φ Meaning: Golden Ratio (1.618034)
- Formula: Xi(r) = 1 - exp(-φ·r/r_s)
- Source:
ssz-metric-pure/src/ssz_core/segment_density.py
- NOT using: phi_G(r) - Spiral Rotation
- NOT using: DiagonalForm class (doesn't exist!)
- NOT using: gamma integration
- NOT using: 2PN calibration approach
- Main theory:
ssz-metric-purerepository - Star catalog: SIMBAD, GAIA DR3
- License: Anti-Capitalist Software License v1.4
A: Xi(r) is simpler (no integration), already validated, and has clear Golden Ratio physics. See SSZ_APPROACHES_COMPARISON.md.
A: It doesn't exist! ChatGPT hallucinated this API. See CHATGPT_CORRECTION.md.
A: No! They're different physical approaches with different φ meanings. Don't mix them.
A: In the ssz-metric-pure repository, specifically src/ssz_core/segment_density.py for Xi(r).
- ✅ Created CHATGPT_CORRECTION.md
- ✅ Created SSZ_APPROACHES_COMPARISON.md
- ✅ Created ARCHITECTURE.md
- ✅ Updated README.md with Xi(r) clarification
- ✅ Updated EXAMPLES.md with correct usage
- ✅ Created this index
© 2025 Carmen Wrede, Lino Casu
Licensed under the Anti-Capitalist Software License v1.4