Skip to content

Commit 084a07f

Browse files
bug(): Allowing Inflow and Outflow to use WindTunnelGhostSurface (#1630)
1 parent 1d1485b commit 084a07f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

flow360/component/simulation/models/surface_models.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,6 +550,10 @@ class Outflow(BoundaryBase):
550550
description="Specify the static pressure, mass flow rate, or Mach number parameters at"
551551
+ " the `Outflow` boundary.",
552552
)
553+
entities: EntityList[Surface, WindTunnelGhostSurface] = pd.Field(
554+
alias="surfaces",
555+
description="List of boundaries with the `Outflow` boundary condition imposed.",
556+
)
553557

554558

555559
class Inflow(BoundaryBaseWithTurbulenceQuantities):
@@ -612,6 +616,10 @@ class Inflow(BoundaryBaseWithTurbulenceQuantities):
612616
description="Direction of the incoming flow. Must be a unit vector pointing "
613617
+ "into the volume. If unspecified, the direction will be normal to the surface.",
614618
)
619+
entities: EntityList[Surface, WindTunnelGhostSurface] = pd.Field(
620+
alias="surfaces",
621+
description="List of boundaries with the `Inflow` boundary condition imposed.",
622+
)
615623

616624

617625
class SlipWall(BoundaryBase):

0 commit comments

Comments
 (0)