Skip to content

Commit

Permalink
Merge pull request #76 from ttricco/65-1d-surface-density-plot-feature
Browse files Browse the repository at this point in the history
Disc surface density
  • Loading branch information
ttricco authored Feb 13, 2024
2 parents fc261e5 + af18fff commit f0a75e5
Show file tree
Hide file tree
Showing 8 changed files with 654 additions and 2 deletions.
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

0 comments on commit f0a75e5

Please sign in to comment.