Getting started ================= There are 2 options to get `HOS-Ocean`: * Downloading :ref:`getting-started:Pre-built binaries` for your platform (if available) * :ref:`getting-started:Building HOS-Ocean locally` from sources directly on your computer To be able to use the program from anywhere on your system without using the full path to the binary file, you might want to :ref:`add its location to your system's PATH `. Pre-built binaries ~~~~~~~~~~~~~~~~~~ Pre-built binaries (executables) are available for Linux and Windows platforms on `the Releases page `__. Simply download the archive, expand it, and cut/paste the binary files wherever is suitable for you. Building HOS-Ocean locally ~~~~~~~~~~~~~~~~~~~~~~~~~~ Dependencies ^^^^^^^^^^^^ The following tools are required to build `HOS-Ocean`: * `CMake `__ as the build system generator * A Fortran compiler, such as `GNU Fortran `__ or `Intel Fortran `__ .. note:: On Windows, GNU Fortran is available through `MinGW-w64 `__ (among other tools). The following libraries are used by `HOS-Ocean` and must be present on your system for CMake to detect them.: * `LAPACK `__ for linear algebra * `FFTW3 `__ for Fast Fourier Transforms .. note:: `Intel's Math Kernel Library (MKL) `__ can be used as both a LAPACK implementation and a FFTW3 substitute. Optionally, the following libraries can be installed to enable corresponding features: * A `MPI distribution `__ for multi-processor computation, * The `HDF5 library `__ to enable HDF5 output files. Compilation ^^^^^^^^^^^ After downloading `HOS-Ocean`' sources (either a release version on `the Releases page `__ or a Git clone), open a console at the root of the directory (where the ``CMakeLists.txt`` file is). 1. Configure the project This will check the dependencies and prepare the compilation in the ``build`` directory: .. sourcecode:: console cmake -S. -Bbuild The following options can be added with ``-D