Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions flow360/component/simulation/models/surface_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,10 @@ class Outflow(BoundaryBase):
description="Specify the static pressure, mass flow rate, or Mach number parameters at"
+ " the `Outflow` boundary.",
)
entities: EntityList[Surface, WindTunnelGhostSurface] = pd.Field(
alias="surfaces",
description="List of boundaries with the `Outflow` boundary condition imposed.",
)


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


class SlipWall(BoundaryBase):
Expand Down
Loading