Introduction¶
GOTM, or General Ocean Turbulence Model, is a numerical simulation tool for turbulent experiments in one of the fastest language-- Fortran. And, apparently, it's free and open-source. This article will show you how to install it and run your first case in GOTM.
Step 1: Prerequisites¶
Make sure you have CMake later than version 3.
cmake --version
Step 2: Download files via Git¶
mkdir gotm && cd gotm
git clone --recursive https://github.com/gotm-model/code.git
cd code
git submodule update --init --recursive
git pull --recurse-submodules
For updates in the future, run the last line should work.