flow360.TimeAverageVolumeOutput#
- class TimeAverageVolumeOutput[source]#
Bases:
VolumeOutput
TimeAverageVolumeOutput
class for time average volume output settings.Example
Calculate the average value starting from the \(4^{th}\) physical step. The results are output every 10 physical step starting from the \(14^{th}\) physical step (14, 24, 34 etc.).
>>> fl.TimeAverageVolumeOutput( ... output_format="paraview", ... output_fields=["primitiveVars"], ... start_step=4, ... frequency=10, ... frequency_offset=14, ... )
- start_step: Annotated[int, Ge(ge=0)] | Literal[-1] = -1#
Physical time step to start calculating averaging.
- output_fields: UniqueItemList[VolumeFieldNames | str] [Required]#
List of output variables. Including universal output variables, variables specific to VolumeOutput and
UserDefinedField
.
- output_format: Literal['paraview', 'tecplot', 'both'] = 'paraview'#
paraview
,tecplot
orboth
.