AeroAcousticOutput#
- class AeroAcousticOutput[source]#
Bases:
Flow360BaseModelAeroAcousticOutputclass for aeroacoustic output settings.Example
>>> fl.AeroAcousticOutput( ... observers=[ ... fl.Observer(position=[1.0, 0.0, 1.75] * fl.u.m, group_name="1"), ... fl.Observer(position=[0.2, 0.3, 1.725] * fl.u.m, group_name="1"), ... ], ... )
If using permeable surfaces:
>>> fl.AeroAcousticOutput( ... observers=[ ... fl.Observer(position=[1.0, 0.0, 1.75] * fl.u.m, group_name="1"), ... fl.Observer(position=[0.2, 0.3, 1.725] * fl.u.m, group_name="1"), ... ], ... patch_type="permeable", ... permeable_surfaces=[volume_mesh["inner/interface*"]] ... )
Attributes
- patch_type: Literal['solid', 'permeable']#
Type of aeroacoustic simulation to perform. solid uses solid walls to compute the aeroacoustic solution. permeable uses surfaces embedded in the volumetric domain as aeroacoustic solver input.
- Default:
'solid'
- permeable_surfaces: EntityList[Surface, GhostSurface, GhostCircularPlane, GhostSphere, WindTunnelGhostSurface], optional#
List of permeable surfaces. Left empty if patch_type is solid
- Default:
None
- observers: list[flow360_schema.models.simulation.outputs.outputs.Observer]#
A List of
Observerobjects specifying each observer’s position and group name.
- write_per_surface_output: bool#
Enable writing of aeroacoustic results on a per-surface basis, in addition to results for all wall surfaces combined.
- Default:
False
- observer_time_step_size: Any, optional#
Time step size for aeroacoustic output. A valid value is smaller than or equal to the time step size of the CFD simulation. Defaults to time step size of CFD.
- Default:
None
- aeroacoustic_solver_start_time: Any#
Time to start the aeroacoustic solver. Signals emitted after this start time at the source surfaces are included in the output.
- Default:
0 * fl.u.s
Additional Constructors
- classmethod from_file(filename)#
Load a Flow360BaseModel from a .json file.
- Parameters:
filename (str)
- Return type:
Flow360BaseModel
Methods