From 2f8cd79a616fd4c9e8ae390906b1e5bf03ded2e1 Mon Sep 17 00:00:00 2001 From: Leon Keim <leon.keim@googlemail.com> Date: Fri, 31 Jan 2025 17:30:12 +0000 Subject: [PATCH] [doc] basic concepts: properties --- doc/doxygen/pages/basic-concepts.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/doxygen/pages/basic-concepts.md b/doc/doxygen/pages/basic-concepts.md index dbb2789467..377a3bde44 100644 --- a/doc/doxygen/pages/basic-concepts.md +++ b/doc/doxygen/pages/basic-concepts.md @@ -1 +1,5 @@ # Basic concepts + +## Properties / Property System +In DuMuX, the property system provides a flexible way to configure simulations at compile time. Properties are structs that define types which determine how different parts of the framework work together. The system ensures a consistent class hierarchy by allowing users to inherit from predefined models and customize specific properties as needed. +Users typically collect their property customizations in a `properties.hh` file specific to their simulation setup. For more detailed and technical information about the property system, see @ref Properties. -- GitLab