├── .gitignore ├── Doxyfile ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.list ├── Makefile.local.template ├── Makefile.msvc ├── NEWS ├── README ├── __init__.py ├── data ├── BT08.ini ├── Cautun20.ini ├── Irrgang13.ini ├── MWPotential2014.ini ├── MWPotential2014galpy.ini ├── McMillan11_best.ini ├── McMillan11_convenient.ini ├── McMillan17.ini ├── Piffl14.ini ├── PriceWhelan17.ini ├── PriceWhelan22.ini ├── SCM.ini ├── SCM3.ini ├── SCM_MW.ini ├── phaseflow_bahcallwolfcusp.ini ├── phaseflow_corecollapse.ini ├── raga_corecollapse.ini └── schwarzschild_axisym.ini ├── doc ├── Colormaps.pdf ├── D0.pdf ├── D0nb.pdf ├── D1.pdf ├── DensityGrid.pdf ├── EulerAngles.pdf ├── EulerAnglesProjection.pdf ├── ForstandAngles.pdf ├── GHmoments.pdf ├── MN.pdf ├── Sampling.pdf ├── SplineFit.pdf ├── SplineKernels.pdf ├── SplineLogDensity.pdf ├── SplineMonotonic.pdf ├── Symmetry.pdf ├── agama.jpg ├── raga.png ├── readme_raga.pdf ├── readme_raga.tex ├── reference.pdf └── reference.tex ├── py ├── __init__.py ├── agamacolormaps.py ├── alltest.py ├── example_actions_nbody.py ├── example_adiabatic_contraction.py ├── example_amuse.py ├── example_amuse_raga.py ├── example_basis_set.py ├── example_deprojection.py ├── example_df_fit.py ├── example_doublepowerlaw.py ├── example_forstand.py ├── example_gala.py ├── example_galpy.py ├── example_gizmo_snapshot.py ├── example_lmc_mw_interaction.py ├── example_lyapunov.py ├── example_mw_bar_potential.py ├── example_mw_nsd.py ├── example_mw_potential_hunter24.py ├── example_mw_potential_khalil25.py ├── example_nbody_simulation.py ├── example_nbody_simulation_arepo.param ├── example_nbody_simulation_arepo.patch ├── example_nbody_simulation_gadget4.param ├── example_nbody_simulation_gadget4.patch ├── example_poincare.py ├── example_schwarzschild_flattened_rotating.py ├── example_schwarzschild_triaxial.py ├── example_self_consistent_model.py ├── example_self_consistent_model3.py ├── example_self_consistent_model_flattened.py ├── example_self_consistent_model_mw.py ├── example_self_consistent_model_simple.py ├── example_smoothing_spline.py ├── example_spiral.py ├── example_target.py ├── example_tidal_stream.py ├── example_time_dependent_potential.py ├── example_torus.py ├── example_vdf_fit_bspline.py ├── gc_modelparamsE.py ├── gc_modelparamsJ.py ├── gc_resample.py ├── gc_runfit.py ├── interface_amuse.py ├── measureshape.py ├── nemofile.py ├── pygama.py ├── schwarzlib.py ├── schwarzschild.py ├── test_actions.py ├── test_amuse.py ├── test_batch_computations.py ├── test_compositions.py ├── test_coordinates.py ├── test_math.py ├── test_orbit.py ├── test_self_consistent_model.py ├── test_spline.py ├── test_threads.py ├── test_user_profiles.py ├── tutorial_actions.ipynb ├── tutorial_potential_orbits.ipynb ├── tutorial_schwarzschild.ipynb └── tutorial_streams.ipynb ├── setup.py ├── src ├── actions_base.h ├── actions_factory.cpp ├── actions_factory.h ├── actions_focal_distance_finder.cpp ├── actions_focal_distance_finder.h ├── actions_isochrone.cpp ├── actions_isochrone.h ├── actions_spherical.cpp ├── actions_spherical.h ├── actions_staeckel.cpp ├── actions_staeckel.h ├── actions_torus.cpp ├── actions_torus.h ├── coord.cpp ├── coord.h ├── cubature.cpp ├── cubature.h ├── debug_utils.h ├── df_base.cpp ├── df_base.h ├── df_disk.cpp ├── df_disk.h ├── df_factory.cpp ├── df_factory.h ├── df_halo.cpp ├── df_halo.h ├── df_spherical.cpp ├── df_spherical.h ├── galaxymodel_base.cpp ├── galaxymodel_base.h ├── galaxymodel_densitygrid.cpp ├── galaxymodel_densitygrid.h ├── galaxymodel_fokkerplanck.cpp ├── galaxymodel_fokkerplanck.h ├── galaxymodel_jeans.cpp ├── galaxymodel_jeans.h ├── galaxymodel_losvd.cpp ├── galaxymodel_losvd.h ├── galaxymodel_selfconsistent.cpp ├── galaxymodel_selfconsistent.h ├── galaxymodel_spherical.cpp ├── galaxymodel_spherical.h ├── galaxymodel_target.h ├── galaxymodel_velocitysampler.cpp ├── galaxymodel_velocitysampler.h ├── interface_amuse.cpp ├── interface_c.cpp ├── interface_c.h ├── interface_fortran.cpp ├── interface_nemo.cpp ├── interface_python.cpp ├── math_base.h ├── math_core.cpp ├── math_core.h ├── math_fit.cpp ├── math_fit.h ├── math_gausshermite.cpp ├── math_gausshermite.h ├── math_geometry.cpp ├── math_geometry.h ├── math_glquadrature.h ├── math_linalg.cpp ├── math_linalg.h ├── math_ode.cpp ├── math_ode.h ├── math_optimization.cpp ├── math_optimization.h ├── math_random.cpp ├── math_random.h ├── math_sample.cpp ├── math_sample.h ├── math_simple_cubature.h ├── math_specfunc.cpp ├── math_specfunc.h ├── math_sphharm.cpp ├── math_sphharm.h ├── math_spline.cpp ├── math_spline.h ├── orbit.cpp ├── orbit.h ├── orbit_variational.cpp ├── orbit_variational.h ├── particles_base.h ├── particles_io.cpp ├── particles_io.h ├── potential_analytic.cpp ├── potential_analytic.h ├── potential_base.cpp ├── potential_base.h ├── potential_composite.cpp ├── potential_composite.h ├── potential_cylspline.cpp ├── potential_cylspline.h ├── potential_dehnen.cpp ├── potential_dehnen.h ├── potential_disk.cpp ├── potential_disk.h ├── potential_factory.cpp ├── potential_factory.h ├── potential_ferrers.cpp ├── potential_ferrers.h ├── potential_king.cpp ├── potential_king.h ├── potential_multipole.cpp ├── potential_multipole.h ├── potential_perfect_ellipsoid.cpp ├── potential_perfect_ellipsoid.h ├── potential_spheroid.cpp ├── potential_spheroid.h ├── potential_utils.cpp ├── potential_utils.h ├── raga_base.h ├── raga_binary.cpp ├── raga_binary.h ├── raga_core.cpp ├── raga_core.h ├── raga_losscone.cpp ├── raga_losscone.h ├── raga_potential.cpp ├── raga_potential.h ├── raga_relaxation.cpp ├── raga_relaxation.h ├── raga_trajectory.cpp ├── raga_trajectory.h ├── shared_ptr.h ├── smart.h ├── torus │ ├── CHB.cc │ ├── CHB.h │ ├── Constants.h │ ├── Fit.cc │ ├── Fit.h │ ├── Fit2.cc │ ├── GeneratingFunction.cc │ ├── GeneratingFunction.h │ ├── Maps.h │ ├── Orb.cc │ ├── Orb.h │ ├── PJMNum.cc │ ├── PJMNum.h │ ├── PJM_utils.h │ ├── Pi.h │ ├── Point_ClosedOrbitCheby.cc │ ├── Point_ClosedOrbitCheby.h │ ├── Point_None.cc │ ├── Point_None.h │ ├── Potential.h │ ├── Torus.cc │ ├── Torus.h │ ├── Toy_Isochrone.cc │ ├── Toy_Isochrone.h │ ├── Types.h │ ├── Units.h │ ├── WD_FreeMemory.h │ ├── WD_Matrix.h │ ├── WD_Numerics.cc │ ├── WD_Numerics.h │ ├── WD_Numerics.templates │ └── WD_Vector.h ├── units.h ├── utils.cpp ├── utils.h ├── utils_config.cpp └── utils_config.h └── tests ├── example_actions_nbody.cpp ├── example_df_fit.cpp ├── example_doublepowerlaw.cpp ├── example_self_consistent_model.cpp ├── example_self_consistent_model_mw.cpp ├── mkspherical.cpp ├── phaseflow.cpp ├── raga.cpp ├── test_action_finder.cpp ├── test_actions_isochrone.cpp ├── test_actions_spherical.cpp ├── test_actions_staeckel.cpp ├── test_actions_torus.cpp ├── test_coord.cpp ├── test_density_grid.cpp ├── test_df_halo.cpp ├── test_df_spherical.cpp ├── test_fortran.f ├── test_galaxymodel.cpp ├── test_losvd.cpp ├── test_math_core.cpp ├── test_math_linalg.cpp ├── test_math_spline.cpp ├── test_orbit_integr.cpp ├── test_orbit_variational.cpp ├── test_potential_expansions.cpp ├── test_potential_modifiers.cpp ├── test_potentials.cpp ├── test_units.cpp └── test_utils.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/.gitignore -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/Makefile.list -------------------------------------------------------------------------------- /Makefile.local.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/Makefile.local.template -------------------------------------------------------------------------------- /Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/Makefile.msvc -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/README -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/__init__.py -------------------------------------------------------------------------------- /data/BT08.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/BT08.ini -------------------------------------------------------------------------------- /data/Cautun20.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/Cautun20.ini -------------------------------------------------------------------------------- /data/Irrgang13.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/Irrgang13.ini -------------------------------------------------------------------------------- /data/MWPotential2014.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/MWPotential2014.ini -------------------------------------------------------------------------------- /data/MWPotential2014galpy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/MWPotential2014galpy.ini -------------------------------------------------------------------------------- /data/McMillan11_best.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/McMillan11_best.ini -------------------------------------------------------------------------------- /data/McMillan11_convenient.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/McMillan11_convenient.ini -------------------------------------------------------------------------------- /data/McMillan17.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/McMillan17.ini -------------------------------------------------------------------------------- /data/Piffl14.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/Piffl14.ini -------------------------------------------------------------------------------- /data/PriceWhelan17.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/PriceWhelan17.ini -------------------------------------------------------------------------------- /data/PriceWhelan22.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/PriceWhelan22.ini -------------------------------------------------------------------------------- /data/SCM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/SCM.ini -------------------------------------------------------------------------------- /data/SCM3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/SCM3.ini -------------------------------------------------------------------------------- /data/SCM_MW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/SCM_MW.ini -------------------------------------------------------------------------------- /data/phaseflow_bahcallwolfcusp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/phaseflow_bahcallwolfcusp.ini -------------------------------------------------------------------------------- /data/phaseflow_corecollapse.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/phaseflow_corecollapse.ini -------------------------------------------------------------------------------- /data/raga_corecollapse.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/raga_corecollapse.ini -------------------------------------------------------------------------------- /data/schwarzschild_axisym.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/data/schwarzschild_axisym.ini -------------------------------------------------------------------------------- /doc/Colormaps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/Colormaps.pdf -------------------------------------------------------------------------------- /doc/D0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/D0.pdf -------------------------------------------------------------------------------- /doc/D0nb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/D0nb.pdf -------------------------------------------------------------------------------- /doc/D1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/D1.pdf -------------------------------------------------------------------------------- /doc/DensityGrid.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/DensityGrid.pdf -------------------------------------------------------------------------------- /doc/EulerAngles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/EulerAngles.pdf -------------------------------------------------------------------------------- /doc/EulerAnglesProjection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/EulerAnglesProjection.pdf -------------------------------------------------------------------------------- /doc/ForstandAngles.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/ForstandAngles.pdf -------------------------------------------------------------------------------- /doc/GHmoments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/GHmoments.pdf -------------------------------------------------------------------------------- /doc/MN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/MN.pdf -------------------------------------------------------------------------------- /doc/Sampling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/Sampling.pdf -------------------------------------------------------------------------------- /doc/SplineFit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/SplineFit.pdf -------------------------------------------------------------------------------- /doc/SplineKernels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/SplineKernels.pdf -------------------------------------------------------------------------------- /doc/SplineLogDensity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/SplineLogDensity.pdf -------------------------------------------------------------------------------- /doc/SplineMonotonic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/SplineMonotonic.pdf -------------------------------------------------------------------------------- /doc/Symmetry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/Symmetry.pdf -------------------------------------------------------------------------------- /doc/agama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/agama.jpg -------------------------------------------------------------------------------- /doc/raga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/raga.png -------------------------------------------------------------------------------- /doc/readme_raga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/readme_raga.pdf -------------------------------------------------------------------------------- /doc/readme_raga.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/readme_raga.tex -------------------------------------------------------------------------------- /doc/reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/reference.pdf -------------------------------------------------------------------------------- /doc/reference.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/doc/reference.tex -------------------------------------------------------------------------------- /py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py/agamacolormaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/agamacolormaps.py -------------------------------------------------------------------------------- /py/alltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/alltest.py -------------------------------------------------------------------------------- /py/example_actions_nbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_actions_nbody.py -------------------------------------------------------------------------------- /py/example_adiabatic_contraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_adiabatic_contraction.py -------------------------------------------------------------------------------- /py/example_amuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_amuse.py -------------------------------------------------------------------------------- /py/example_amuse_raga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_amuse_raga.py -------------------------------------------------------------------------------- /py/example_basis_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_basis_set.py -------------------------------------------------------------------------------- /py/example_deprojection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_deprojection.py -------------------------------------------------------------------------------- /py/example_df_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_df_fit.py -------------------------------------------------------------------------------- /py/example_doublepowerlaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_doublepowerlaw.py -------------------------------------------------------------------------------- /py/example_forstand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_forstand.py -------------------------------------------------------------------------------- /py/example_gala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_gala.py -------------------------------------------------------------------------------- /py/example_galpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_galpy.py -------------------------------------------------------------------------------- /py/example_gizmo_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_gizmo_snapshot.py -------------------------------------------------------------------------------- /py/example_lmc_mw_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_lmc_mw_interaction.py -------------------------------------------------------------------------------- /py/example_lyapunov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_lyapunov.py -------------------------------------------------------------------------------- /py/example_mw_bar_potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_mw_bar_potential.py -------------------------------------------------------------------------------- /py/example_mw_nsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_mw_nsd.py -------------------------------------------------------------------------------- /py/example_mw_potential_hunter24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_mw_potential_hunter24.py -------------------------------------------------------------------------------- /py/example_mw_potential_khalil25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_mw_potential_khalil25.py -------------------------------------------------------------------------------- /py/example_nbody_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_nbody_simulation.py -------------------------------------------------------------------------------- /py/example_nbody_simulation_arepo.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_nbody_simulation_arepo.param -------------------------------------------------------------------------------- /py/example_nbody_simulation_arepo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_nbody_simulation_arepo.patch -------------------------------------------------------------------------------- /py/example_nbody_simulation_gadget4.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_nbody_simulation_gadget4.param -------------------------------------------------------------------------------- /py/example_nbody_simulation_gadget4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_nbody_simulation_gadget4.patch -------------------------------------------------------------------------------- /py/example_poincare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_poincare.py -------------------------------------------------------------------------------- /py/example_schwarzschild_flattened_rotating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_schwarzschild_flattened_rotating.py -------------------------------------------------------------------------------- /py/example_schwarzschild_triaxial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_schwarzschild_triaxial.py -------------------------------------------------------------------------------- /py/example_self_consistent_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_self_consistent_model.py -------------------------------------------------------------------------------- /py/example_self_consistent_model3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_self_consistent_model3.py -------------------------------------------------------------------------------- /py/example_self_consistent_model_flattened.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_self_consistent_model_flattened.py -------------------------------------------------------------------------------- /py/example_self_consistent_model_mw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_self_consistent_model_mw.py -------------------------------------------------------------------------------- /py/example_self_consistent_model_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_self_consistent_model_simple.py -------------------------------------------------------------------------------- /py/example_smoothing_spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_smoothing_spline.py -------------------------------------------------------------------------------- /py/example_spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_spiral.py -------------------------------------------------------------------------------- /py/example_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_target.py -------------------------------------------------------------------------------- /py/example_tidal_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_tidal_stream.py -------------------------------------------------------------------------------- /py/example_time_dependent_potential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_time_dependent_potential.py -------------------------------------------------------------------------------- /py/example_torus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_torus.py -------------------------------------------------------------------------------- /py/example_vdf_fit_bspline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/example_vdf_fit_bspline.py -------------------------------------------------------------------------------- /py/gc_modelparamsE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/gc_modelparamsE.py -------------------------------------------------------------------------------- /py/gc_modelparamsJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/gc_modelparamsJ.py -------------------------------------------------------------------------------- /py/gc_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/gc_resample.py -------------------------------------------------------------------------------- /py/gc_runfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/gc_runfit.py -------------------------------------------------------------------------------- /py/interface_amuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/interface_amuse.py -------------------------------------------------------------------------------- /py/measureshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/measureshape.py -------------------------------------------------------------------------------- /py/nemofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/nemofile.py -------------------------------------------------------------------------------- /py/pygama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/pygama.py -------------------------------------------------------------------------------- /py/schwarzlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/schwarzlib.py -------------------------------------------------------------------------------- /py/schwarzschild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/schwarzschild.py -------------------------------------------------------------------------------- /py/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_actions.py -------------------------------------------------------------------------------- /py/test_amuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_amuse.py -------------------------------------------------------------------------------- /py/test_batch_computations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_batch_computations.py -------------------------------------------------------------------------------- /py/test_compositions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_compositions.py -------------------------------------------------------------------------------- /py/test_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_coordinates.py -------------------------------------------------------------------------------- /py/test_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_math.py -------------------------------------------------------------------------------- /py/test_orbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_orbit.py -------------------------------------------------------------------------------- /py/test_self_consistent_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_self_consistent_model.py -------------------------------------------------------------------------------- /py/test_spline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_spline.py -------------------------------------------------------------------------------- /py/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_threads.py -------------------------------------------------------------------------------- /py/test_user_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/test_user_profiles.py -------------------------------------------------------------------------------- /py/tutorial_actions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/tutorial_actions.ipynb -------------------------------------------------------------------------------- /py/tutorial_potential_orbits.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/tutorial_potential_orbits.ipynb -------------------------------------------------------------------------------- /py/tutorial_schwarzschild.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/tutorial_schwarzschild.ipynb -------------------------------------------------------------------------------- /py/tutorial_streams.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/py/tutorial_streams.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/setup.py -------------------------------------------------------------------------------- /src/actions_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_base.h -------------------------------------------------------------------------------- /src/actions_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_factory.cpp -------------------------------------------------------------------------------- /src/actions_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_factory.h -------------------------------------------------------------------------------- /src/actions_focal_distance_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_focal_distance_finder.cpp -------------------------------------------------------------------------------- /src/actions_focal_distance_finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_focal_distance_finder.h -------------------------------------------------------------------------------- /src/actions_isochrone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_isochrone.cpp -------------------------------------------------------------------------------- /src/actions_isochrone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_isochrone.h -------------------------------------------------------------------------------- /src/actions_spherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_spherical.cpp -------------------------------------------------------------------------------- /src/actions_spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_spherical.h -------------------------------------------------------------------------------- /src/actions_staeckel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_staeckel.cpp -------------------------------------------------------------------------------- /src/actions_staeckel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_staeckel.h -------------------------------------------------------------------------------- /src/actions_torus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_torus.cpp -------------------------------------------------------------------------------- /src/actions_torus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/actions_torus.h -------------------------------------------------------------------------------- /src/coord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/coord.cpp -------------------------------------------------------------------------------- /src/coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/coord.h -------------------------------------------------------------------------------- /src/cubature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/cubature.cpp -------------------------------------------------------------------------------- /src/cubature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/cubature.h -------------------------------------------------------------------------------- /src/debug_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/debug_utils.h -------------------------------------------------------------------------------- /src/df_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_base.cpp -------------------------------------------------------------------------------- /src/df_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_base.h -------------------------------------------------------------------------------- /src/df_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_disk.cpp -------------------------------------------------------------------------------- /src/df_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_disk.h -------------------------------------------------------------------------------- /src/df_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_factory.cpp -------------------------------------------------------------------------------- /src/df_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_factory.h -------------------------------------------------------------------------------- /src/df_halo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_halo.cpp -------------------------------------------------------------------------------- /src/df_halo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_halo.h -------------------------------------------------------------------------------- /src/df_spherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_spherical.cpp -------------------------------------------------------------------------------- /src/df_spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/df_spherical.h -------------------------------------------------------------------------------- /src/galaxymodel_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_base.cpp -------------------------------------------------------------------------------- /src/galaxymodel_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_base.h -------------------------------------------------------------------------------- /src/galaxymodel_densitygrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_densitygrid.cpp -------------------------------------------------------------------------------- /src/galaxymodel_densitygrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_densitygrid.h -------------------------------------------------------------------------------- /src/galaxymodel_fokkerplanck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_fokkerplanck.cpp -------------------------------------------------------------------------------- /src/galaxymodel_fokkerplanck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_fokkerplanck.h -------------------------------------------------------------------------------- /src/galaxymodel_jeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_jeans.cpp -------------------------------------------------------------------------------- /src/galaxymodel_jeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_jeans.h -------------------------------------------------------------------------------- /src/galaxymodel_losvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_losvd.cpp -------------------------------------------------------------------------------- /src/galaxymodel_losvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_losvd.h -------------------------------------------------------------------------------- /src/galaxymodel_selfconsistent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_selfconsistent.cpp -------------------------------------------------------------------------------- /src/galaxymodel_selfconsistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_selfconsistent.h -------------------------------------------------------------------------------- /src/galaxymodel_spherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_spherical.cpp -------------------------------------------------------------------------------- /src/galaxymodel_spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_spherical.h -------------------------------------------------------------------------------- /src/galaxymodel_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_target.h -------------------------------------------------------------------------------- /src/galaxymodel_velocitysampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_velocitysampler.cpp -------------------------------------------------------------------------------- /src/galaxymodel_velocitysampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/galaxymodel_velocitysampler.h -------------------------------------------------------------------------------- /src/interface_amuse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_amuse.cpp -------------------------------------------------------------------------------- /src/interface_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_c.cpp -------------------------------------------------------------------------------- /src/interface_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_c.h -------------------------------------------------------------------------------- /src/interface_fortran.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_fortran.cpp -------------------------------------------------------------------------------- /src/interface_nemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_nemo.cpp -------------------------------------------------------------------------------- /src/interface_python.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/interface_python.cpp -------------------------------------------------------------------------------- /src/math_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_base.h -------------------------------------------------------------------------------- /src/math_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_core.cpp -------------------------------------------------------------------------------- /src/math_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_core.h -------------------------------------------------------------------------------- /src/math_fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_fit.cpp -------------------------------------------------------------------------------- /src/math_fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_fit.h -------------------------------------------------------------------------------- /src/math_gausshermite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_gausshermite.cpp -------------------------------------------------------------------------------- /src/math_gausshermite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_gausshermite.h -------------------------------------------------------------------------------- /src/math_geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_geometry.cpp -------------------------------------------------------------------------------- /src/math_geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_geometry.h -------------------------------------------------------------------------------- /src/math_glquadrature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_glquadrature.h -------------------------------------------------------------------------------- /src/math_linalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_linalg.cpp -------------------------------------------------------------------------------- /src/math_linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_linalg.h -------------------------------------------------------------------------------- /src/math_ode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_ode.cpp -------------------------------------------------------------------------------- /src/math_ode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_ode.h -------------------------------------------------------------------------------- /src/math_optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_optimization.cpp -------------------------------------------------------------------------------- /src/math_optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_optimization.h -------------------------------------------------------------------------------- /src/math_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_random.cpp -------------------------------------------------------------------------------- /src/math_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_random.h -------------------------------------------------------------------------------- /src/math_sample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_sample.cpp -------------------------------------------------------------------------------- /src/math_sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_sample.h -------------------------------------------------------------------------------- /src/math_simple_cubature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_simple_cubature.h -------------------------------------------------------------------------------- /src/math_specfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_specfunc.cpp -------------------------------------------------------------------------------- /src/math_specfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_specfunc.h -------------------------------------------------------------------------------- /src/math_sphharm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_sphharm.cpp -------------------------------------------------------------------------------- /src/math_sphharm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_sphharm.h -------------------------------------------------------------------------------- /src/math_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_spline.cpp -------------------------------------------------------------------------------- /src/math_spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/math_spline.h -------------------------------------------------------------------------------- /src/orbit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/orbit.cpp -------------------------------------------------------------------------------- /src/orbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/orbit.h -------------------------------------------------------------------------------- /src/orbit_variational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/orbit_variational.cpp -------------------------------------------------------------------------------- /src/orbit_variational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/orbit_variational.h -------------------------------------------------------------------------------- /src/particles_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/particles_base.h -------------------------------------------------------------------------------- /src/particles_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/particles_io.cpp -------------------------------------------------------------------------------- /src/particles_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/particles_io.h -------------------------------------------------------------------------------- /src/potential_analytic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_analytic.cpp -------------------------------------------------------------------------------- /src/potential_analytic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_analytic.h -------------------------------------------------------------------------------- /src/potential_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_base.cpp -------------------------------------------------------------------------------- /src/potential_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_base.h -------------------------------------------------------------------------------- /src/potential_composite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_composite.cpp -------------------------------------------------------------------------------- /src/potential_composite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_composite.h -------------------------------------------------------------------------------- /src/potential_cylspline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_cylspline.cpp -------------------------------------------------------------------------------- /src/potential_cylspline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_cylspline.h -------------------------------------------------------------------------------- /src/potential_dehnen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_dehnen.cpp -------------------------------------------------------------------------------- /src/potential_dehnen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_dehnen.h -------------------------------------------------------------------------------- /src/potential_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_disk.cpp -------------------------------------------------------------------------------- /src/potential_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_disk.h -------------------------------------------------------------------------------- /src/potential_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_factory.cpp -------------------------------------------------------------------------------- /src/potential_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_factory.h -------------------------------------------------------------------------------- /src/potential_ferrers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_ferrers.cpp -------------------------------------------------------------------------------- /src/potential_ferrers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_ferrers.h -------------------------------------------------------------------------------- /src/potential_king.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_king.cpp -------------------------------------------------------------------------------- /src/potential_king.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_king.h -------------------------------------------------------------------------------- /src/potential_multipole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_multipole.cpp -------------------------------------------------------------------------------- /src/potential_multipole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_multipole.h -------------------------------------------------------------------------------- /src/potential_perfect_ellipsoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_perfect_ellipsoid.cpp -------------------------------------------------------------------------------- /src/potential_perfect_ellipsoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_perfect_ellipsoid.h -------------------------------------------------------------------------------- /src/potential_spheroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_spheroid.cpp -------------------------------------------------------------------------------- /src/potential_spheroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_spheroid.h -------------------------------------------------------------------------------- /src/potential_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_utils.cpp -------------------------------------------------------------------------------- /src/potential_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/potential_utils.h -------------------------------------------------------------------------------- /src/raga_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_base.h -------------------------------------------------------------------------------- /src/raga_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_binary.cpp -------------------------------------------------------------------------------- /src/raga_binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_binary.h -------------------------------------------------------------------------------- /src/raga_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_core.cpp -------------------------------------------------------------------------------- /src/raga_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_core.h -------------------------------------------------------------------------------- /src/raga_losscone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_losscone.cpp -------------------------------------------------------------------------------- /src/raga_losscone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_losscone.h -------------------------------------------------------------------------------- /src/raga_potential.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_potential.cpp -------------------------------------------------------------------------------- /src/raga_potential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_potential.h -------------------------------------------------------------------------------- /src/raga_relaxation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_relaxation.cpp -------------------------------------------------------------------------------- /src/raga_relaxation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_relaxation.h -------------------------------------------------------------------------------- /src/raga_trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_trajectory.cpp -------------------------------------------------------------------------------- /src/raga_trajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/raga_trajectory.h -------------------------------------------------------------------------------- /src/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/shared_ptr.h -------------------------------------------------------------------------------- /src/smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/smart.h -------------------------------------------------------------------------------- /src/torus/CHB.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/CHB.cc -------------------------------------------------------------------------------- /src/torus/CHB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/CHB.h -------------------------------------------------------------------------------- /src/torus/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Constants.h -------------------------------------------------------------------------------- /src/torus/Fit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Fit.cc -------------------------------------------------------------------------------- /src/torus/Fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Fit.h -------------------------------------------------------------------------------- /src/torus/Fit2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Fit2.cc -------------------------------------------------------------------------------- /src/torus/GeneratingFunction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/GeneratingFunction.cc -------------------------------------------------------------------------------- /src/torus/GeneratingFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/GeneratingFunction.h -------------------------------------------------------------------------------- /src/torus/Maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Maps.h -------------------------------------------------------------------------------- /src/torus/Orb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Orb.cc -------------------------------------------------------------------------------- /src/torus/Orb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Orb.h -------------------------------------------------------------------------------- /src/torus/PJMNum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/PJMNum.cc -------------------------------------------------------------------------------- /src/torus/PJMNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/PJMNum.h -------------------------------------------------------------------------------- /src/torus/PJM_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/PJM_utils.h -------------------------------------------------------------------------------- /src/torus/Pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Pi.h -------------------------------------------------------------------------------- /src/torus/Point_ClosedOrbitCheby.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Point_ClosedOrbitCheby.cc -------------------------------------------------------------------------------- /src/torus/Point_ClosedOrbitCheby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Point_ClosedOrbitCheby.h -------------------------------------------------------------------------------- /src/torus/Point_None.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Point_None.cc -------------------------------------------------------------------------------- /src/torus/Point_None.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Point_None.h -------------------------------------------------------------------------------- /src/torus/Potential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Potential.h -------------------------------------------------------------------------------- /src/torus/Torus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Torus.cc -------------------------------------------------------------------------------- /src/torus/Torus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Torus.h -------------------------------------------------------------------------------- /src/torus/Toy_Isochrone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Toy_Isochrone.cc -------------------------------------------------------------------------------- /src/torus/Toy_Isochrone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Toy_Isochrone.h -------------------------------------------------------------------------------- /src/torus/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Types.h -------------------------------------------------------------------------------- /src/torus/Units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/Units.h -------------------------------------------------------------------------------- /src/torus/WD_FreeMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_FreeMemory.h -------------------------------------------------------------------------------- /src/torus/WD_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_Matrix.h -------------------------------------------------------------------------------- /src/torus/WD_Numerics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_Numerics.cc -------------------------------------------------------------------------------- /src/torus/WD_Numerics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_Numerics.h -------------------------------------------------------------------------------- /src/torus/WD_Numerics.templates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_Numerics.templates -------------------------------------------------------------------------------- /src/torus/WD_Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/torus/WD_Vector.h -------------------------------------------------------------------------------- /src/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/units.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/utils_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/utils_config.cpp -------------------------------------------------------------------------------- /src/utils_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/src/utils_config.h -------------------------------------------------------------------------------- /tests/example_actions_nbody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/example_actions_nbody.cpp -------------------------------------------------------------------------------- /tests/example_df_fit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/example_df_fit.cpp -------------------------------------------------------------------------------- /tests/example_doublepowerlaw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/example_doublepowerlaw.cpp -------------------------------------------------------------------------------- /tests/example_self_consistent_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/example_self_consistent_model.cpp -------------------------------------------------------------------------------- /tests/example_self_consistent_model_mw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/example_self_consistent_model_mw.cpp -------------------------------------------------------------------------------- /tests/mkspherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/mkspherical.cpp -------------------------------------------------------------------------------- /tests/phaseflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/phaseflow.cpp -------------------------------------------------------------------------------- /tests/raga.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/raga.cpp -------------------------------------------------------------------------------- /tests/test_action_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_action_finder.cpp -------------------------------------------------------------------------------- /tests/test_actions_isochrone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_actions_isochrone.cpp -------------------------------------------------------------------------------- /tests/test_actions_spherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_actions_spherical.cpp -------------------------------------------------------------------------------- /tests/test_actions_staeckel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_actions_staeckel.cpp -------------------------------------------------------------------------------- /tests/test_actions_torus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_actions_torus.cpp -------------------------------------------------------------------------------- /tests/test_coord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_coord.cpp -------------------------------------------------------------------------------- /tests/test_density_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_density_grid.cpp -------------------------------------------------------------------------------- /tests/test_df_halo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_df_halo.cpp -------------------------------------------------------------------------------- /tests/test_df_spherical.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_df_spherical.cpp -------------------------------------------------------------------------------- /tests/test_fortran.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_fortran.f -------------------------------------------------------------------------------- /tests/test_galaxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_galaxymodel.cpp -------------------------------------------------------------------------------- /tests/test_losvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_losvd.cpp -------------------------------------------------------------------------------- /tests/test_math_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_math_core.cpp -------------------------------------------------------------------------------- /tests/test_math_linalg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_math_linalg.cpp -------------------------------------------------------------------------------- /tests/test_math_spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_math_spline.cpp -------------------------------------------------------------------------------- /tests/test_orbit_integr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_orbit_integr.cpp -------------------------------------------------------------------------------- /tests/test_orbit_variational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_orbit_variational.cpp -------------------------------------------------------------------------------- /tests/test_potential_expansions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_potential_expansions.cpp -------------------------------------------------------------------------------- /tests/test_potential_modifiers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_potential_modifiers.cpp -------------------------------------------------------------------------------- /tests/test_potentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_potentials.cpp -------------------------------------------------------------------------------- /tests/test_units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_units.cpp -------------------------------------------------------------------------------- /tests/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GalacticDynamics-Oxford/Agama/HEAD/tests/test_utils.cpp --------------------------------------------------------------------------------