Marine systems simulation
Compiling the tutorial project

This tutorial explains how to download and compile a sample C++ project which builds some simple models. A simulation comprised of these models are run.

Compiling your first project

A project meant for learning development of SimObjects can be dowloaded by:

git clone ssh://git@git.code.sintef.no/fhsim/fhsim_tutorial.git

If your environment is set up correctly you should be able to compile this project with visualization by running:

cd fhsim_tutorial
mkdir build && cd build
conan install .. -o fhsim:with_visualization=True -s build_type=Debug -b missing
conan build ..

We assume you have acquired a valid license file as described in Setup developer environment.

Running a simulation based on the tutorial project

See Running a compiled SimObject.