Skip to content

Commit

Permalink
Merge pull request #609 from danieljprice/tillotson
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljprice authored Dec 20, 2024
2 parents 8fe9a55 + 34c4792 commit 14141c7
Show file tree
Hide file tree
Showing 43 changed files with 1,568 additions and 657 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Simone Ceppi <simo.ceppi@gmail.com>
Spencer Magnall <spencermagnall@gmail.com>
Caitlyn Hardiman <caitlyn.hardiman1@monash.edu>
Enrico Ragusa <enr.ragusa@gmail.com>
Amber Tilly <amber.abs@gmail.com>
Cristiano Longarini <cristiano.longarini@unimi.it>
Sergei Biriukov <svbiriukov@gmail.com>
Giovanni Dipierro <giovanni.dipierro@leicester.ac.uk>
Expand Down Expand Up @@ -56,6 +57,7 @@ Farzana Meru <f.meru@warwick.ac.uk>
Nicolás Cuello <cuello.nicolas@gmail.com>
Chris Nixon <cjn@leicester.ac.uk>
Miguel Gonzalez-Bolivar <miguelgb@astro.unam.mx>
AmberBTilly <124104643+AmberTilly@users.noreply.github.com>
Benoit Commercon <benoit.commercon@gmail.com>
Christopher Russell <cmprussell@gmail.com>
Giulia Ballabio <giulia.ballabio2@studenti.unimi.it>
Expand All @@ -65,6 +67,7 @@ Maxime Lombart <maxime.lombart@ens-lyon.fr>
Orsola De Marco <orsola.demarco@mq.edu.au>
Shunquan Huang <shunq@Shunquans-MBP.lan>
Zachary Pellow <zpel1@student.monash.edu>
ryosuke-hirai <ryosuke.lufc@gmail.com>
Ariel Chitan <arielchitan@gmail.com>
Chunliang Mu <Mclliang7326@outlook.com>
Cox, Samuel <sc676@leicester.ac.uk>
Expand Down
9 changes: 6 additions & 3 deletions build/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,10 @@ SRCCHEM= fs_data.f90 mol_data.f90 utils_spline.f90 \
# equations of state
#
SRCMESA= eos_mesa_microphysics.f90 eos_mesa.f90
SRCEOS = eos_barotropic.f90 eos_stratified.f90 eos_piecewise.f90 ${SRCMESA} eos_shen.f90 eos_helmholtz.f90 eos_idealplusrad.f90 ionization.F90 eos_gasradrec.f90 eos_HIIR.f90 eos.f90

SRCEOS = eos_tillotson.f90 eos_barotropic.f90 eos_stratified.f90 eos_piecewise.f90 ${SRCMESA} \
eos_shen.f90 eos_helmholtz.f90 eos_idealplusrad.f90 \
ionization.F90 eos_gasradrec.f90 eos_HIIR.f90 eos.f90

ifeq ($(HDF5), yes)
SRCREADWRITE_DUMPS= utils_hdf5.f90 utils_dumpfiles_hdf5.f90 readwrite_dumps_common.f90 readwrite_dumps_fortran.F90 readwrite_dumps_hdf5.F90 readwrite_dumps.F90
Expand All @@ -529,7 +532,7 @@ endif

SOURCES= physcon.f90 ${CONFIG} ${SRCKERNEL} io.F90 units.f90 \
mpi_dens.F90 mpi_force.F90 mpi_utils.F90 dtype_kdtree.F90 utils_omp.F90 utils_cpuinfo.f90 \
utils_infiles.f90 utils_allocate.f90 icosahedron.f90 quartic.f90 \
utils_infiles.f90 utils_allocate.f90 icosahedron.f90 cubicsolve.f90 quartic.f90 \
utils_system.f90 utils_mathfunc.f90 part.F90 ${DOMAIN} boundary.f90 boundary_dynamic.f90 utils_timing.f90 mpi_balance.F90 \
setup_params.f90 timestep.f90 utils_dumpfiles.f90 utils_indtimesteps.F90 \
utils_sort.f90 utils_supertimestep.F90 utils_tables.f90 utils_gravwave.f90 \
Expand Down Expand Up @@ -619,7 +622,7 @@ SRCDUMP= physcon.f90 ${CONFIG} ${SRCKERNEL} utils_omp.F90 io.F90 units.f90 mpi_u
utils_timing.f90 utils_infiles.f90 dtype_kdtree.f90 utils_allocate.f90 part.F90 \
${DOMAIN} mpi_dens.F90 mpi_force.F90 boundary.f90 boundary_dynamic.f90 \
mpi_balance.F90 mpi_memory.f90 mpi_derivs.F90 mpi_tree.F90 kdtree.F90 linklist_kdtree.F90 \
utils_dumpfiles.f90 utils_vectors.f90 utils_mathfunc.f90 \
utils_dumpfiles.f90 utils_vectors.f90 utils_mathfunc.f90 cubicsolve.f90 \
utils_datafiles.f90 utils_filenames.f90 utils_system.f90 utils_tables.f90 datafiles.f90 gitinfo.f90 \
centreofmass.f90 \
timestep.f90 ${SRCEOS} cullendehnen.f90 dust_formation.f90 \
Expand Down
6 changes: 3 additions & 3 deletions build/Makefile_setups
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ ifeq ($(SETUP), randomwind)
endif

ifeq ($(SETUP), solarsystem)
# orbits of minor planets
ISOTHERMAL=yes
SETUPFILE=utils_ephemeris.f90 utils_mpc.f90 setup_solarsystem.f90
# planets and minor bodies in the solar system
SETUPFILE=utils_ephemeris.f90 utils_mpc.f90 set_bodies.f90 setup_solarsystem.f90
KNOWN_SETUP=yes
GRAVITY=yes
DUST=yes
endif

Expand Down
2 changes: 2 additions & 0 deletions docs/getting-started/systems-list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
+------------------+---------------------------------------------------------------------------------------------------------------------------+
| ifortmac | default settings for the Intel Fortran Compiler on Mac OS |
+------------------+---------------------------------------------------------------------------------------------------------------------------+
| ifx | default settings for the new Intel Fortran Compiler |
+------------------+---------------------------------------------------------------------------------------------------------------------------+
| ipopeyearch | Flatiron CCA popeye cluster icelake node |
+------------------+---------------------------------------------------------------------------------------------------------------------------+
| isca | local cluster at the University of Exeter |
Expand Down
Loading

0 comments on commit 14141c7

Please sign in to comment.