Eawag-AppliedSystemAnalysis / Simstrat

Simstrat - 1D lake model

Home Page:http://www.eawag.ch/en/department/surf/projects/simstrat/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simstrat: a one-dimensional physical lake model coupled to a biogeochemical library

Simstrat is a one-dimensional physical lake model for the simulation of stratification and mixing in deep stratified lakes. The model was originally developed by Goudsmit et al. (2002) and has been successfully applied to lakes with different physical properties. A k-ε model is used to model turbulent mixing including energy transfer of internal seiches. River or groundwater inflow can be added at specific depths or as density-dependent intrusions. The newest version of Simstrat can also simulate ice/snow covers and do biogeochemical simulations by using its coupling with AED2 (https://github.com/AquaticEcoDynamics/libaed2). From version 3.0 onwards, Simstrat always includes a coupling to AED2 but the coupling can be turned off using a switch in the configuration file for purely physical simulations.

Run Simstrat

There are a number of options for running Simstrat:

  • Pre-built binaries are available here.
  • Build Simstrat
  • LakeEnsemblR
  • Docker container

Pre-build binary

  1. Download the appropriate binary for your operating system and version requirements.
  2. Make the binary executable chmod +x simstrat_linux_303
  3. Pass the location of the par file to the binary
/pathtobinary/simstrat_linux_303 /pathtoparfile/test.par

Docker container

To use the docker container all input files, including the par file must be in the same folder. The file paths in the par file must be relative to the parent folder that is mounted to the docker container.

Download the docker container

docker pull eawag/simstrat:3.0.3

Run the docker container for test.par where all input files including test.par are located in /pathtoinputfiles.

cd /pathtoinputfiles
docker run -v $(pwd):/simstrat/run eawag/simstrat:3.0.3 test.par

Build Simstrat

After cloning the git repository for the first time, you need to initialize the 3rd-party libraries with the given script

./git_lib_initialize.sh

If you are not using git, you can manually download the library source files from the addresses listed in the .gitmodules file and save them into the lib subfolder.

Before building an executable of Simstrat, you need to setup your building environment. We suggest two alternative options:

1. Setup building environment using Docker

You can setup the building environment using Docker for Linux, MacOS and Win hosting systems; a complete step-by-step guide to use a docker container is available here.

2. Manual setup of the building environment

Please install the following required packages:

System requirements

In principle, the manual installation is platform independent. Be aware that other programs on your computer might already use some version of Python and thus interfere with any new installation of Python.

Build

Once the building environment is setup, you can build Simstrat from the /build folder with:

FoBiS.py build

If the AED2 library is not built yet, use make (or mingw32-make in windows) to compile it in the lib/libaed2 folder.

N.B.1 MacOS seems to allow only dynamic library linking. To build for this target, use the release-gnu-dynamic compiling mode

FoBiS.py build -mode release-gnu-dynamic

N.B.2 you can find more building options here.

Documentation

The user manual can be found here.

The developer documentation can be generated with the FORD python module (pip install ford). To generate the documentation, run

FoBiS.py rule -ex makedoc

The generated code documentation is saved in doc/developer/ford/ford_doc/index.html

Additionally, a documentation about the numerical scheme of Simstrat can be found here.

About

Simstrat - 1D lake model

http://www.eawag.ch/en/department/surf/projects/simstrat/

License:GNU General Public License v3.0


Languages

Language:Fortran 97.7%Language:Python 1.1%Language:C++ 0.4%Language:Shell 0.2%Language:HTML 0.2%Language:Dockerfile 0.2%Language:Assembly 0.0%Language:Batchfile 0.0%