.. CHIMES setup Alexander Richings 28th January 2020 .. _CHIMES_setup: CHIMES setup ------------ Before configuring SWIFT with the CHIMES module enabled, you will need to download the CHIMES submodule source files, the CHIMES data files, and install the CVODE library from the Sundials package. These are described further below. CHIMES submodule ^^^^^^^^^^^^^^^^ The CHIMES package has been implemented in Swift as a git submodule. This means that the source files required for CHIMES can be downloaded directly from the CHIMES public repository by running the following commands from the main Swift directory: .. code-block:: bash git submodule init git submodule update If you are building Swift with the CHIMES module, then you need to run these commands before you run Swift's configure script. CHIMES data files ^^^^^^^^^^^^^^^^^ To run CHIMES, you will need the CHIMES data files that contain the various reaction rate coefficients, photoionisation cross sections etc. These can be downloaded from the `chimes-data `_ Bitbucket repository. To clone the repository, you will need to install ``git-lfs`` on your local machine. In general, you will not need all of the data files in this repository. If you are only running CHIMES with the COLIBRE sub-grid physics models and only with the 'hybrid' cooling mode (i.e. only H and He in non-equilibrium), then you can use the ``getChimesData.sh`` script in the ``examples/COLIBRE_ICs/`` directory to download only the data files that you will need for such a run. If you are using this script to download the data, you do not need ``git-lfs``. You will need to make a note of the path to your local copy of chimes-data, as you will need to pass this as a parameter to SWIFT (see the CHIMES parameters section for more details). Sundials library ^^^^^^^^^^^^^^^^ CHIMES also requires the CVODE library of Ordinary Differential Equation (ODE) solvers, from the Sundials package (v4.0 or later). If Sundials is not already installed on your system, it can be downloaded `here `_. Once you have downloaded Sundials from the above website, you can then untar it and build it. You will need ``cmake`` to build Sundials. The INSTALL_GUIDE.pdf included with the Sundials download describes this process in detail, but in brief these are the steps that you will need: .. code-block:: bash tar -zxvf sundials-5.1.0.tar.gz cd sundials-5.1.0 mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=/path/to/install/dir/ -DBUILD_ARKODE=OFF -DBUILD_CVODE=ON -DBUILD_CVODES=OFF -DBUILD_IDA=OFF -DBUILD_IDAS=OFF -DBUILD_KINSOL=OFF -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DCMAKE_C_FLAGS="-O2" -DEXAMPLES_ENABLE_C=OFF -DSUNDIALS_PRECISION=single ../ make make install In the above example, after untar'ing the sundials download we create a new ``build`` directory inside ``sundials-5.1.0``, and then ``cd build`` before running ``cmake``. This is needed because the build directory has to be different from the source directory. Also, we only need the CVODE library, so I have switched off building the various other libraries that are included in the Sundials package, as these are not required by CHIMES. You will need to ensure that both the Sundials library and CHIMES are built with the same precision. By default, CHIMES uses single precision, so in this example we use the ``-DSUNDIALS_PRECISION=single`` option to build Sundials in single precision as well. For double precision, you can use ``-DSUNDIALS_PRECISION=double``. Finally, you will need to set the ``-DCMAKE_INSTALL_PREFIX`` path to a directory where you have write access. This is where the libraries will be installed. Once you have installed Sundials, make a note of the directory that it has been installed in, as you may need to pass this to the configure script when you build SWIFT (see the next section). You will also need to add ``/path/to/install/dir/lib`` (or possibly ``/path/to/install/dir/lib64``, depending on your system) to your ``LD_LIBRARY_PATH`` environment variable, both when you compile SWIFT and when you run it. The command to set this variable depends on which shell you are using (to determine which shell you are using, you can run ``echo $SHELL`` in your terminal). The commands for two commonly used shells are as follows: For ``bash``, use: .. code-block:: bash export LD_LIBRARY_PATH=/path/to/install/dir/lib:$LD_LIBRARY_PATH For ``tcsh``, use: .. code-block:: tcsh setenv LD_LIBRARY_PATH /path/to/install/dir/lib:$LD_LIBRARY_PATH The above examples assume that ``LD_LIBRARY_PATH`` already exists, and prepends the Sundials path to it (which preserves any other paths that are already defined there). If it does not already exist, you will need to omit the ``:$LD_LIBRARY_PATH`` from the end of the command. You can run this command every time you compile or run SWIFT. Or, for convenience, you can simply add this command to your ``~/.bashrc`` or ``~/.tcshrc`` file (for your given shell), which will then define ``LD_LIBRARY_PATH`` every time you open a terminal.