We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a8860 commit 2522f26Copy full SHA for 2522f26
flow360/component/simulation/models/surface_models.py
@@ -317,6 +317,7 @@ class WallRotation(Flow360BaseModel):
317
class Wall(BoundaryBase):
318
"""
319
:class:`Wall` class defines the wall boundary condition based on the inputs.
320
+ Refer :ref:`here <wall_formulations>` for formulation details.
321
322
Example
323
-------
@@ -365,6 +366,14 @@ class Wall(BoundaryBase):
365
366
... ),
367
... )
368
369
+ - Define roughness height on entities
370
+ with the naming pattern :code:`"fluid/Roughness-*"`:
371
+
372
+ >>> fl.Wall(
373
+ ... entities=volume_mesh["fluid/Roughness-*"],
374
+ ... roughness_height=0.1 * fl.u.mm,
375
+ ... )
376
377
====
378
379
0 commit comments