Getting Started#

This page shows how to build and run BIEKIT.

Requirements#

  • A C++20 compiler (GCC/Clang)

  • CMake

Build#

From the repository root:

mkdir -p build
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build -j

Run an example#

The repository contains three example programs:

  • examples/laplace_bem.cpp

  • examples/helmholtz_bem.cpp

  • examples/maxwell_pec_scatter.cpp

For instance:

./build/laplace_bem ../sphere_0.1.off

Next#

Go to Tutorials for full, copy-pastable example source code.