...
- Load the Viking software modules that you need to work with AtChem2. These are:
A Fortran compiler:
Code Block title Loading a Fortran Compiler module load toolchain/foss/2021b
git:
Code Block title Loading Git module load tools/git/2.3233.01-GCCcore-1011.32.0-nodocs
(git is only needed for downloading AtChem2 source code, not for model compiling or running)
The SUNDIALS solving suite:
Code Block title Loading SUNDIALS module load math/SUNDIALS/2.7.0-foss-2021b
The OpenLibm maths library:
Code Block title Loading OpenLibm module load math/OpenLibm/0.8.1-GCC-11.2.0
Clone a copy of the AtChem2 source code:
Code Block title Cloning the AtChem2 Repository git clone https://github.com/AtChem/AtChem2.git atchem2
Change directory into AtChem2:
Code Block title Moving Into AtChem2 cd atchem2
...