cometsfactory 0.0.3

Comet factory — classify, build and catalogue comets of any type: short-period, long-period, Halley-type, sungrazer, interstellar, main-belt comet, centaur-transition, and extinct.
Documentation
CometsFactory/
├── Cargo.toml
├── ChangeLog.md
├── ComingSoon.md
├── Contributing
├── LICENSE
├── README.md
├── lastest_versions.sh
├── examples/
│   ├── generation.rs
│   ├── observables.rs
│   └── physics.rs
├── src/
│   ├── lib.rs
│   ├── config/
│   │   ├── mod.rs
│   │   └── parameters.rs
│   ├── engine/
│   │   ├── mod.rs
│   │   ├── coma.rs
│   │   ├── evolution.rs
│   │   └── orbits.rs
│   ├── observables/
│   │   ├── mod.rs
│   │   ├── photometry.rs
│   │   └── tail.rs
│   ├── physics/
│   │   ├── mod.rs
│   │   ├── gravity.rs
│   │   └── sublimation.rs
│   ├── types/
│   │   ├── mod.rs
│   │   ├── centaur_transition.rs
│   │   ├── extinct.rs
│   │   ├── halley_type.rs
│   │   ├── interstellar.rs
│   │   ├── long_period.rs
│   │   ├── main_belt_comet.rs
│   │   ├── short_period.rs
│   │   └── sungrazer.rs
│   └── utils/
│       ├── mod.rs
│       ├── helpers.rs
│       └── io.rs
└── tests/
    ├── engine_tests.rs
    ├── physics_tests.rs
    └── types_tests.rs