Athena++ GRMHD code and adaptive mesh refinement (AMR) framework
(2021-05-10) We have opened the main repository to the public:
https://github.com/PrincetonUniversity/athena
This folk implements the James algorithm based on Moon, Kim, & Ostriker (2019) to enable self-gravity with open boundary conditions in three-dimensional Cartesian or cylindrical coordinates.
- To activate open BC self-gravity, compile with
--grav=obc -fft -mpi
- Serial version is not implemented. Compile with
-mpi
flag even when you use just a single core.
Because the current parallel FFT interface requires Mesh to be evenly divisible for both the block and pencil decompositions, the solver may not work for certain number of cells or MeshBlock decompositions. In addition, the James algorithm involves FFTs acting only on surfaces, which add complications on the possible decompositions. The easiest way to meet all the requirements is to set the number of cells and MeshBlocks in each direction as powers of two.