Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disc surface density #76

Merged
merged 9 commits into from
Feb 13, 2024
11 changes: 11 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,14 @@ The default smoothing kernel is the cubic spline. Additional smoothing kernels a
kernels.CubicSplineKernel
kernels.QuarticSplineKernel
kernels.QuinticSplineKernel


Disc
----

Accretion disc analysis routines are in the disc module.

.. autosummary::
:toctree: api/

disc.surface_density
1 change: 1 addition & 0 deletions sarracen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@
from .interpolate import interpolate_2d, interpolate_2d_line, interpolate_3d_proj, interpolate_3d_cross
from .render import render, streamlines, arrowplot

import sarracen.disc

__version__ = "1.2.3"
1 change: 1 addition & 0 deletions sarracen/disc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from ..disc.surface_density import surface_density, angular_momentum, scale_height, honH
Loading