Skip to content

Commit

Permalink
fix pages names and add problem def
Browse files Browse the repository at this point in the history
  • Loading branch information
stridouille committed Jul 9, 2024
1 parent 9207076 commit 726ec09
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ makedocs(
sitename = "AveragedKepler",
format = Documenter.HTML(prettyurls = false),
pages = [
"Home" => "index.md",
"Problem definition" => "index.md",
"3D Visualization" => [
"synthesis.md",
"spheres.md",
"geodesics.md",
"Optimal Synthesis" => "synthesis.md",
"Spheres" => "spheres.md",
"Geodesics" => "geodesics.md",
],
]
)
Expand Down
29 changes: 28 additions & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# Averaged Kepler problem
# The averaged Kepler problem

We consider the Hamiltonian

$$
H(r, \theta, p_r, p_\theta) = v p_\theta + \Vert p \Vert_{g}
$$

where $v$ is a constant, $p = (p_r, p_\theta)$, and $\Vert \cdot \Vert_{g}$ is the norm induced by the metric

$$
g = \mathrm{d}r^2 + m_\lambda^2(r)\, \mathrm{d}\theta^2, \quad
m_\lambda^2(r) = \frac{\sin^2 r}{1 - \lambda \sin^2 r}
$$

with $\lambda = 4/5$.

Along the geodesics, we have $H+p^0 = 0$. The parameter $p^0$ is constant equal to $-1$ (hyperbolic), $0$ (abnormal) or $1$ (elliptic).

**Remark.** We can parameterize the geodesics by the norm of the initial convector, setting $\Vert{p_0}\Vert_g = 1$.
This amounts to parameterize by the initial angle $\alpha_0$:
$$
p_r = \sin \alpha_0, \quad p_\theta = m_\lambda(r) \cos \alpha_0.
$$
In that case, the hyperbolic geodeics are given by
$$
p_\theta\, v + 1 = v\, m_\lambda(r) \cos \alpha_0 + 1 > 0.
$$

0 comments on commit 726ec09

Please sign in to comment.