Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ validation status, limitations, and release artifacts.

```bash
uv sync --all-extras --no-editable
.venv/bin/python run_search.py --mode full
uv run chained-eclipse --mode full
```

The first run downloads `de440s.bsp` into `data/ephemeris/`. Results are
Expand All @@ -68,16 +68,16 @@ reference movies and executed-run bundle are attached to the

```bash
# Validate the real-Moon model against NASA/GSFC reference circumstances.
.venv/bin/python run_search.py --mode validate
.venv/bin/chained-eclipse --mode validate

# Design the earliest deliberately aligned configuration.
.venv/bin/python run_search.py --mode design
.venv/bin/chained-eclipse --mode design

# Propagate the saved configuration without redesigning it per eclipse.
.venv/bin/python run_search.py --mode fixed
.venv/bin/chained-eclipse --mode fixed

# Run the 1,000-year coupled stability experiment.
.venv/bin/python run_search.py --mode stability
.venv/bin/chained-eclipse --mode stability

# Render the solved 2026 event as a two-scale 3-D H.264 movie.
.venv/bin/python -m chained_eclipse.animation \
Expand Down Expand Up @@ -140,6 +140,9 @@ topocentric circumstances:
.venv/bin/python -m chained_eclipse.eclipse4_atlanta
```

These two one-off analyses are intentionally not installed as console
scripts; run them with `python -m` as shown.

Run the unit and reference tests with:

```bash
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ chained-eclipse-animate = "chained_eclipse.animation:main"
chained-eclipse-map-animate = "chained_eclipse.animation_2d:main"
chained-eclipse-standalone = "chained_eclipse.standalone:main"
chained-eclipse-ground-track = "chained_eclipse.standalone_map:main"
chained-eclipse-total-tracks-2027 = "chained_eclipse.total_tracks_2027:main"
chained-eclipse-eclipse4-atlanta = "chained_eclipse.eclipse4_atlanta:main"
chained-eclipse-coupled = "chained_eclipse.coupled_eclipse:main"
chained-eclipse-coupled-figures = "chained_eclipse.coupled_figures:main"
chained-eclipse-lunar = "chained_eclipse.lunar_eclipse:main"
Expand Down
9 changes: 0 additions & 9 deletions run_search.py

This file was deleted.