Skip to content

Commit

Permalink
doc: update
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgepiloto committed Sep 9, 2024
1 parent 1ff3153 commit 2080c3c
Showing 1 changed file with 22 additions and 26 deletions.
48 changes: 22 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,29 +61,25 @@ where `author` is the name of the author which developed the solver and `YYYY`
the year of publication. Any of the solvers hosted by the `ALL_SOLVERS` macro
can be used.

| Parameter | Description |
|-----------|-------------|
| `mu` | The gravitational parameter, i.e., mass of the attracting body times the gravitational constant. |
| `r1` | Initial position vector. |
| `r2` | Final position vector. |
| `tof` | Time of flight between initial and final vectors. |

| Additional Parameters | Description |
|-----------------------|-------------|
| `M` | The number of revolutions. If zero (default), direct transfer is assumed. |
| `prograde` | Controls the inclination of the final orbit. If `True`, inclination between 0 and 90 degrees. If `False`, inclination between 90 and 180 degrees. |
| `low_path` | Selects the type of path when more than two solutions are available. No specific advantage unless there are mission constraints. |
| `maxiter` | Maximum number of iterations allowed when computing the solution. |
| `atol` | Absolute tolerance for the iterative method. |
| `rtol` | Relative tolerance for the iterative method. |
| `full_output` | If `True`, returns additional information such as the number of iterations. |

| Return | Description |
|--------|-------------|
| `v1` | Initial velocity vector. |
| `v2` | Final velocity vector. |

| Additional Returns | Description |
|--------------------|-------------|
| `numiter` | Number of iterations (only if `full_output` is `True`). |
| `tpi` | Time per iteration (only if `full_output` is `True`). |
### Parameters and Returns

| Parameters | Description |
|---------------|-------------|
| `mu` | The gravitational parameter, i.e., mass of the attracting body times the gravitational constant. |
| `r1` | Initial position vector. |
| `r2` | Final position vector. |
| `tof` | Time of flight between initial and final vectors. |
| `M` | The number of revolutions. If zero (default), direct transfer is assumed. |
| `prograde` | Controls the inclination of the final orbit. If `True`, inclination between 0 and 90 degrees. If `False`, inclination between 90 and 180 degrees. |
| `low_path` | Selects the type of path when more than two solutions are available. No specific advantage unless there are mission constraints. |
| `maxiter` | Maximum number of iterations allowed when computing the solution. |
| `atol` | Absolute tolerance for the iterative method. |
| `rtol` | Relative tolerance for the iterative method. |
| `full_output` | If `True`, returns additional information such as the number of iterations. |

| Returns | Description |
|---------------|-------------|
| `v1` | Initial velocity vector. |
| `v2` | Final velocity vector. |
| `numiter` | Number of iterations (only if `full_output` is `True`). |
| `tpi` | Time per iteration (only if `full_output` is `True`). |

0 comments on commit 2080c3c

Please sign in to comment.