From e54c5539a0b8f8f61774ba1248ffad6fcf5c27d8 Mon Sep 17 00:00:00 2001 From: piotrkluba Date: Tue, 23 Dec 2025 15:48:32 +0100 Subject: [PATCH 1/2] added example for roughness height --- flow360/component/simulation/models/surface_models.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/flow360/component/simulation/models/surface_models.py b/flow360/component/simulation/models/surface_models.py index d3bc4a171..c7a9aacb8 100644 --- a/flow360/component/simulation/models/surface_models.py +++ b/flow360/component/simulation/models/surface_models.py @@ -380,6 +380,14 @@ class Wall(BoundaryBase): ... ), ... ) + - Define roughness height on entities + with the naming pattern :code:`"fluid/Roughness-*"`: + + >>> fl.Wall( + ... entities=volume_mesh["fluid/Roughness-*"], + ... roughness_height=0.1 * fl.u.mm, + ... ) + ==== """ From 4bccba54b9035af7b2f53d88676c4f98afdbed95 Mon Sep 17 00:00:00 2001 From: piotrkluba Date: Wed, 24 Dec 2025 11:27:58 +0100 Subject: [PATCH 2/2] added referene to wall formulations page --- flow360/component/simulation/models/surface_models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flow360/component/simulation/models/surface_models.py b/flow360/component/simulation/models/surface_models.py index c7a9aacb8..54b5b9f1e 100644 --- a/flow360/component/simulation/models/surface_models.py +++ b/flow360/component/simulation/models/surface_models.py @@ -332,6 +332,7 @@ class WallRotation(Flow360BaseModel): class Wall(BoundaryBase): """ :class:`Wall` class defines the wall boundary condition based on the inputs. + Refer :ref:`here ` for formulation details. Example -------