sampledSurface::writers: Added writeFormat option to select ascii or binary
e.g. in tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/cuttingPlane
surfaceFormat vtk;
writeFormat binary;
fields (p U);
selects writing the VTK surface files in binary format which significantly
speeds-up reading of the files in paraview.
Currently binary writing is supported in VTK and EnSight formats.
This commit is contained in:
@ -13,6 +13,7 @@ surfaces
|
||||
writeControl writeTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
writeFormat binary;
|
||||
fields (p U Q);
|
||||
|
||||
interpolationScheme cellPoint;
|
||||
|
||||
@ -14,6 +14,7 @@ cuttingPlane
|
||||
writeControl writeTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
|
||||
fields ( p U );
|
||||
|
||||
interpolationScheme cellPoint;
|
||||
|
||||
@ -13,6 +13,7 @@ cuttingPlane
|
||||
writeControl writeTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
writeFormat binary;
|
||||
fields (p U);
|
||||
|
||||
interpolationScheme cellPoint;
|
||||
|
||||
@ -66,6 +66,7 @@ functions
|
||||
startTime 10;
|
||||
|
||||
surfaceFormat vtk;
|
||||
writeFormat binary;
|
||||
fields (p_rgh U);
|
||||
|
||||
interpolationScheme cellPoint;
|
||||
|
||||
Reference in New Issue
Block a user