flow360.IsosurfaceOutput#
- class IsosurfaceOutput[source]#
Bases:
_AnimationAndFileFormatSettings
IsosurfaceOutput
class for isosurface output settings.Example
Define the
IsosurfaceOutput
ofqcriterion
on two isosurfaces:Isosurface_T_0.1
is theIsosurface
with its temperature equals to 1.5 non-dimensional temperature;Isosurface_p_0.5
is theIsosurface
with its pressure equals to 0.5 non-dimensional pressure.
>>> fl.IsosurfaceOutput( ... isosurfaces=[ ... fl.Isosurface( ... name="Isosurface_T_0.1", ... iso_value=0.1, ... field="T", ... ), ... fl.Isosurface( ... name="Isosurface_p_0.5", ... iso_value=0.5, ... field="p", ... ), ... ], ... output_fields=["qcriterion"], ... )
- entities: UniqueItemList[Isosurface] [Required] (alias 'isosurfaces')#
List of
Isosurface
entities.
- output_fields: UniqueItemList[Union] [Required]#
List of output variables. Including universal output variables and
UserDefinedField
.
- output_format: Literal['paraview', 'tecplot', 'both'] = 'paraview'#
paraview
,tecplot
orboth
.